Attempt to settle a pending order by credit card payment. Payment can only be attempted once an order has been placed, but before it has timed out or been cancelled. Payment can no longer be attempted once an order has been fulfilled, refunded or cancelled.
If the tickets being ordered are free (i.e. the order total is $0.00), the order does not require settlement, and will be fulfilled immediately without payment.
Security
SessionKey(Required scopes: customeradministrator)
- Mock serverhttps://docs.ticketingevents.com/_mock/openapi/accounts/{number}/orders/{order}/payments
- QA Serverhttps://qa.ticketingevents.com/v3/accounts/{number}/orders/{order}/payments
- Production Serverhttps://api.ticketingevents.com/v3/accounts/{number}/orders/{order}/payments
curl -i -X POST \
'https://docs.ticketingevents.com/_mock/openapi/accounts/{number}/orders/{order}/payments' \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"number": "5555555555555555",
"cvv": 123,
"expiryDate": "12/30",
"name": "Marvin M. Milk",
"email": "marvin.milk@usmc.gov",
"phone": "+1 (268) 555 0123",
"address1": "Hermitage Rd.",
"address2": "Jennings New Extension",
"city": "Jennings",
"district": "Saint Mary'\''s",
"country": "Antigua and Barbuda"
}'Response
{ "date": "2024-02-19T17:30:08", "amount": 101.99, "status": "Authorised" }