Skip to main content

Overview​

Transfer funds to the card account and create OP Card limits.

Create Limit​

cURL -X POST /card-api/v1/load/create
-H 'Content-Type: application/json'
-H 'Authorization: {token}'
-d '{
"accounting_currency": "USD",
"bill_currency": "USD",
"program_value": 01,
"account_id": "1016X10007530070724",
"accounting_amount": 100
}'
ParameterTypeLengthRequiredDescriptionExample
accounting_currencystring3RequiredCurrency for the credited amountUSD
bill_currencystring3RequiredCurrency available in the accountUSD
program_valueint1-10RequiredAccount card type2
account_idstring0-20OptionalThe unique identifier of the merchant account. Funds will be credited to the specified account_id.
  • Takes precedence over program_value
1016X10007530070724
accounting_amountstring1-11RequiredAmount to be credited100
{
"code": "200",
"msg": "Success",
"trace_id": "dcfea0cb4b16424aac2bb8f5ab96bb5f",
"data": {
"batch_no": "e01f7c7f-0513-49b2-a953-b42910ccafb6",
"status": "Pending",
"available_currency": "USD",
"accounting_currency": "USD",
"accounting_amount": 100,
"reference_exchange_rate": 1,
"available_balance": 96214.79,
"estimated_deduction_amount": 100,
"estimated_deduction_currency": "USD",
"account_id": "1016X10007530070724"
}
}
ParameterDescription
batch_noUse this batch number to confirm, query, or cancel the limit record after creation
statusCurrent status of the limit
accounting_currencyCurrency for the credited amount
accounting_amountAmount credited
reference_exchange_rateExchange rate applied for the credited amount
available_balanceCurrent available balance in the account
estimated_deduction_amountExpected deducted amount
estimated_deduction_currencyExpected deducted currency
account_idThe unique identifier of the merchant account