Remove stores for a account

The Update User Contract API allows modifying the payout rate and subscription plan for a specific enterprise.

API Endpoint

POST /tenant/enterprise/contract/:enterpriseId/stores/remove
Host: api.audicient.com
Authorization: <API_KEY>:<API_SECRET>
Content-Type: application/json

Request Body

Parameter
Type
Description

stores

array of numbers

Represent a set of distributorStoreId

Example Request Body

{
  "stores": [1, 42]
}

Example Response

{
  "status":200,
  "success": true,
  "message": "Stores restriction added successfully",
}

Authentication Requirements

All requests must include authentication credentials.

  • Authorization Header: Pass the API key and secret as <API_KEY>:<API_SECRET>.

  • Enterprise-ID Header: Required to identify the enterprise being updated.

Last updated