Get buyer order
curl --request GET \
--url https://api.example.com/order/buyer/orders/{id} \
--header 'Authorization: <api-key>'import requests
url = "https://api.example.com/order/buyer/orders/{id}"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.example.com/order/buyer/orders/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/order/buyer/orders/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/order/buyer/orders/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/order/buyer/orders/{id}")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/order/buyer/orders/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"address": "<string>",
"buyerID": "<string>",
"confirmSessionID": "<string>",
"confirm_session": {
"currency": "<string>",
"data": {},
"dateCreated": "<string>",
"dateExpired": "<string>",
"datePaid": "<string>",
"fromID": "<string>",
"fxSnapshot": {},
"id": "<string>",
"kind": "<string>",
"note": "<string>",
"toID": "<string>",
"totalAmount": 123
},
"confirmedByID": "<string>",
"dateCreated": "<string>",
"id": "<string>",
"items": [
{
"accountID": "<string>",
"address": "<string>",
"cancelledByID": "<string>",
"dateCancelled": "<string>",
"dateCreated": "<string>",
"id": 123,
"image_url": "<string>",
"note": "<string>",
"orderID": "<string>",
"paymentSessionID": "<string>",
"payment_session": {
"currency": "<string>",
"data": {},
"dateCreated": "<string>",
"dateExpired": "<string>",
"datePaid": "<string>",
"fromID": "<string>",
"fxSnapshot": {},
"id": "<string>",
"kind": "<string>",
"note": "<string>",
"toID": "<string>",
"totalAmount": 123
},
"quantity": 123,
"sellerID": "<string>",
"serialIds": {},
"skuID": "<string>",
"skuName": "<string>",
"slug": "<string>",
"sourceCurrency": "<string>",
"spuID": "<string>",
"subtotalAmount": 123,
"totalAmount": 123,
"transportOption": "<string>"
}
],
"note": "<string>",
"payout_session": {
"currency": "<string>",
"data": {},
"dateCreated": "<string>",
"dateExpired": "<string>",
"datePaid": "<string>",
"fromID": "<string>",
"fxSnapshot": {},
"id": "<string>",
"kind": "<string>",
"note": "<string>",
"toID": "<string>",
"totalAmount": 123
},
"sellerID": "<string>",
"total_amount": 123,
"transport": {
"data": {},
"dateCreated": "<string>",
"id": 123,
"option": "<string>",
"status": "<string>"
},
"transportID": 123
},
"error": {
"code": "<string>",
"http_status": 123,
"message": "<string>"
}
}{
"data": "<unknown>",
"error": {
"code": "<string>",
"http_status": 123,
"message": "<string>"
}
}{
"data": "<unknown>",
"error": {
"code": "<string>",
"http_status": 123,
"message": "<string>"
}
}order
Get buyer order
GET
/
order
/
buyer
/
orders
/
{id}
Get buyer order
curl --request GET \
--url https://api.example.com/order/buyer/orders/{id} \
--header 'Authorization: <api-key>'import requests
url = "https://api.example.com/order/buyer/orders/{id}"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.example.com/order/buyer/orders/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/order/buyer/orders/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/order/buyer/orders/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/order/buyer/orders/{id}")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/order/buyer/orders/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"address": "<string>",
"buyerID": "<string>",
"confirmSessionID": "<string>",
"confirm_session": {
"currency": "<string>",
"data": {},
"dateCreated": "<string>",
"dateExpired": "<string>",
"datePaid": "<string>",
"fromID": "<string>",
"fxSnapshot": {},
"id": "<string>",
"kind": "<string>",
"note": "<string>",
"toID": "<string>",
"totalAmount": 123
},
"confirmedByID": "<string>",
"dateCreated": "<string>",
"id": "<string>",
"items": [
{
"accountID": "<string>",
"address": "<string>",
"cancelledByID": "<string>",
"dateCancelled": "<string>",
"dateCreated": "<string>",
"id": 123,
"image_url": "<string>",
"note": "<string>",
"orderID": "<string>",
"paymentSessionID": "<string>",
"payment_session": {
"currency": "<string>",
"data": {},
"dateCreated": "<string>",
"dateExpired": "<string>",
"datePaid": "<string>",
"fromID": "<string>",
"fxSnapshot": {},
"id": "<string>",
"kind": "<string>",
"note": "<string>",
"toID": "<string>",
"totalAmount": 123
},
"quantity": 123,
"sellerID": "<string>",
"serialIds": {},
"skuID": "<string>",
"skuName": "<string>",
"slug": "<string>",
"sourceCurrency": "<string>",
"spuID": "<string>",
"subtotalAmount": 123,
"totalAmount": 123,
"transportOption": "<string>"
}
],
"note": "<string>",
"payout_session": {
"currency": "<string>",
"data": {},
"dateCreated": "<string>",
"dateExpired": "<string>",
"datePaid": "<string>",
"fromID": "<string>",
"fxSnapshot": {},
"id": "<string>",
"kind": "<string>",
"note": "<string>",
"toID": "<string>",
"totalAmount": 123
},
"sellerID": "<string>",
"total_amount": 123,
"transport": {
"data": {},
"dateCreated": "<string>",
"id": 123,
"option": "<string>",
"status": "<string>"
},
"transportID": 123
},
"error": {
"code": "<string>",
"http_status": 123,
"message": "<string>"
}
}{
"data": "<unknown>",
"error": {
"code": "<string>",
"http_status": 123,
"message": "<string>"
}
}{
"data": "<unknown>",
"error": {
"code": "<string>",
"http_status": 123,
"message": "<string>"
}
}⌘I