# Update Store Contact Phone Number

This endpoint allows updating a store's contact phone numbers.
**Notes:**
1. The updated contact numbers will be displayed on the **Keeta app** to facilitate customer communication with the merchant.
2. The interface validates phone number quantity (**Minimum**: 1 phone number, **Maximum**: 3 phone numbers)
3. Phone numbers must follow the strict format: International Area Code - Mobile Number (e.g., 86-13800138000)

Endpoint: POST /scm/shop/contact/update
Version: v.1.0.0

## Request fields (application/json):

  - `shopId` (integer, required)
    Store ID
    Example: 466663

  - `phones` (array, required)
    A list of contact number (format: International Area Code - Mobile Number)
    Example: ["852-12345678","86-18700121234"]

## 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

