Skip to main content
POST
/
signing
/
approvals
/
{id}
/
reject
Reject request
curl --request POST \
  --url http://localhost:4000/v1/signing/approvals/{id}/reject \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "reason": "Amount too high for current risk profile"
}
'

Authorizations

Authorization
string
header
required

Use this format: ApiKey <your_api_key>

Path Parameters

id
string
required

Approval request UUID

Query Parameters

integratorId
string

Integrator ID (required for ADMIN scope)

Body

application/json
reason
string

Reason for rejection

Example:

"Amount too high for current risk profile"

Response

201 - undefined