This endpoint saves a product with the given details specified in the body of the request. The product ID is randomyly generated and provided as part of the URI path parameter response returned on success.
Created. The product was created.
Bad Request. Returned if the request body is invalid.
Unauthorized. Returned if no valid authentication was provided.
Conflict. Returned when missing a reference to the entitlement.
{- "label": "Gold Subscription",
- "description": "The most premium subscription.",
- "entitlement": {
- "id": "gold-bundle",
- "type": "bundle",
- "entitlementTenant": "company"
}, - "mapping": {
- "braintree_one_off": {
- "price_points": [
- {
- "id": "ten",
- "label": "Ten Dollars",
- "price": 10
}
]
}
}, - "sharingLimit": 5
}
{- "message": "Product created successfully",
}