Skip to main content
POST
/
distribution
/
subscriptions
Activate a subscription
curl --request POST \
  --url https://varco-{partner}.musixmatch.com/distribution/subscriptions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "musixmatch_user_id": "mxm:123456789012345678901",
  "partner_user_id": "123456",
  "plan_id": "artist-plus-annual"
}
'
{
  "message": {
    "body": {
      "subscription": {
        "musixmatch_user_id": "mxm:123456789012345678901",
        "plan_id": "artist-plus-annual",
        "status": "active"
      }
    },
    "header": {
      "status_code": 201,
      "execute_time": 0.04
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.musixmatch.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Access token obtained via the Client Credentials OAuth 2.0 flow at https://connect.musixmatch.com/oauth/token

Body

application/json
musixmatch_user_id
string
required

The Musixmatch user ID obtained via token introspection

partner_user_id
string
required

The partner's internal user identifier

plan_id
string
required

The distributor's plan identifier. Musixmatch maps this to the corresponding Musixmatch plan during onboarding.

Response

Subscription activated.

message
object