Partner Endpoints
User Progress
GET
/
campaign
/
user-progress
curl --request GET \
--url https://partners-api.forge.gg/campaign/user-progress \
--header 'X-API-Key: <x-api-key>'
{
"campaign_id": "<##CAMPAIGN_ID##>",
"campaign_name": "Campaign Name",
"user_progress": [
{
"user_id": "user_id",
"name": "user_name",
"email": "user_email",
"quest_details": {
"week_1": [
{
"quest_id": "quest_id",
"title": "quest title",
"is_accomplished": true
}
]
},
"wallets": {
"blockchain": [
"wallet_address"
]
}
}
],
"next_token": "<##NEXT_TOKEN##>"
}
Headers
Response
200
application/json
Successful response
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://partners-api.forge.gg/campaign/user-progress \
--header 'X-API-Key: <x-api-key>'
{
"campaign_id": "<##CAMPAIGN_ID##>",
"campaign_name": "Campaign Name",
"user_progress": [
{
"user_id": "user_id",
"name": "user_name",
"email": "user_email",
"quest_details": {
"week_1": [
{
"quest_id": "quest_id",
"title": "quest title",
"is_accomplished": true
}
]
},
"wallets": {
"blockchain": [
"wallet_address"
]
}
}
],
"next_token": "<##NEXT_TOKEN##>"
}