Payment Validation
Response Semantics
A) 200 OK response with no body
200 OK response with no bodyB) 200 OK response with a targeted JSON
200 OK response with a targeted JSON{
"ok": true,
"results": [
{
"server_id": "20859",
"commands": [
{ "command_id": "0", "delivered": true },
{ "command_id": "1", "delivered": false, "error": "server unreachable" }
]
},
{
"server_id": "20861",
"delivered": true
}
]
}Priority Rules
Headers & Content-Type
3) Usage Examples
Example 1 — Validate everything (global)
Example 2 — Validate only some commands of a server
Example 3 — Validate an entire server at once
Example 4 — Validate nothing (acknowledged but functionally refused)
Last updated