Product overview
A product represents the core entity that our partner intends to sell through our platform. It serves as the foundation for creating offers, which are the final entities exposed for purchase.
Product schema
Field | Description | Type |
---|---|---|
id | Unique identifier (UUID) | String |
name | The name of your product | String |
availability | Indicates the availability of the offer, it can be enabled or disabled . | String |
full_amount_cents | Full price in cents | Integer |
description | Description of your product | String |
duration_in_hours | Number of hours of your product (in case of being a course) | Integer |
access_period | Type of access your client has, it can be: days, period, lifetime | String |
duration_in_days | Present if access_period is days | Integer |
start_date | Present if access_period is period | String |
end_date | Present if access_period is period | String |
formatted_access_period | Humanized access_period | String |
company | Company from that product | Object |
kind | Indicates what is the type of that product | Object |
created_at | Indicates when the record was created in iso8601 | String |
updated_at | Indicates when the record was last updated in iso8601 | String |
metadata | A field to store additional information | Object |