senderId
, recipientId
, and quoteId
. These values are required to ensure the transaction has valid references for the sender details, recipient details, and applicable exchange rates and fees. GET /api/v1/partner/payouts/remittances/recipients/businesses/{recipient_id}
GET /api/v1/partner/payouts/remittances/recipients/businesses/forms/{recipient_country_code}
curl --location --request POST '/api/v1/partner/payouts/remittances/quotes' \
--header 'Authorization: {{token}}' \
--header 'ClientSecret: {{ClientSecret}}' \
--header 'Signature: {{signature}}' \
--header 'Date: {{dateRequest}}' \
--header 'X-User-Key: {{userKey}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"recipientType": "BUSINESS",
"recipientCountryCode": "USA",
"recipientCurrencyCode": "USD",
"receivingAmount": "12"
}'
{
"status": 200,
"serviceStatus": "2001701",
"titleCode": "success",
"title": "Success",
"detail": "Processed successfully",
"responseTime": "2025-09-19T07:20:47.199+00:00",
"data": {
"id": "4d4b15b3-a6b1-47f8-ba00-f3482efcac2f",
"ownershipStatus": "ROOT",
"ownershipId": "93cffe3b-effc-494a-a1f7-3ed04c7f75ce",
"sourceCurrencyCode": "USD",
"recipientType": "BUSINESS",
"recipientCountryCode": "USA",
"recipientCurrencyCode": "USD",
"receivingAmount": {
"amount": "12.00",
"currencyCode": "USD"
},
"fxRate": {
"value": "0.990000000"
},
"sendingAmount": {
"amount": "12.12",
"currencyCode": "USD"
},
"adminFee": {
"amount": "5.02",
"currencyCode": "USD"
},
"paymentAmount": {
"amount": "17.14",
"currencyCode": "USD"
},
"status": "ACTIVE",
"isActive": true,
"createdAt": "2025-09-19T07:20:47Z",
"createdBy": "(API_PARTNER) Lingkar Sembilan Titian Media",
"expiredAt": "2025-09-19T16:20:46Z"
}
}