from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.tasks.update_column(
task_id="taskId",
key="key",
value="string",
)
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="string",
)
print(response.success){
"success": true
}The unique identifier of the task to update the column of.
Default Response