- Partner
- Genel Bakış
- Buy
- Customer - B2B2C
- Partner - B2B
- Card Payment
- Sell
- Customers
- Balances
- Card Storage
- Delivery
- Product PricesGET
- Get OrdersGET
- Get OrderGET
- Get Order (Alternative)POST
- Partner LegalPOST
- Order StatussesGET
- E-Commerce API
- Catalog
- Customers
- Customer Address
- Checkout
- Legal
- WS
- Minted PricesGET
Card Payment Get Order
Testing
Testing Env
Testing Env
GET
https://api.staging.mintedconnect.com/partner/order/{{external_order_id}}
Last modified:2023-10-11 19:12:51
Maintainer:Not configured
Request
Authorization
Provide your encrypted digest scheme data in the
Authorization
header when making requests to protected resources.Example:
Authorization: Digest username=guest, realm="test", nonce="2", uri="/uri", response="***"
Header Params
api-version
string
optional
Example:
2
x-client-id
string
required
Default:
web
Accept-Language
string
optional
Default:
tr
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 -g --request GET 'https://api.staging.mintedconnect.com/partner/order/' \
--header 'api-version: 2' \
--header 'api-version;' \
--header 'x-client-id;' \
--header 'Accept-Language: tr'
Responses
🟢200OK
application/json
Body
data
object
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
delivery
object (Order Item Delivery)
optional
address
object (Order Address)
optional
description
string | null
optional
Examples:
1gr - #GAU1000gr - #GAG
payment
object (Payment Scheme)
required
success
boolean
required
code
integer
required
message
string
required
Example
{
"data": {
"guid": "F5818C41-5674-4E49-A91A-1D1FD21A13F5",
"order_code": "YID9Z07U",
"external_id": "HYAQA01714rqz",
"type": "Buy",
"price": 1731.3,
"tax": 0,
"total": 1731.3,
"status_name": "Pending",
"order_at": "13-10-2023 11:10",
"payment_cost": 10,
"currency_code": "TRY",
"customer": {
"external_id": "1801262568",
"firstname": "Mehmet",
"middlename": "",
"lastname": "Gülbilge",
"fullname": "Mehmet Gülbilge",
"email": "[email protected]",
"phone": "+9053228080351",
"gender": "M",
"identity_number": "12345677938",
"birthdate": "1970-01-31"
},
"payment": {
"token": "mLPKxKnNbj0AYMcEMAd5e72zyFyPcUx5KKAZONIcMRhrqYqwmBARo4BGSVhj2mgXRKFDRsHBI6r5az9PW1VhyyOIhUA9pzvtfKHPYDtpVIAlxUgzRmGfInerFIFrRcpH",
"transaction_id": null,
"order_reference": "HYAQA01714rqz",
"amount": 1731.3,
"comission": 0,
"total": 1731.3,
"refunded_amount": 0,
"error_code": null,
"error_message": null,
"state": "success",
"details": {
"card_cvv": "000",
"card_expiry": "05/28",
"card_holder": "John Due",
"card_number": "404809******7528",
"customer_ip": "127.0.0.1",
"card_association": "Visa"
}
},
"items": [
{
"product_id": 3000001,
"sku": "GAU",
"product_name": "Gold - Digital storage",
"spot_price": 1656.16,
"price": 1731.3,
"tax_rate": 0,
"tax": 0,
"amount": 1,
"total": 1731.3
}
]
},
"success": true,
"code": 0,
"message": ""
}
Modified at 2023-10-11 19:12:51