> ## Documentation Index
> Fetch the complete documentation index at: https://docs.getscale.ng/llms.txt
> Use this file to discover all available pages before exploring further.

# Update Shop Profile

Modifies the shop's profile name, description, address, location bounds (using state and LGA references), contact number, or banner/logo images. Accepts multipart form data.

### Authorizations

<ParamField header="X-Shop-API-Key" type="string" required>
  Your Secret API Key (`sk_live_...` or `sk_test_...`) generated from the Developer dashboard. Must be kept secret.
</ParamField>

### Path Parameters

<ParamField path="shopId" type="string" required>
  The unique UUID of the shop.
</ParamField>

### Request Body (Multipart / Form Data)

<ParamField body="shopName" type="string">
  Name of the shop.
</ParamField>

<ParamField body="shopDescription" type="string">
  Description of the shop.
</ParamField>

<ParamField body="shopAddress" type="string">
  Physical street address of the storefront.
</ParamField>

<ParamField body="shopStateId" type="number">
  The state ID where the shop is located. Check the location API for valid IDs.
</ParamField>

<ParamField body="shopLgaId" type="number">
  The Local Government Area (LGA) ID. Must exist within the specified state.
</ParamField>

<ParamField body="phoneNumber" type="string">
  Contact phone number. Must be a valid Nigerian format.
</ParamField>

<ParamField body="logoImage" type="file">
  New square logo image.
</ParamField>

<ParamField body="bannerImage" type="file">
  New horizontal banner image.
</ParamField>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "status": "success",
    "message": "Shop updated successfully"
  }
  ```

  ```json 400 Bad Request theme={null}
  {
    "message": "FORM_VALIDATION_ERROR",
    "code": 400,
    "validationErrors": [
      {
        "path": [
          "lgaId"
        ],
        "message": "LGA must exist in the specified state"
      }
    ]
  }
  ```
</ResponseExample>
