Skip to main content
PATCH
/
signing
/
approval-config
Update approval config
curl --request PATCH \
  --url http://localhost:4000/v1/signing/approval-config \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "threshold_amount": "1000",
  "timeout_minutes": 30,
  "enabled": true
}
'

Authorizations

Authorization
string
header
required

Use this format: ApiKey <your_api_key>

Query Parameters

integratorId
string

Integrator ID (required for ADMIN scope)

Body

application/json
threshold_amount
number

Threshold amount above which approval is required

Example:

"1000"

timeout_minutes
number

Timeout in minutes for approval requests

Example:

30

enabled
boolean

Enable or disable dual approval

Example:

true

Response

200 - undefined