Badge

Get all badges of a user

get

This endpoint retrives all the badges that the user is associated with.

Query parameters
userIdstringrequired

The Id of the user performing the request.

Example: dummy-userid
Header parameters
apikeystringrequired

The API key for authentication

Example: test
apisecretstringoptional

The secret key for authentication

Example: test-secret
Responses
curl -L \
  --url 'https://api.questprotocol.xyz/api/badges?userId=dummy-userid' \
  --header 'apikey: test'
{
  "success": true,
  "data": [
    {
      "data": {
        "xp": 10,
        "visibility": "OPEN",
        "type": "NONE",
        "remainingCount": 100,
        "createdAt": "2023-05-26T14:44:19.220Z",
        "badgeId": "dummy-id",
        "entityId": "e-000001",
        "name": "dummy-badge-name",
        "imageIPFS": "QmXdzQQ238rkdiM7i9YgXXEtm5n3Fypw9r6QPVtwjNMGzW",
        "description": "dummy-description",
        "skills": [
          {
            "skillId": "123",
            "score": 123
          }
        ],
        "badgeContractTokenId": "dummy-token",
        "endsAt": 1685198841965,
        "typeData": [
          "t"
        ],
        "proofType": "Proof of Appreciation",
        "createdBy": "u-0000001"
      },
      "inDyNFT": false,
      "claimed": false,
      "claimStatus": "UNCLAIMED"
    }
  ]
}

Get all badges created by a user

get

This endpoint retrives all the badges a user has created.

Path parameters
userIdstringrequired
Header parameters
apikeystringrequired

The API key for authentication

Example: test
apisecretstringoptional

The secret key for authentication

Example: test-secret
useridstringrequired

The Id of the user performing the request.

Example: dummy-userid
tokenstringrequired

The token for user authentication.

Example: dummy-token
Responses
curl -L \
  --url 'https://api.questprotocol.xyz/api/users/{userId}/created-badges' \
  --header 'apikey: test' \
  --header 'userid: dummy-userid' \
  --header 'token: dummy-token'
{
  "success": true,
  "data": [
    {
      "data": {
        "xp": 10,
        "visibility": "OPEN",
        "type": "NONE",
        "remainingCount": 100,
        "createdAt": "2023-05-26T14:44:19.220Z",
        "badgeId": "dummy-id",
        "entityId": "e-000001",
        "name": "dummy-badge-name",
        "imageIPFS": "QmXdzQQ238rkdiM7i9YgXXEtm5n3Fypw9r6QPVtwjNMGzW",
        "description": "dummy-description",
        "skills": [
          {
            "skillId": "123",
            "score": 123
          }
        ],
        "badgeContractTokenId": "dummy-token",
        "endsAt": 1685198841965,
        "typeData": [
          "t"
        ],
        "proofType": "Proof of Appreciation",
        "createdBy": "u-0000001"
      },
      "inDyNFT": false,
      "claimed": false,
      "claimStatus": "UNCLAIMED"
    }
  ]
}

Get all badges of an entity

get

This endpoint retrives all the badges associated with an entity.

Path parameters
entityIdstringrequired
Query parameters
userIdstringrequired

The Id of the user performing the request.

Example: dummy-userid
Header parameters
apikeystringrequired

The API key for authentication

Example: test
apisecretstringoptional

The secret key for authentication

Example: test-secret
Responses
curl -L \
  --url 'https://api.questprotocol.xyz/api/entities/{entityId}/badges?userId=dummy-userid' \
  --header 'apikey: test'
{
  "success": true,
  "data": [
    {
      "data": {
        "xp": 10,
        "visibility": "OPEN",
        "type": "NONE",
        "remainingCount": 100,
        "createdAt": "2023-05-26T14:44:19.220Z",
        "badgeId": "dummy-id",
        "entityId": "e-000001",
        "name": "dummy-badge-name",
        "imageIPFS": "QmXdzQQ238rkdiM7i9YgXXEtm5n3Fypw9r6QPVtwjNMGzW",
        "description": "dummy-description",
        "skills": [
          {
            "skillId": "123",
            "score": 123
          }
        ],
        "badgeContractTokenId": "dummy-token",
        "endsAt": 1685198841965,
        "typeData": [
          "t"
        ],
        "proofType": "Proof of Appreciation",
        "createdBy": "u-0000001"
      },
      "inDyNFT": false,
      "claimed": false,
      "claimStatus": "UNCLAIMED"
    }
  ]
}

Add badge for an entity

post

This endpoint adds a badge for an entity.

Path parameters
entityIdstringrequired
Query parameters
userIdstringrequired

The Id of the user performing the request.

Example: dummy-userid
Header parameters
apikeystringrequired

The API key for authentication

Example: test
apisecretstringoptional

The secret key for authentication

Example: test-secret
tokenstringrequired

The token for user authentication.

Example: dummy-token
useridstringrequired

The Id of the user performing the request.

Example: dummy-userid
Body
namestringrequiredExample: dummy-name
imageIPFSstringrequiredExample: dummy-hash
descriptionstringrequiredExample: dummy-description
skillsobject[]optional

userIdsstring[]optionalExample: u-00000001
endsAtinteger · int64optionalExample: 1685198841965
xpnumberoptionalExample: 0
airdropEnabledbooleanoptionalExample: false
typeDataobjectoptional
typestringoptionalExample: NONE
totalCountnumberoptionalExample: 10
visibilitystringoptionalExample: LIMITED
proofTypestringoptionalExample: dummy proof
Responses
curl -L \
  --request POST \
  --url 'https://api.questprotocol.xyz/api/entities/{entityId}/badges?userId=dummy-userid' \
  --header 'apikey: test' \
  --header 'token: dummy-token' \
  --header 'userid: dummy-userid' \
  --header 'Content-Type: application/json' \
  --data '{
    "name": "dummy-name",
    "imageIPFS": "dummy-hash",
    "description": "dummy-description",
    "skills": [
      {
        "skillId": "dummy-id",
        "score": 100
      }
    ],
    "userIds": [
      "u-00000001"
    ],
    "endsAt": 1685198841965,
    "xp": 0,
    "airdropEnabled": false,
    "typeData": {},
    "type": "NONE",
    "totalCount": 10,
    "visibility": "LIMITED",
    "proofType": "dummy proof"
  }'
{
  "success": true,
  "badgeId": "badge-1212122"
}

Get badge details of an entity

get

This endpoint retrives the badge details associated with an entity.

Path parameters
entityIdstringrequired
badgeIdstringrequired
Query parameters
userIdstringrequired

The Id of the user performing the request.

Example: dummy-userid
Header parameters
apikeystringrequired

The API key for authentication

Example: test
apisecretstringoptional

The secret key for authentication

Example: test-secret
useridstringrequired

The Id of the user performing the request.

Example: dummy-userid
tokenstringrequired

The token for user authentication.

Example: dummy-token
Responses
curl -L \
  --url 'https://api.questprotocol.xyz/api/entities/{entityId}/badges/{badgeId}?userId=dummy-userid' \
  --header 'apikey: test' \
  --header 'userid: dummy-userid' \
  --header 'token: dummy-token'
{
  "success": true,
  "data": {
    "badge_data": {
      "badgeId": "badge123",
      "entityId": "entity123",
      "badgeContractTokenId": "token123",
      "name": "My Badge",
      "imageIPFS": "https://example.com/badge-image.jpg",
      "description": "This is my badge description.",
      "xp": 100,
      "skills": [
        {
          "skillId": "skill1",
          "score": 80
        },
        {
          "skillId": "skill2",
          "score": 60
        }
      ],
      "isEnabled": true,
      "visibility": "LIMITED",
      "type": "DISCORD",
      "typeData": {
        "key1": "value1",
        "key2": "value2"
      },
      "proofType": "Type A",
      "endsAt": 1678900000,
      "remainingCount": 5,
      "createdBy": "user123",
      "createdAt": "2023-06-27T12:45:00Z"
    },
    "skills_data": [
      {
        "skillId": "skil-12",
        "score": 20,
        "name": "Java",
        "description": "sun-microsystem's java",
        "isEnabled": true
      }
    ],
    "entity_data": {
      "id": "entity123",
      "entityURLAlias": "my-entity",
      "entityRecordIds": [
        "record1",
        "record2"
      ],
      "contracts": [
        "contract1",
        "contract2"
      ],
      "badgeContractAddress": "0x123abc",
      "dyNFTContractAddress": "0x456def",
      "themeContractAddress": "0x789ghi",
      "name": "My Entity",
      "openseaSlug": "my-entity-slug",
      "description": "This is my entity description.",
      "twitter": "myentity",
      "discord": "myentity#1234",
      "telegram": "myentity",
      "instagram": "myentity",
      "website": "https://myentity.com",
      "medium": "myentity",
      "imageUrl": "https://example.com/myentity.jpg",
      "bannerUrl": "https://example.com/myentity-banner.jpg",
      "isEnabled": true,
      "isPrivate": true,
      "chainSource": "OFF_CHAIN",
      "defaultDyNftThemeId": "0",
      "discordQuestWebhookURL": "https://example.com/discord-webhook",
      "modifiedAt": "2023-06-27T12:45:00Z",
      "createdAt": "2023-06-25T09:00:00Z",
      "plan": "FREE",
      "theme": {},
      "parentEntityId": "e-0000001"
    },
    "claimedUsers": [
      {
        "userId": "user-123"
      }
    ],
    "unclaimedUsers": [
      {
        "userId": "user-123"
      }
    ],
    "isOwner": true,
    "stats": {
      "claimedCount": 10,
      "unclaimedCount": 5
    },
    "claimStatus": "NOT_WHITELISTED"
  }
}

Update badge

post

This endpoint updates a badge of an entity.

Path parameters
entityIdstringrequired
badgeIdstringrequired
Header parameters
apikeystringrequired

The API key for authentication

Example: test
apisecretstringoptional

The secret key for authentication

Example: test-secret
useridstringrequired

The Id of the user performing the request.

Example: dummy-userid
tokenstringrequired

The token for user authentication.

Example: dummy-token
Body
namestringoptionalExample: dummy badge
imageIPFSstringoptionalExample: ipfa-hash
descriptionstringoptionalExample: updated the description
typestringoptionalExample: DISCORD
skillsobject[]optional

endsAtnumberoptionalExample: 720000
xpnumberoptionalExample: 20
typeDataobjectoptional
Responses
curl -L \
  --request POST \
  --url 'https://api.questprotocol.xyz/api/entities/{entityId}/badges/{badgeId}/update' \
  --header 'apikey: test' \
  --header 'userid: dummy-userid' \
  --header 'token: dummy-token' \
  --header 'Content-Type: application/json' \
  --data '{
    "name": "dummy badge",
    "imageIPFS": "ipfa-hash",
    "description": "updated the description",
    "type": "DISCORD",
    "skills": [
      {
        "skillId": "java",
        "score": 100
      }
    ],
    "endsAt": 720000,
    "xp": 20,
    "typeData": {}
  }'
{
  "success": true
}

Claim badge for an entity

post

This endpoint allows users to claim a badge for an entity

Path parameters
entityIdstringrequired
badgeIdstringrequired
Query parameters
userIdstringrequired

The Id of the user performing the request.

Example: dummy-userid
Header parameters
apikeystringrequired

The API key for authentication

Example: test
apisecretstringoptional

The secret key for authentication

Example: test-secret
useridstringrequired

The Id of the user performing the request.

Example: dummy-userid
tokenstringrequired

The token for user authentication.

Example: dummy-token
Body
addToDynamicNFTbooleanoptionalExample: true
Responses
curl -L \
  --request POST \
  --url 'https://api.questprotocol.xyz/api/entities/{entityId}/badges/{badgeId}/claim?userId=dummy-userid' \
  --header 'apikey: test' \
  --header 'userid: dummy-userid' \
  --header 'token: dummy-token' \
  --header 'Content-Type: application/json' \
  --data '{
    "addToDynamicNFT": true
  }'
{
  "success": true,
  "nftMinted": true,
  "calculatedDynamicNFT": true
}

Add users to badge

post

This endpoint allows an admin to add users to a Badge.

Path parameters
entityIdstringrequired
badgeIdstringrequired
Query parameters
userIdstringrequired

The Id of the user performing the request.

Example: dummy-userid
Header parameters
apikeystringrequired

The API key for authentication

Example: test
apisecretstringoptional

The secret key for authentication

Example: test-secret
tokenstringrequired

The token for user authentication.

Example: dummy-token
Body
userIdsstring[]requiredExample: ["user-1","user-2"]
Responses
curl -L \
  --request POST \
  --url 'https://api.questprotocol.xyz/api/entities/{entityId}/badges/{badgeId}/users?userId=dummy-userid' \
  --header 'apikey: test' \
  --header 'token: dummy-token' \
  --header 'Content-Type: application/json' \
  --data '{
    "userIds": [
      "user-1",
      "user-2"
    ]
  }'
{
  "success": true
}

Get Badges Count for User

get

Retrieve the number of badges earned by a specific user within a particular entity.

Path parameters
entityIdstringrequired

The unique identifier of the entity.

userIdstringrequired

The unique identifier of the user within the entity.

Header parameters
apikeystringrequired

The API key for authentication

Example: test
apisecretstringoptional

The secret key for authentication

Example: test-secret
useridstringrequired

The Id of the user performing the request.

Example: dummy-userid
tokenstringrequired

The token for user authentication.

Example: dummy-token
Responses
curl -L \
  --url 'https://api.questprotocol.xyz/api/entities/{entityId}/users/{userId}/badges-count' \
  --header 'apikey: test' \
  --header 'userid: dummy-userid' \
  --header 'token: dummy-token'
{
  "success": true,
  "data": 5
}

Get User Earned Badges for Entity

get

Retrieve the badges earned by a specific user within a particular entity.

Path parameters
entityIdstringrequired

The unique identifier of the entity.

userIdstringrequired

The unique identifier of the user within the entity.

Query parameters
prefixBadgeIpfsstringoptional

Specify 'true' to prefix Badge IPFS URLs with the base URL.

pageintegeroptional

The page number for paginated results (default: 1).

limitintegeroptional

The number of items per page (default: 20).

Header parameters
apikeystringrequired

The API key for authentication

Example: test
apisecretstringoptional

The secret key for authentication

Example: test-secret
useridstringrequired

The Id of the user performing the request.

Example: dummy-userid
tokenstringrequired

The token for user authentication.

Example: dummy-token
Responses
curl -L \
  --url 'https://api.questprotocol.xyz/api/entities/{entityId}/users/{userId}/badges' \
  --header 'apikey: test' \
  --header 'userid: dummy-userid' \
  --header 'token: dummy-token'
{
  "success": true,
  "data": [
    {
      "badgeId": "badge123",
      "entityId": "entity123",
      "badgeContractTokenId": "token123",
      "name": "My Badge",
      "imageIPFS": "https://example.com/badge-image.jpg",
      "description": "This is my badge description.",
      "xp": 100,
      "skills": [
        {
          "skillId": "skill1",
          "score": 80
        },
        {
          "skillId": "skill2",
          "score": 60
        }
      ],
      "isEnabled": true,
      "visibility": "LIMITED",
      "type": "DISCORD",
      "typeData": {
        "key1": "value1",
        "key2": "value2"
      },
      "proofType": "Type A",
      "endsAt": 1678900000,
      "remainingCount": 5,
      "createdBy": "user123",
      "createdAt": "2023-06-27T12:45:00Z"
    }
  ],
  "page": 1,
  "totalCount": 10,
  "totalPages": 1
}

Last updated