Get Order
TestingGET
/partner/order/{{external_order_id}}Last modified: 6 months ago
Maintainer: Not configured
Request
Header Params
api-version
string
optional
Example:
2
Request samples
Responses
OK(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
data
object (Order Schema)
required
guid
string
required
order_code
string
required
external_id
string | null
required
type
enum<string>
required
Allowed values:
BuySellDelivery
price
number
optional
tax
number
optional
total
number
optional
payment_cost
number | null
optional
currency_code
string
required
status_name
enum<string>
optional
Allowed values:
CreatedPendingProcessingCancelledCompletedPreparingPackedShippedTransferringRefundingRefundedPayment Confirmed
items
array[object (Order Item Schema) {9}]
required
customer
optional
payment_type
enum<string>
optional
Allowed values:
cashcredit-card
payment
optional
delivery
object (Order Item Delivery)
optional
address
object (Order Address)
optional
description
string | null
optional
only on digital orders
Examples:
1gr - #GAU1000gr - #GAG
success
boolean
required
code
integer
required
message
string
required
Example
{
"data": {
"guid": "F6F6AFA5-8CAF-4582-AC47-12699E6D9C81",
"order_code": "FE9HURU6",
"external_id": "HYAQA01373",
"channel": "partner",
"tx_type": "oneoffpurchase",
"price_token": null,
"price": 543.5,
"tax": 0,
"total": 543.5,
"currency_rate": null,
"currency_total": 0,
"status_id": 1,
"status_name": "New",
"items": [
{
"product_id": 3000001,
"product_name": "Gold - Digital storage",
"product_weight": 1,
"spot_price": 49.41,
"price": 54.35,
"tax_rate": 0,
"tax": 0,
"amount": 10,
"total": 543.5,
"currency_id": null,
"currency_rate": null,
"currency_total": 0
}
],
"customer": {
"external_id": "MTD0018232",
"firstname": "Mehmet",
"middlename": "",
"lastname": "Gülbilge",
"fullname": "Mehmet Gülbilge",
"email": "[email protected]",
"phone": "+905322808035",
"gender": "M",
"identity_number": "12345677938",
"birthdate": "1970-01-31"
}
},
"success": true,
"code": 0,
"message": ""
}
Last modified: 6 months ago