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){}