This API call displays a list of the partners’ products. The partner then can select the product for which to create a provision request.
Authentication is done using Oauth2 token.
Scope: ROLE_PARTNERS_READ
Request Format
POST v2/partners/<partnerUsername>/contractLineItems
Input Parameters
The following table provides the input parameters and descriptions.
Parameter | Description |
partnerUsername | string, partner username. |
Output Parameters
The following table provides the output parameters and descriptions.
Parameter | Description | ||||||||||||
data | Array. Array of objects with:
|
Response Example
{
"data": [
{
"partner_sku_id": 215294,
"no_of_units": 100,
"effective_date": "2020-11-01 00:00:00",
"end_date": "2021-04-30 00:00:00",
"description": "",
"status": 1
},
{
"partner_sku_id": 215295,
"no_of_units": 1,
"effective_date": "2020-11-01 00:00:00",
"end_date": "2021-01-31 00:00:00",
"description": "",
"status": 0
}
]
}
Output Data
Response status: 200 OK