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

X-API-Key
string
required

Query Parameters

campaign_id
string
required
next_token
string

Response

200
application/json
Successful response
campaign_id
string
Example:

"<##CAMPAIGN_ID##>"

campaign_name
string
Example:

"Campaign Name"

user_progress
object[]
next_token
string
Example:

"<##NEXT_TOKEN##>"