from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.tasks.get_suspended_payload(
"taskId",
)
print(response)
{}
Retrieves the payload with which a task was suspended, typically for tasks awaiting external interaction or data.
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.tasks.get_suspended_payload(
"taskId",
)
print(response)
{}
The unique identifier of the suspended task.
The payload of the suspended task.