from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.tasks.retry(
"taskId",
)
print(response.message)
{
"message": "<string>"
}
Attempts to retry a failed task. This will re-queue the task for execution.
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.tasks.retry(
"taskId",
)
print(response.message)
{
"message": "<string>"
}
The unique identifier of the task to retry.
Default Response
The response is of type object
.