curl --request POST \
--url http://localhost:3333/v1/tasks/bulk/submit-for-review \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"taskIds": [
"tsk_abc123",
"tsk_def456"
],
"approverId": "mem_abc123"
}
'Submit multiple tasks for review with a single approver
curl --request POST \
--url http://localhost:3333/v1/tasks/bulk/submit-for-review \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"taskIds": [
"tsk_abc123",
"tsk_def456"
],
"approverId": "mem_abc123"
}
'API key for authentication
Organization ID (required for session auth, optional for API key auth)
Tasks submitted for review
Was this page helpful?