# Attempt payment 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. 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. Endpoint: POST /orders/{order}/payments Version: 3.0.0 Security: SessionKey ## Path parameters: - `order` (string) Unique identifier of the order ## Request fields (application/json): - `number` (string, required) 16-Digit Primary Account Number (PAN) of the payment - `cvv` (number, required) 3-Digit Card Verification Value (CVV) of the payment card - `expiryDate` (string, required) Expiry date of the payment card in the format MM/YY - `name` (string, required) Name of the payment card holder as printed on the front of the card - `email` (string, required) Email address of the payment card holder - `phone` (string, required) Phone number of the payment card holder - `address1` (string, required) First line of the payment card holder's billing address - `address2` (string) Second line of the payment card holder's billing address - `city` (string, required) City of the payment card holder's billing address - `district` (string, required) Parish/State/Province of the payment card holder's billing address - `country` (string, required) Country of the payment card holder's billing address ## Response 201 fields (application/json): - `date` (string) The date/time at which the payment was attempted - `amount` (number) The attempted payment amount - `status` (string) The end result of the payment attempt Enum: "Authorised", "Declined" ## Response 400 fields (application/json): - `message` (string) Reason for the given response. ## Response 403 fields (application/json): - `message` (string) Reason for the given response. ## Response 409 fields (application/json): - `message` (string) Reason for the given response.