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
  • Request Body
  • Example Response
  • Authentication Requirements
  1. Contracts

Update User Contract

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

API Endpoint

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

Request Body

Parameter
Type
Description
Constraints

sharePercentage

number

Payout rate percentage

Must be between 0 and 100

subscriptionPlanId

number

ID of the selected subscription plan

Required Values 1,2,3 1: Artist 2: Label 3: Multi label

Example Request Body

{
  "sharePercentage": 70,
  "subscriptionPlanId": 2
}

Example Response

{
  "success": true,
  "message": "Contract updated successfully",
  "data": {
    "enterpriseId": 100003,
    "sharePercentage": 70,
    "subscriptionPlanId": 2,
    "updatedAt": "2025-03-17T10:30:00.000Z"
  }
}

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.

PreviousGet User ContractNextRemove stores for a account

Last updated 2 months ago