Audicient API
  • Getting Started
  • Authentication
    • Signing Up New Users
  • Common
  • Media
    • Image
      • Get image
      • Upload Image
      • Update image
    • Audio
      • Get audio
      • Upload audio
      • Update audio
  • Users
  • Contracts
    • Get User Contract
    • Update User Contract
    • Remove stores for a account
    • Terminate Account
  • Artists
    • List all artists
    • Create artist
    • Get Artist Details
    • Update Artist
  • Labels
    • List all labels
    • Create label
    • Get Label Details
    • Update Label
  • Releases
    • Get Releases
    • Get Release Detail
    • Get Tracks
    • Save Release
  • Distribution
    • QC Approval
    • Remove store from delivery
    • Add release to delivery queue
    • Upload Release on Consolidated Independent / State 51
    • Upload on FUGA
Powered by GitBook
On this page
  • API Endpoint
  • Authentication Requirements
  • Path Parameters
  • Body
  • Example Requests
  1. Distribution

Remove store from delivery

API Endpoint

POST /distribution/release/:releaseId/retail/remove
Host: api.audicient.com
Authorization: <API_KEY>:<API_SECRET>

Authentication Requirements

All requests must include authentication credentials.

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

Path Parameters

Parameter
Type
Description

releaseId

string

The unique ID of the release

Body

Parameter
Type
Description

stores

array of numbers

number represents distributorStoreId

Example Requests

Important: Store can't be directly removed after qc approval

You will need to wait to get content get live and then issue takedown

POST /distribution/release/100001/retail/remove
Host: api.audicient.com
Authorization: <API_KEY>:<API_SECRET>

{
    "stores": [1,47]
}

If release validation shows up any issues, that must be fixed before qc approval

Sample response

{
  "status": 200,
  "success": true,
  "message": "Store has been removed from delivery"
}
PreviousQC ApprovalNextAdd release to delivery queue

Last updated 2 months ago