curl --request POST \
--url http://localhost:3333/v1/tasks/{taskId}/submit-for-review \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"approverId": "mem_abc123"
}
'Move task status to in_review and assign an approver.
curl --request POST \
--url http://localhost:3333/v1/tasks/{taskId}/submit-for-review \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"approverId": "mem_abc123"
}
'Was this page helpful?