Skip to main content
PUT
/
creators
/
{creator_id}
/
accounts
/
{account_id}
Link an account to a creator
curl --request PUT \
  --url https://api.creatoraudit.com/v2/creators/{creator_id}/accounts/{account_id} \
  --header 'Authorization: Bearer <token>'
{
  "type": "<string>",
  "title": "<string>",
  "status": 123,
  "detail": "<string>",
  "instance": "<string>",
  "errors": [
    {}
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

creator_id
string<uuid>
required

Creator UUID.

account_id
string<uuid>
required

Tracked account UUID.

Response

Already linked (idempotent re-link).