Skip to main content
POST
/
api
/
approval
/
internal
/
{id}
/
reject
Reject a pending internal approval request
curl --request POST \
  --url https://your-instance.example.com/api/approval/internal/{id}/reject \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "notes": "Cannot approve — pricing is outside the agreed range."
}
'
{
  "success": true,
  "status": "approved",
  "result": {
    "bookingId": "bk_64a1b2c3d4e5f60012345678"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.tetherai.ca/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Body

application/json
notes
string

Optional reviewer note attached to the approve/reject action.

Response

Internal approval rejected

success
enum<boolean>
required
Available options:
true
status
enum<string>
required
Available options:
approved,
rejected,
failed
result
any
failureReason
string