Core Concepts
Transfer
Wallets and Vouchers
Account
Transaction and Asset Moves
Payment
Create Expected Payment
POST
/
v1
/
service
/
payment
/
expected
Copy
curl --request POST \
--url https://api.nxos.io/v1/service/payment/expected \
--header 'Content-Type: application/json' \
--data '{
"amount": "<string>",
"asset_code": "<string>",
"source_account_id": "<string>",
"destinations": [
{
"amount": "<string>",
"asset_code": "<string>",
"destination_account_id": "<string>",
"metadata": {},
"type": "<string>"
}
],
"transfer_reference": "<string>",
"network": "<string>",
"metadata": {}
}'
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/expected \
--header 'Content-Type: application/json' \
--data '{
"amount": "<string>",
"asset_code": "<string>",
"source_account_id": "<string>",
"destinations": [
{
"amount": "<string>",
"asset_code": "<string>",
"destination_account_id": "<string>",
"metadata": {},
"type": "<string>"
}
],
"transfer_reference": "<string>",
"network": "<string>",
"metadata": {}
}'
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.