- 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:31:04
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
required
currency
string
optional
total
number
required
Example
{
"type": "digital",
"currency": "TRY",
"customer_external_id": "{{customer_external_id}}",
"total": 10000
}
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",
"currency": "TRY",
"customer_external_id": "",
"total": 10000
}'
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": "ybKRJrJrgaXFTY44KPSLYgORLCQJS08q",
"total": 1000,
"expires_at": "2024-06-13T03:40:31+03:00",
"expire_ttl": 243,
"is_total_price": true,
"prices": [
{
"currency_id": 1000004,
"product_id": 3000001,
"spot_price": 2407.05,
"buy_price": 3734.55,
"sell_price": 2419.99,
"buy_amount": 0.27,
"sku": "GAU"
},
{
"currency_id": 1000005,
"product_id": 3000002,
"spot_price": 30.6757,
"buy_price": 33.61,
"sell_price": 29.58,
"buy_amount": 29.76,
"sku": "GAG"
}
],
"currency": "TRY"
},
"success": true,
"code": 0,
"message": ""
}
🟠422Parameter Error
Modified at 2025-01-17 13:31:04