GET
/
api
/
v2
/
tasks
/
{taskId}
/
suspended-payload
import os
from samplehc import SampleHealthcare

client = SampleHealthcare(
    api_key=os.environ.get("SAMPLEHC_API_KEY"),  # This is the default and can be omitted
)
response = client.v2.tasks.get_suspended_payload(
    "taskId",
)
print(response)
{}

Path Parameters

taskId
string
required

The unique identifier of the suspended task.

Response

200
application/json

The payload of the suspended task.