Creates a new suite with its initial ordered member list.
const url = 'https://example.com/api/v1/provision/admin/suites';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"code":"example","name":"example","description":"example","memberProductIds":["2489E9AD-2EE2-8E00-8EC9-32D5F69181C0"]}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/v1/provision/admin/suites \ --header 'Content-Type: application/json' \ --data '{ "code": "example", "name": "example", "description": "example", "memberProductIds": [ "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0" ] }'Request Bodyrequired
Section titled “Request Bodyrequired”Suite creation payload.
Admin request to create a suite with its initial ordered member list.
object
Examplegenerated
{ "code": "example", "name": "example", "description": "example", "memberProductIds": [ "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0" ]}Admin request to create a suite with its initial ordered member list.
object
Examplegenerated
{ "code": "example", "name": "example", "description": "example", "memberProductIds": [ "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0" ]}Admin request to create a suite with its initial ordered member list.
object
Examplegenerated
{ "code": "example", "name": "example", "description": "example", "memberProductIds": [ "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0" ]}Responses
Section titled “Responses”OK
A suite: an ordered set of member products sold together, and the owner of the usage plan sets (tiers) that configure them.
object
One member product of a suite, in sell order.
object
True for the suite auto-created behind a product the first time it is priced, rather than
one an operator built. Listing excludes these by default; pass includeImplicit to
see them. Becomes false permanently once a second product joins.
A suite: an ordered set of member products sold together, and the owner of the usage plan sets (tiers) that configure them.
object
One member product of a suite, in sell order.
object
True for the suite auto-created behind a product the first time it is priced, rather than
one an operator built. Listing excludes these by default; pass includeImplicit to
see them. Becomes false permanently once a second product joins.
Examplegenerated
{ "id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "code": "example", "name": "example", "description": "example", "members": [ { "productId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "productCode": "example", "productName": "example", "sortOrder": 1 } ], "isImplicit": true}A suite: an ordered set of member products sold together, and the owner of the usage plan sets (tiers) that configure them.
object
One member product of a suite, in sell order.
object
True for the suite auto-created behind a product the first time it is priced, rather than
one an operator built. Listing excludes these by default; pass includeImplicit to
see them. Becomes false permanently once a second product joins.
Examplegenerated
{ "id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "code": "example", "name": "example", "description": "example", "members": [ { "productId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "productCode": "example", "productName": "example", "sortOrder": 1 } ], "isImplicit": true}Bad Request
object
object
Examplegenerated
{ "type": "example", "title": "example", "status": 1, "detail": "example", "instance": "example"}object
Examplegenerated
{ "type": "example", "title": "example", "status": 1, "detail": "example", "instance": "example"}Unauthorized
object
object
Examplegenerated
{ "type": "example", "title": "example", "status": 1, "detail": "example", "instance": "example"}object
Examplegenerated
{ "type": "example", "title": "example", "status": 1, "detail": "example", "instance": "example"}