curl --request POST \
--url https://stagingstores.xoxoday.com/chef/v1/oauth/api \
--header 'accept: application/json' \
--header 'authorization: Bearer YOUR_ACCESS_TOKEN' \
--header 'content-type: application/json' \
--data '{
"query": "xoxo_link.query.campaignList",
"tag": "xoxo_link",
"variables": {
"add_data": {
"limit": 10,
"offset": 0,
"enabled": 1
}
}
}'{
"data": {
"campaignList": {
"success": 1,
"data": [
{
"campaignId": 2461,
"campaignName": "Summer Rewards",
"denomination_value": 10,
"countryName": "USA",
"currencyCode": "USD",
"created_date": "2025-06-01 10:00:00",
"product_count": 5,
"status": 1
}
]
}
}
}Get the list of all reward link campaigns created from the dashboard. Supports pagination and filtering by name or enabled status.
Real URL: POST https://stagingstores.xoxoday.com/chef/v1/oauth/api
curl --request POST \
--url https://stagingstores.xoxoday.com/chef/v1/oauth/api \
--header 'accept: application/json' \
--header 'authorization: Bearer YOUR_ACCESS_TOKEN' \
--header 'content-type: application/json' \
--data '{
"query": "xoxo_link.query.campaignList",
"tag": "xoxo_link",
"variables": {
"add_data": {
"limit": 10,
"offset": 0,
"enabled": 1
}
}
}'{
"data": {
"campaignList": {
"success": 1,
"data": [
{
"campaignId": 2461,
"campaignName": "Summer Rewards",
"denomination_value": 10,
"countryName": "USA",
"currencyCode": "USD",
"created_date": "2025-06-01 10:00:00",
"product_count": 5,
"status": 1
}
]
}
}
}Documentation Index
Fetch the complete documentation index at: https://help-plum.xoxoday.com/llms.txt
Use this file to discover all available pages before exploring further.
Authorization: Bearer <access_token>
Campaign list returned successfully.
Show child attributes