Skip to main content
POST
/
v3
/
bundles
/
{bundle_id}
/
partners
Add a bundle partner
curl --request POST \
  --url https://api.myscalev.com/v3/bundles/{bundle_id}/partners \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "partner_unique_id": "<string>"
}
'
{
  "created_at": "2023-11-07T05:31:56Z",
  "id": 123,
  "partner": {
    "account_holder": "<string>",
    "email": "jsmith@example.com",
    "id": 123,
    "is_banned": true,
    "logo": "<string>",
    "unique_id": "<string>",
    "username": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

bundle_id
string
required

Body

application/json

Partner data to associate

partner_unique_id
string
required

Unique identifier of the partner to associate

Response

Partner associated successfully

created_at
string<date-time>
required

Creation timestamp

id
integer
required

Bundle Partner ID

partner
BusinessSimple · object
required