Skip to main content
POST
/
cardaccounts
/
fixed-limit
Update fixed limit for card accounts
curl --request POST \
  --url https://access.utgl.io/v1/cardaccounts/fixed-limit \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "cardAccountId": "<string>",
  "limit": 123
}
'

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json
cardAccountId
string

The unique identifier of the card account.

limit
number

The new fixed limit to be set for the card account.

Response

200

Fixed limit updated successfully