- 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
Price Fix (Get Prices)
Testing
Testing Env
Testing Env
POST
https://api.staging.mintedconnect.com/partner/pricefix
Last modified:2025-01-17 13:29:48
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
required
Example:
3
x-client-id
string
required
Default:
web
Accept-Language
string
optional
Default:
tr
Body Params application/json
type
string
required
customer_external_id
string
optional
Example
{
"type": "digital",
"customer_external_id": "{{external_customer_id}}"
}
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/pricefix' \
--header 'api-version: 3' \
--header 'api-version;' \
--header 'x-client-id;' \
--header 'Accept-Language: tr' \
--header 'Content-Type: application/json' \
--data-raw '{
"type": "digital",
"customer_external_id": "MTD0018232"
}'
Responses
🟢200OK
application/json
Body
data
object (Pricefix Response)
required
token
string
required
total
number | null
optional
expires_at
string
required
is_total_price
boolean
required
expire_ttl
integer
required
prices
array [object {7}]
required
currency
enum<string>
required
Allowed values:
GBPUSDEURTRY
Default:
GBP
success
boolean
required
code
integer
required
message
string
required
Example
{
"data": {
"token": "t85QBvvn1GHeOslKuiJm7CF0M0lpwU26",
"total": null,
"expires_at": "2024-12-05T18:43:32+03:00",
"expire_ttl": 239,
"is_total_price": false,
"prices": [
{
"currency_id": 1000004,
"product_id": 3000001,
"spot_price": 2939.71,
"buy_price": 2889.71,
"sell_price": 2857.4,
"buy_amount": null,
"sku": "GAU"
},
{
"currency_id": 1000005,
"product_id": 3000002,
"spot_price": 34.7041,
"buy_price": 34.68,
"sell_price": 31.16,
"buy_amount": null,
"sku": "GAG"
},
{
"currency_id": 1000015,
"product_id": 3000088,
"spot_price": 2940,
"buy_price": 2940,
"sell_price": 2940,
"buy_amount": null,
"sku": "BGAU"
},
{
"currency_id": 1000016,
"product_id": 3000089,
"spot_price": 34,
"buy_price": 34,
"sell_price": 34,
"buy_amount": null,
"sku": "BGAG"
},
{
"currency_id": 1000017,
"product_id": 3000090,
"spot_price": 100,
"buy_price": 100,
"sell_price": 100,
"buy_amount": null,
"sku": "GPT"
},
{
"currency_id": 1000018,
"product_id": 3000091,
"spot_price": 100,
"buy_price": 100,
"sell_price": 100,
"buy_amount": null,
"sku": "GPD"
}
],
"currency": "TRY"
},
"success": true,
"code": 0,
"message": ""
}
🟠422Parameter Error
Modified at 2025-01-17 13:29:48