# Adjust order of a ShopCategory

- Adjust one specific ShopCategory's order, the sequence need to be greater than 0 and less than the number of ShopCategories.

**Rate limit:** 10 QPS by appId dimension.

Endpoint: POST /product/shopcategory/updatesequence
Version: v.1.0.0

## Request fields (application/json):

  - `id` (integer, required)
    ShopCategory id

  - `shopId` (integer, required)
    store id in KeeTa
    Example: 25381

  - `sequence` (integer, required)
    target sequence
    Example: 2455425486

## Response 200 fields (application/json):

  - `code` (integer, required)
    A numeric status identifier indicating the result of the interface call, used to determine whether the operation executed successfully.
    Example: 0

  - `message` (string, required)
    Text description corresponding to the status code, explaining the operation result or error cause to users.
    Example: Success

