V1Order
V1 Order
Name | Type | Tags | Description |
---|---|---|---|
errors |
List of Error |
Optional | Any errors that occurred during the request. |
id |
string |
Optional | The order's unique identifier. |
buyer_email |
string |
Optional | The email address of the order's buyer. |
recipient_name |
string |
Optional | The name of the order's buyer. |
recipient_phone_number |
string |
Optional | The phone number to use for the order's delivery. |
state |
str (V1 Order State) |
Optional | - |
shipping_address |
Address |
Optional | Represents a physical address. |
subtotal_money |
V1 Money |
Optional | - |
total_shipping_money |
V1 Money |
Optional | - |
total_tax_money |
V1 Money |
Optional | - |
total_price_money |
V1 Money |
Optional | - |
total_discount_money |
V1 Money |
Optional | - |
created_at |
string |
Optional | The time when the order was created, in ISO 8601 format. |
updated_at |
string |
Optional | The time when the order was last modified, in ISO 8601 format. |
expires_at |
string |
Optional | The time when the order expires if no action is taken, in ISO 8601 format. |
payment_id |
string |
Optional | The unique identifier of the payment associated with the order. |
buyer_note |
string |
Optional | A note provided by the buyer when the order was created, if any. |
completed_note |
string |
Optional | A note provided by the merchant when the order's state was set to COMPLETED, if any |
refunded_note |
string |
Optional | A note provided by the merchant when the order's state was set to REFUNDED, if any. |
canceled_note |
string |
Optional | A note provided by the merchant when the order's state was set to CANCELED, if any. |
tender |
V1 Tender |
Optional | A tender represents a discrete monetary exchange. Square represents this exchange as a money object with a specific currency and amount, where the amount is given in the smallest denomination of the given currency. Square POS can accept more than one form of tender for a single payment (such as by splitting a bill between a credit card and a gift card). The tender field of the Payment object lists all forms of tender used for the payment. Split tender payments behave slightly differently from single tender payments: The receipt_url for a split tender corresponds only to the first tender listed in the tender field. To get the receipt URLs for the remaining tenders, use the receipt_url fields of the corresponding Tender objects. A note on gift cards*: when a customer purchases a Square gift card from a merchant, the merchant receives the full amount of the gift card in the associated payment. When that gift card is used as a tender, the balance of the gift card is reduced and the merchant receives no funds. A Tender object with a type ofSQUARE_GIFT_CARD indicates a gift card was used for some or all of theassociated payment. |
order_history |
List of V1 Order History Entry |
Optional | The history of actions associated with the order. |
promo_code |
string |
Optional | The promo code provided by the buyer, if any. |
btc_receive_address |
string |
Optional | For Bitcoin transactions, the address that the buyer sent Bitcoin to. |
btc_price_satoshi |
float |
Optional | For Bitcoin transactions, the price of the buyer's order in satoshi (100 million satoshi equals 1 BTC). |
{
"errors": [
{
"category": "AUTHENTICATION_ERROR",
"code": "UNPROCESSABLE_ENTITY",
"detail": "detail1",
"field": "field9"
},
{
"category": "INVALID_REQUEST_ERROR",
"code": "RATE_LIMITED",
"detail": "detail2",
"field": "field0"
},
{
"category": "RATE_LIMIT_ERROR",
"code": "NOT_IMPLEMENTED",
"detail": "detail3",
"field": "field1"
}
],
"id": "id0",
"buyer_email": "buyer_email8",
"recipient_name": "recipient_name8",
"recipient_phone_number": "recipient_phone_number4"
}