- Partner
- Genel Bakış
- Buy
- 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
Get Product
Testing
Testing Env
Testing Env
GET
https://api.staging.mintedconnect.com/partner/ecom/product
Last modified:2024-09-05 10:24:35
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="***"
Query Params
sku
string
optional
>= 1 characters
Example:
1
id
integer
optional
Example:
10
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 --request GET 'https://api.staging.mintedconnect.com/partner/ecom/product?sku=1&id=10' \
--header 'api-version: 2' \
--header 'api-version;' \
--header 'x-client-id;' \
--header 'Accept-Language: tr'
Responses
🟢200OK
application/json
Body
data
object (Product)
required
id
integer
required
name
string
required
text
string
required
barcode
string
required
sku
string
required
stock
integer
required
currency_code
string
required
list_price
number
required
sale_price
number
required
product_images
array[string]
required
basecurrency
object (Base Product Currency)
required
category
object (Category)
required
success
boolean
required
code
integer
required
message
string
required
Example
{
"data": {
"id": 3000065,
"name": "Minted 1 Gr 999,9 Külçe Altın (NadirGold)",
"text": "Ürün açıklaması",
"barcode": "MNTMNT0001",
"sku": "MNT0001",
"stock": 20,
"currency_code": "TRY",
"list_price": 2914.73,
"sale_price": 2914.73,
"product_images": [
"https://minted-tr.mncdn.com/products/10/Z1P5eT1ggOvmgyS5bwFeW1qZwS41zj5FOL3gu4Fv.png",
"https://minted-tr.mncdn.com/products/10/JxMzuWaZkljzWoVXzfKZPWYY2FeAU1TQY1sAtMnv.png",
"https://minted-tr.mncdn.com/products/10/qzyXgt51f7ndySM5QpMQqyDN6QBZXqAomsyshp5r.png",
"https://minted-tr.mncdn.com/products/10/sKZiiWqLA9PdejL5mG2sMWOyPJl7FWD95ILsYtx4.png"
],
"basecurrency": {
"id": 1000006,
"name": "Physical Gold",
"invoice_name": "Has Altın",
"shortname": "minted-gold",
"type": "metal",
"metal_type": "gold",
"code": "PAU",
"symbol": "",
"division_factor": 1,
"symbol_position": "prefix",
"decimals": 2,
"color": null,
"updated_at": "2024-07-23T14:02:08+03:00"
},
"category": {
"id": 2,
"parent_id": 1,
"name": "Physical Gold",
"slug": "/physical-gold",
"order": 0,
"active": true,
"items": []
}
},
"success": true,
"code": 0,
"message": ""
}
🟠401Unauthorized
🟠404Record Not Found
Modified at 2024-09-05 10:24:35