Create Product
Create the PC product to integrate with AWS S3. Store the cipsProductId generated from this API for later use.
Input ParametersInput Parameters
| Parameter | Optional/Mandatory | Data Type | Description |
|---|---|---|---|
| productname | Mandatory | string | Provide the name of the product as "PC". |
API Request
curl --location '<platform_url>/partner-integration/product' --header 'accept: application/json' --header 'Content-Type: application/json' --header 'Authorization: Bearer token'
Request POST Data (integration.json)
{
"productname": "PC"
}
JSON Output
{
"cipsProductId": xxx,
"productName": "PC"
}