Same lookup as getMemberBountiesByID and getMemberBountiesByPlayerID, addressed by the member’s slug instead of their member id or playerId. The slug match is case-insensitive.
The response matches the other two member-bounty lookups, plus an echo of the slug you requested.
Authorizations
Section titled “Authorizations”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters”Slug of member to retrieve bounties for
Query Parameters
Section titled “Query Parameters”Creator group to use for this operation
Page of records to return
Page size
Responses
Section titled “ Responses ”Bounty progress for specified member
object
ID of the creator group
Name of the creator group
Page number of response records returned
Page size used for this operation
Total number of referrals
Unique identifier for this members’s in-game user, set when linking with their Nexus account or generating the code
object
Whether the creator has completed this bounty. Bounties will not be considered completed until the completion limit has been reached
object
object
object
object
object
object
The bounty progress reward’s id.
The bounty reward’s name.
Your own catalog id for this reward.
Whether this reward has been completed. Becomes true the first time this endpoint successfully completes it, and does not change on later calls.
The referenceId from the first completion call. Not changed by a later call to this endpoint.
object
Unique identifier for this member’s in-game user, set when linking with their Nexus account or generating the code
A group member’s code which is used as their storefront URL and when creating transactions or referrals
object
Indicates whether or not this is the primary code for this member.
Indicates whether or not this is a code that you generated.
Indicates whether or not this is a code that you manage. Once a code that you generated has been linked to a Nexus account, it will no longer be considered managed.
Bad request
object
CodeNotInGroup: Creator group is private, and specified code is not linked to it
InvalidGroup: No creator group was found with the specified groupId
InvalidAuthCode: AuthCode provided is not valid
ExpiredAuthCode: AuchCode provided has expired
ReferralNexusNotFound: No Nexus was found to match the provided referral code
BountyNotFound: No bounty was found with the specified bountyId
CreatorNotFound: No creator found with the specified creatorId
InvalidEventCode: No event found with the specifed event code
const url = 'https://api.nexus.gg/v1/bounties/member/slug/example?page=1&pageSize=100';const options = {method: 'GET', headers: {'X-SHARED-SECRET': 'nexus_sk_your_key_here'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://api.nexus.gg/v1/bounties/member/slug/example?page=1&pageSize=100' \ --header 'X-SHARED-SECRET: nexus_sk_your_key_here'Example
{ "currentPage": 1, "currentPageSize": 100, "totalCount": 1, "memberId": "9jd7RBR_B2BZ0uWO3_lgv", "playerId": "player_8f2c41d0", "slug": "popcornfrog", "progress": { "id": "Hff_Zps6FFF0MZzmCsTr4", "completed": false, "completionCount": 1, "currentObjectiveGroupId": "Qk8mZ3vDxLpN9fT2wRyHb", "currentObjectives": [ { "id": "XD3Xj13ss4Evkgyq7csCL", "completed": false, "count": 1, "objective": { "id": "m-OWRxs8qnSSny4THjT1R", "name": "Refer a player that reaches level 20", "count": 5, "condition": "AND" } } ], "completedObjectives": [ { "objectiveGroupId": "R2vbVWNC4SHhC2lk_QHsq", "objectives": [ { "id": "XD3Xj13ss4Evkgyq7csCT", "completed": true, "count": 5, "objective": { "id": "m-OWRxs8qnSSny4THjT1R", "name": "Refer a player that reaches level 20", "count": 5, "condition": "AND" } } ] } ], "rewards": [ { "id": "kCxr7lst7Ghk8n1o6DKEF", "name": "In game Title", "externalId": "reward_mvp_title", "rewardCompleted": true, "rewardReferenceId": "ref_8f2c41d0" } ], "bounty": { "id": "zaYan69O7icpHF0t2y0ul", "name": "5 Referals reach level 20" }, "member": { "id": "9jd7RBR_B2BZ0uWO3_lgv", "playerId": "player_8f2c41d0", "name": "PopcornFrog", "codes": [ { "code": "Popcornfrog", "isPrimary": true, "isGenerated": false, "isManaged": false } ] } }}Example
{ "code": "InvalidGroup", "message": "Bounty Not found"}