A product is a service that you create to offer to your customers. This can be used for a one-time purchases (Single Payment) or for subscribing to it and generating a recurring purchases (Subscription).
{
"product": {
"name": "Boxing classes",
"description": "First semester 2022",
"value": 40000,
"external_id": "001"
}
}
Attributes
The attributes available for a Product object are:
Name | Type | Description | Required |
---|---|---|---|
id | string | Product unique identifier. | false |
name | string | Name of the Product you want to create. | true |
description | string | A description for the Product. | false |
value | number | The value of the Product. | true |
currency | string | Currency value for Product payments. The following values are available: - CLP (default) - UF | false |
image | file | An image for the Product you want to create. | false |
status | string | The status of the Product. It can be "active" (default) or "inactive". | false |
external_id | string | An external id to identify the Product. | false |