- Partner
- Genel Bakış
- Buy
- Sell
- Customer - B2B2C
- Partner - B2B
- 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
Sell (Silver)
Testing
Testing Env
Testing Env
POST
https://api.staging.mintedconnect.com/partner/order/digital/sell
Last modified:2024-08-26 09:42: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
Body Params application/json
price_token
string
required
currency_code
enum<string>
optional
Allowed values:
GBPTRYUSDEUR
external_id
string
required
items
array [object {2}]
required
sku
string
required
amount
integer
required
Example
{
"price_token": "{{price_token}}",
"currency_code": "GBP",
"external_id": "HYAQA01373",
"items": [
{
"sku": "GAG",
"amount": 1
}
]
}
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 POST 'https://api.staging.mintedconnect.com/partner/order/digital/sell' \
--header 'api-version: 2' \
--header 'api-version;' \
--header 'x-client-id;' \
--header 'Accept-Language: tr' \
--header 'Content-Type: application/json' \
--data-raw '{
"price_token": "",
"currency_code": "GBP",
"external_id": "HYAQA01373",
"items": [
{
"sku": "GAG",
"amount": 1
}
]
}'
Responses
🟢200OK
application/json
Body
data
object
required
order_code
array[string]
required
guid
array[string]
required
price
number
required
tax
integer
required
total
number
required
order_at
string
required
orders
array[object (Order Schema) {17}]
required
success
boolean
required
code
integer
required
message
string
required
Example
{
"data": {
"order_code": [
"9YMEK5RB"
],
"guid": [
"71E174B7-C7AD-47FB-836E-3895FF41D4F5"
],
"price": 559.4,
"tax": 0,
"total": 559.4,
"order_at": "2023-05-31 03:16:45",
"orders": [
{
"guid": "71E174B7-C7AD-47FB-836E-3895FF41D4F5",
"order_code": "9YMEK5RB",
"external_id": "HYAQA0171v96o",
"type": "Buy",
"price": 559.4,
"tax": 0,
"total": 559.4,
"currency_rate": 1,
"currency_total": 559.4,
"status_name": "Pending",
"order_at": "31-05-2023 03:16",
"currency_code": "GBP",
"items": [
{
"product_id": 3000001,
"product_name": "Gold - Digital storage",
"spot_price": 50.85,
"price": 55.94,
"tax_rate": 0,
"tax": 0,
"amount": 10,
"total": 559.4,
"sku": "GAU"
}
],
"customer": null
}
]
},
"success": true,
"code": 0,
"message": ""
}
🟠422Parameter Error
🟠403Forbidden
🟠422Parameter Error(New Customer)
Modified at 2024-08-26 09:42:51