Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"price_token": "string",
"currency_code": "string",
"external_id": "string",
"items": [
{
"sku": "string",
"amount": 0
}
]
}
Request Code Samples
curl --location 'https://test.your-api-server.com/mintedapi/Buy/partner/buysilver' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"price_token": "string",
"currency_code": "string",
"external_id": "string",
"items": [
{
"sku": "string",
"amount": 0
}
]
}'
Responses
application/json
Modified at 2024-12-30 14:34:31