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>"
}
}get the offer’s relationship to products, response is a list of resource identifiers
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>"
}
}Was this page helpful?