Path Parameters
The unique identifier of the task to update the column of.
Body
application/json
Response
Default Response
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.tasks.update_column(
task_id="taskId",
key="key",
value="value",
)
print(response.success)
{
"success": true
}
Updates or inserts a column value for a task. If the column key already exists, its value will be updated. If it doesn’t exist, a new column will be added.
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.tasks.update_column(
task_id="taskId",
key="key",
value="value",
)
print(response.success)
{
"success": true
}
The unique identifier of the task to update the column of.
Default Response