- 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
Buy (Silver)
Testing
Testing Env
Testing Env
POST
https://api.staging.mintedconnect.com/partner/order/digital/buy
Last modified:2025-01-17 13:50:29
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
customer
object (OrderCustomerRequestScheme)
required
external_id
string
required
identity_number
string
required
firstname
string
required
middlename
string
optional
lastname
string
required
email
string
required
phone
string
required
gender
enum<string>
optional
Allowed values:
MF
birthdate
string
optional
Example:
31-12-1990
Match pattern:
^[99-99-9999]$
items
array [object {2}]
required
sku
string
optional
amount
number
optional
topup
object
optional
price
number
optional
Example
{
"currency_code": "GBP",
"external_id": "HYAQA01373",
"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"
},
"items": [
{
"product_id": "{{product_1}}",
"amount": 10
}
]
}
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/buy' \
--header 'api-version: 2' \
--header 'api-version;' \
--header 'x-client-id;' \
--header 'Accept-Language: tr' \
--header 'Content-Type: application/json' \
--data-raw '{
"currency_code": "GBP",
"external_id": "HYAQA01373",
"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"
},
"items": [
{
"product_id": "{{product_1}}",
"amount": 10
}
]
}'
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 2025-01-17 13:50:29