Skip to main content
POST
/
v1
/
tasks
/
bulk
/
submit-for-review
Bulk submit tasks for review
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"
}
'

Authorizations

X-API-Key
string
header
required

API key for authentication

Headers

X-Organization-Id
string

Organization ID (required for session auth, optional for API key auth)

Body

application/json
taskIds
string[]
required
Example:
["tsk_abc123", "tsk_def456"]
approverId
string
required

Member ID of the approver

Example:

"mem_abc123"

Response

Tasks submitted for review