GET
/
v1
/
offers
/
{offer_id}
/
relationships
/
products
List offer's products
curl --request GET \
  --url https://api.kajabi.com/v1/offers/{offer_id}/relationships/products \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "type": "<string>"
    }
  ],
  "links": {
    "self": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

offer_id
string
required

Response

Success, shows details for tags relationship

data
object[]