Orders
PayOrder
Pay for an order using one or more approved payments or settle an order with a total of 0.
The total of the payment_ids listed in the request must be equal to the order total. Orders with a total amount of 0 can be marked as paid by specifying an empty array of payment_ids in the request.
To be used with PayOrder, a payment must:
- Reference the order by specifying the order_id when creating the payment. Any approved payments that reference the same order_id not specified in the payment_ids is canceled.
- Be approved with delayed capture. Using a delayed capture payment with PayOrder completes the approved payment.
post/v2/orders/{order_id}/pay
Path parameters
order_idstring required
The ID of the order being paid.
Request body
Example request
{
"request_body": {
"idempotency_key": "c043a359-7ad9-4136-82a9-c3f1d66dcbff",
"payment_ids": [
"EnZdNAlWCmfh6Mt5FMNST1o7taB",
"0LRiVlbXVwe8ozu4KbZxd12mvaB"
]
}
}Response
Success
Example response
{
"order": {
"closed_at": "2019-08-06T02:47:37.140Z",
"created_at": "2019-08-06T02:47:35.693Z",
"id": "lgwOlEityYPJtcuvKTVKT1pA986YY",
"line_items": [
{
"base_price_money": {
"amount": 500,
"currency": "USD"
},
"gross_sales_money": {
"amount": 500,
"currency": "USD"
},
"name": "Item 1",
"quantity": "1",
"total_discount_money": {
"amount": 0,
"currency": "USD"
},
"total_money": {
"amount": 500,
"currency": "USD"
},
"total_tax_money": {
"amount": 0,
"currency": "USD"
},
"uid": "QW6kofLHJK7JEKMjlSVP5C"
},
{
"base_price_money": {
"amount": 750,
"currency": "USD"
},
"gross_sales_money": {
"amount": 1500,
"currency": "USD"
},
"name": "Item 2",
"quantity": "2",
"total_discount_money": {
"amount": 0,
"currency": "USD"
},
"total_money": {
"amount": 1500,
"currency": "USD"
},
"total_tax_money": {
"amount": 0,
"currency": "USD"
},
"uid": "zhw8MNfRGdFQMI2WE1UBJD"
}
],
"location_id": "P3CCK6HSNDAS7",
"net_amounts": {
"discount_money": {
"amount": 0,
"currency": "USD"
},
"service_charge_money": {
"amount": 0,
"currency": "USD"
},
"tax_money": {
"amount": 0,
"currency": "USD"
},
"tip_money": {
"amount": 0,
"currency": "USD"
},
"total_money": {
"amount": 2000,
"currency": "USD"
}
},
"source": {
"name": "Source Name"
},
"state": "COMPLETED",
"tenders": [
{
"amount_money": {
"amount": 1000,
"currency": "USD"
},
"card_details": {
"card": {
"card_brand": "VISA",
"exp_month": 2,
"exp_year": 2022,
"fingerprint": "sq-1-n_BL15KP87ClDa4-h2nXOI0fp5VnxNH6hfhzqhptTfAgxgLuGFcg6jIPngDz4IkkTQ",
"last_4": "1111"
},
"entry_method": "KEYED",
"status": "CAPTURED"
},
"created_at": "2019-08-06T02:47:36.293Z",
"id": "EnZdNAlWCmfh6Mt5FMNST1o7taB",
"location_id": "P3CCK6HSNDAS7",
"payment_id": "EnZdNAlWCmfh6Mt5FMNST1o7taB",
"transaction_id": "lgwOlEityYPJtcuvKTVKT1pA986YY",
"type": "CARD"
},
{
"amount_money": {
"amount": 1000,
"currency": "USD"
},
"card_details": {
"card": {
"card_brand": "VISA",
"exp_month": 2,
"exp_year": 2022,
"fingerprint": "sq-1-n_BL15KP87ClDa4-h2nXOI0fp5VnxNH6hfhzqhptTfAgxgLuGFcg6jIPngDz4IkkTQ",
"last_4": "1111"
},
"entry_method": "KEYED",
"status": "CAPTURED"
},
"created_at": "2019-08-06T02:47:36.809Z",
"id": "0LRiVlbXVwe8ozu4KbZxd12mvaB",
"location_id": "P3CCK6HSNDAS7",
"payment_id": "0LRiVlbXVwe8ozu4KbZxd12mvaB",
"transaction_id": "lgwOlEityYPJtcuvKTVKT1pA986YY",
"type": "CARD"
}
],
"total_discount_money": {
"amount": 0,
"currency": "USD"
},
"total_money": {
"amount": 2000,
"currency": "USD"
},
"total_service_charge_money": {
"amount": 0,
"currency": "USD"
},
"total_tax_money": {
"amount": 0,
"currency": "USD"
},
"updated_at": "2019-08-06T02:47:37.140Z",
"version": 4
}
}