Skip to content
.seventhings.com

Prefill your credentials

Fill in your non-secret values to have them appear in the examples below. Stored locally in your browser.

Update a Task status

PUT
/customer-api/v1/task-management/task/{taskUuid}/status
curl --request PUT \
--url https://your-instance.seventhings.com/customer-api/v1/task-management/task/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/status \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "status": "open" }'

Update a Task status.

taskUuid
required
string format: uuid

Task status

Media typeapplication/json
object
status

The type of the referenced object.

string
Allowed values: open closed
Example
closed

The Task was updated successfully.

Access token is missing or invalid.

You are not permitted to perform the requested operation.

The requested resource could not be found.

Internal Server Error.