addCategory
POST /v2/pds/store/addCategory
With this API call, the SaaS provider or ISV can add a category to the current categories that have been synchronized via the initializeStore API.
Structure
A message consists of a header and body. The following sections are focused on the body structure. For the header structure, see:
Request parameters
Field | Data type | Required | Description | Example |
requestId | String | Yes | Indicates the unique ID assigned by the SaaS provider or ISV to identify a request for adding a category.
Note: This field is an idempotency field. For the addCategory requests using the same requestId value, our server must return the same result. For details about API idempotency, see the Idempotency chapter. | "category_2022012111061234567890" |
category | Yes | Indicates the details of the category to add. | - |
Response parameters
Field | Data type | Required | Description |
result | Yes | Indicates the request result, such as status and error codes. |
Result process logic
In the response, the result.resultStatus field indicates the result of processing a request. The following table describes each result status:
Result status | Description |
A | The request for adding the category is accepted by us. The corresponding result.resultCode and result.resultMessage may vary based on different situations. For details, see the following Error codes section. |
S | The category is added successfully. The corresponding result.resultCode is |
U | The status of the request to add the category is unknown. The corresponding result.resultCode is For details, see the Common error codes section. |
F | Failed to add the category. The corresponding result.resultCode and result.resultMessage may vary based on different situations. For details, see the following Error codes section. |
Error codes
Error codes are usually classified into the following categories:
- Common error codes are common for F&B mini program OpenAPIs. Â
Samples
Request
{
"requestId": "wksmjdxfggffhdkxkskede2",
"category": {
"storeId": "lzteststore75772345",
"menuId": "M1110",
"menuType": "PICKUP",
"categoryId": "100",
"title": "Others",
"subTitle": "",
"icon": "http://www.example.com/iamges/cdZOWIR73/00ACicon.jpg"
}
}
Response
{
"result": {
"resultCode": "SUCCESS",
"resultStatus": "S",
"resultMessage": "success"
}
}