# Store Authorization Removal Notification

This webhook is sent by Keeta to notify the vendor's system when a merchant reduces the authorized store scope for a brand. This event is triggered when one or more stores are removed from an existing brand authorization.
**Event ID:** 1302
**Note:** Authorization in Keeta is managed at the brand level, and each brand has a single access token. Reducing the store scope does not affect the existing token.

Endpoint: POST storeAuthorizationRemovalNotification
Version: v.1.0.0

## Request fields (application/json):

  - `appId` (string, required)
    Unique application ID assigned by Keeta.
    Example: 3762772727

  - `shopId` (integer, required)
    Unique identifier of the store that has been removed from the authorization scope.
    Example: 145541

  - `shopName` (string, required)
    Name of the shop, provided for identification purposes.
    Example: Downtown Store

  - `authId` (string, required)
    Authorization record ID, which can be used for status queries.
    Example: auth_20240324_002

  - `createTime` (integer, required)
    Time when the event occurred, specified as milliseconds since Jan 1, 1970 (Unix epoch).
    Example: 1711267800000

  - `opType` (integer, required)
    Operation type. Always 1 for this event (store authorization removed).
    Example: 1

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

