- 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
Card Payment Price Fix (Get Prices)
Testing
Testing Env
Testing Env
POST
https://api.staging.mintedconnect.com/partner/pricefix
Last modified:2023-10-11 19:13:18
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
x-client-id
string
required
Default:
web
api-version
string
optional
Default:
3
Accept-Language
string
optional
Default:
tr
Body Params application/json
type
enum<string>
required
Allowed values:
digitalphysical
Example
{
"type": "digital"
}
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 'x-client-id;' \
--header 'api-version: 3' \
--header 'Accept-Language: tr' \
--header 'Content-Type: application/json' \
--data-raw '{
"type": "digital"
}'
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": "Kqb0TCsxgGjL3z1pxbTmiTqtFbLY3FqG",
"expires_at": "2023-06-21 18:10:37",
"expire_ttl": 181,
"prices": [
{
"currency_id": 1000004,
"product_id": 3000001,
"spot_price": 49.1,
"buy_price": 54.01,
"sell_price": 48.61,
"sku": "GAU"
},
{
"currency_id": 1000005,
"product_id": 3000002,
"spot_price": 0.6071,
"buy_price": 0.66781,
"sell_price": 0.59496,
"sku": "GAG"
}
],
"currency": "GBP"
},
"success": true,
"code": 0,
"message": ""
}
Modified at 2023-10-11 19:13:18