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
Copy
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>",
"transfer_reference": "<string>"
}'
Copy
{
"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>",
"transfer_reference": "<string>",
"status": "EXEPCTED"
}
Body
application/json
Response
200 - application/json
The request has succeeded.
The response is of type object
.
Copy
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>",
"transfer_reference": "<string>"
}'
Copy
{
"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>",
"transfer_reference": "<string>",
"status": "EXEPCTED"
}
Assistant
Responses are generated using AI and may contain mistakes.