curl --request POST \
--url https://api.example.com/v1.0/products \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"SKU": "<string>",
"Description": "<string>",
"AggregatorId": "<string>",
"DistributorId": "<string>",
"Type": "<string>",
"SubType": "<string>",
"Cost": 123,
"BillingFrequency": "<string>",
"Active": true
}
'curl --request POST \
--url https://api.example.com/v1.0/products \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"SKU": "<string>",
"Description": "<string>",
"AggregatorId": "<string>",
"DistributorId": "<string>",
"Type": "<string>",
"SubType": "<string>",
"Cost": 123,
"BillingFrequency": "<string>",
"Active": true
}
'JWT Authorization header using the Bearer scheme. Obtain token from /v1.0/OAuth2/tokens endpoint.
Product object
Success