- Introduction
- Getting started
- Webhooks
- API Reference
- Order
- Shipping Method
- Product
- Variant
- Payment Method
- Customer
- Category
- Currency
Get order
GET
/orders/{order_id}
Request
Path Params
order_id
string
required
Example:
11042
Header Params
X-Identifier
string
optional
Example:
{{x_identifier}}
Authorization
string
optional
Example:
Bearer {{token}}
Accept
string
optional
Example:
application/json
Content-Type
string
optional
Example:
application/json
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/orders/11042' \
--header 'X-Identifier: {{x_identifier}}' \
--header 'Authorization: Bearer {{token}}' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json'
Responses
🟢200OK
application/json
Body
data
object
required
id
integer
required
currency_iso
string
required
order_items
array [object {11}]
required
customer
object
required
billing_address
object
required
shipping_address
object
required
shipping
object
required
payment
object
required
created_at
string
required
updated_at
string
required
Example
{
"data": {
"id": 0,
"currency_iso": "string",
"order_items": [
{
"id": 0,
"sku": "string",
"name": "string",
"type": "string",
"quantity": "string",
"unit": "string",
"vat_rate": 0,
"unit_price": 0,
"total_amount": 0,
"image_url": "string",
"variant_url": "string"
}
],
"customer": {
"id": 0,
"customer_type": "string",
"firstname": "string",
"lastname": "string",
"email": "string",
"phone": "string",
"ssn": "string",
"created_at": "string",
"updated_at": "string",
"billing_address": {
"address": "string",
"address2": null,
"co_address": null,
"postcode": "string",
"city": "string",
"state": null,
"country": "string",
"company_name": "string",
"firstname": "string",
"lastname": "string"
},
"shipping_address": {
"address": "string",
"address2": null,
"co_address": null,
"postcode": "string",
"city": "string",
"state": null,
"country": "string",
"company_name": "string",
"firstname": "string",
"lastname": "string"
}
},
"billing_address": {
"address": "string",
"address2": null,
"co_address": null,
"postcode": "string",
"city": "string",
"state": null,
"country": "string",
"company_name": "string",
"firstname": "string",
"lastname": "string"
},
"shipping_address": {
"address": "string",
"address2": null,
"co_address": null,
"postcode": "string",
"city": "string",
"state": null,
"country": "string",
"company_name": "string",
"firstname": "string",
"lastname": "string"
},
"shipping": {
"name": "string",
"vat_rate": 0,
"total_amount": 0
},
"payment": {
"name": "string",
"vat_rate": 0,
"total_amount": 0
},
"created_at": "string",
"updated_at": "string"
}
}
Modified at 2024-11-04 09:00:18