Skip to main content
POST
/
api
/
v2
/
tasks
/
{taskId}
/
columns
Python
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
}

Path Parameters

taskId
string
required

The unique identifier of the task to update the column of.

Body

application/json
key
string
required

The column key to update or insert.

value
string | null
required

The value to set for the column.

Response

Default Response

success
boolean
required
I