General Information
...
Service | API | Method |
---|---|---|
multitenant | /product/package | GET |
Data Model:
Workflow:
Input
...
Type: application/json
Name | Source | Mandatory | Type | Special Format | Description |
---|---|---|---|---|---|
productCode | Query | YES | String | max length is 6 | The product code |
packageCode | Query | YES | String | N/A | The package code |
Output
...
Valid Response
Code Block | ||||
---|---|---|---|---|
| ||||
{
} |
Invalid Response
Code Block | ||||
---|---|---|---|---|
| ||||
{
"result":false,
"errors":{
"codes":[460],
"details":[
{
"code":460,
"message":"Unable to find products"
}
]
}
} |
Error Codes
Code | Description |
---|---|
460 | Unable to find products |
461 | Unable to find package |
Example (CURL)
...
Request
Code Block | ||||
---|---|---|---|---|
| ||||
> CURL -X GET http://127.0.0.1:4004/product/package?productCode=%product_code%&packageCode=%package_code% |
Response
Code Block | ||||
---|---|---|---|---|
| ||||
{
"result": true,
"data": [
{
}
]
} |