Skip to main content
POST
/
api
/
dashboard
/
commitments
/
{commitment_id}
/
resolve
Resolve a commitment
curl --request POST \
  --url https://api.example.com/api/dashboard/commitments/{commitment_id}/resolve \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "resolution_note": "<string>"
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

commitment_id
integer
required

Body

application/json

Request body for resolving a commitment.

resolution_note
string | null

Response

Successful Response

{key}