curl --request POST \
--url https://access.utgl.io/v1/cardaccounts/simulate-repay \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"cardAccountIds": [
"6e519e8e-15ac-483e-b6ac-d0f42aee36b2"
]
}
'{
"repayments": [
{
"cardAccountId": "<string>",
"currency": "<string>",
"repayAmount": 123,
"error": "<string>"
}
]
}Simulate repay card account
curl --request POST \
--url https://access.utgl.io/v1/cardaccounts/simulate-repay \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"cardAccountIds": [
"6e519e8e-15ac-483e-b6ac-d0f42aee36b2"
]
}
'{
"repayments": [
{
"cardAccountId": "<string>",
"currency": "<string>",
"repayAmount": 123,
"error": "<string>"
}
]
}Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Successful repayment simulation
Show child attributes
Was this page helpful?