Payment
Reconcile Expected Payment
Core Concepts
Transfer
Wallets and Vouchers
Account
Transaction and Asset Moves
Payment
Reconcile Expected Payment
Attempts to reconcile an expected payment with reconciliation data such as reference code, amount, and currency.
POST
/
v1
/
service
/
payment
/
reconcile
curl --request POST \
--url https://api.nxos.io/v1/service/payment/reconcile \
--header 'Content-Type: application/json' \
--data '{
"amount": "<string>",
"asset_code": "<string>",
"external_tracking_id": "<string>",
"payment_reference": "<string>"
}'
{
"payment_id": "<string>",
"amount": "<string>",
"asset_code": "<string>",
"source_account_id": "<string>",
"payment_destinations": [
{
"amount": "<string>",
"asset_code": "<string>",
"destination_account_id": "<string>",
"metadata": {},
"type": "<string>"
}
],
"external_tracking_id": "<string>",
"payment_reference": "<string>",
"status": "EXEPCTED"
}
Body
application/json
Response
200 - application/json
The request has succeeded.
The response is of type object
.
curl --request POST \
--url https://api.nxos.io/v1/service/payment/reconcile \
--header 'Content-Type: application/json' \
--data '{
"amount": "<string>",
"asset_code": "<string>",
"external_tracking_id": "<string>",
"payment_reference": "<string>"
}'
{
"payment_id": "<string>",
"amount": "<string>",
"asset_code": "<string>",
"source_account_id": "<string>",
"payment_destinations": [
{
"amount": "<string>",
"asset_code": "<string>",
"destination_account_id": "<string>",
"metadata": {},
"type": "<string>"
}
],
"external_tracking_id": "<string>",
"payment_reference": "<string>",
"status": "EXEPCTED"
}