Enrollment Packages
GET ‎https://<domain>/<api prefix>/<version>/commerce/product/enrollment-packages/
This API endpoint will return a list of all active enrollment packages.
Headers
Name
Type
Description
apikey*
string
apikey
Authorization*
string
Bearer access token
HTTP/1.1 200 OK
Content-Type: application/json
Body:
{
"status_code": 200,
"errors": {},
"data": {
"products": [
{
"name": "<package_name>",
"price": "<price>",
"images": "<images>",
"description": "<description>",
"short_desciption": "<short_desciption>",
"product_id": "<product_id>",
"bundle_id": "<bundle_id>"
},
...
]
}
}Sample Code
Node
PHP
Last updated
Was this helpful?