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

Get User Contract

The User Contract Details API allows retrieval of contract details for a specific enterprise.

API Endpoint

GET /tenant/enterprise/contract/:enterpriseId
Host: api.audicient.com
Authorization: <API_KEY>:<API_SECRET>

Path Parameters

Parameter
Type
Description

enterpriseId

string

The ID of the enterprise

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 for impersonation when accessing user-specific data.

Example Request

GET /tenant/enterprise/contract/100001
Host: api.audicient.com
Authorization: <API_KEY>:<API_SECRET>

Example Response

{
  "enterpriseId": 100001,
  "payeeId": 200001,
  "sharePercentage": 70,
  "enterpriseName": "Horizon Music Group",
  "subscriptionPlanId": 3,
  "statementEmail": "finance@horizonmusic.com",
  "type": "user",
  "permissionId": "8a9b1411-d7bf-4fe7-a35f-d471a8d7f62b",
  "ownerImageId": "f7c94677-edd7-4a0e-a9fb-7d886be572c4",
  "ownerEmail": "owner@horizonmusic.com",
  "ownerUserId": "1bc89677-edd7-4a0e-a9fb-7d886be572c4",
  "ownerFirstName": "Alex",
  "ownerLastName": "Turner",
  "createdAt": "2025-03-14T10:20:30.456Z"
}

This API enables tenants to retrieve contract details for a specific enterprise by providing the enterpriseId. Ensure that the appropriate authentication headers are included in the request.

PreviousContractsNextUpdate User Contract

Last updated 2 months ago