# Member bounties by ID

`GET https://api.nexus.gg/v1/bounties/member/id/{memberId}`

Returns a member's bounty progress in the resolved creator group, looked up by their Nexus member ID (`memberId`).

Once the member is resolved, this operation runs the same bounty-progress query as `getMemberBountiesBySlug` and `getMemberBountiesByPlayerID`, paginated the same way, and returns the same response shape.

A `memberId` that isn't a member of the resolved group, or doesn't exist at all, returns `404 CodeNotInGroup`.

## Authorizations

- `X-SHARED-SECRET` (string, header, required)

## Query parameters

- `groupId` (string) - Creator group to use for this operation. If your key is scoped to a single program, that group is always used regardless of this value; otherwise falls back to your default group when omitted.
- `page` (integer) - Page of records to return
- `pageSize` (integer) - Page size.

## Path parameters

- `memberId` (string, required) - The member's Nexus id, the same `id` value getMembers returns for each member in the group.

## Responses

### 200

Bounty progress for specified member

#### Body (`application/json`)

- `groupId` (string) - ID of the creator group
- `groupName` (string) - Name of the creator group
- `currentPage` (integer) - Page number of response records returned
- `currentPageSize` (integer) - Page size used for this operation
- `totalCount` (integer) - Total number of referrals
- `memberId` (string) - The member's Nexus id.
- `playerId` (string) - Your externalRef for this member in the resolved group. Always present in a 200 response from this operation, since the query only matches a member that already has a membership there.
- `progress` (array of object)

### 400

bad request

#### Body (`application/json`)

- `code` (string) - CodeNotInGroup: Creator group is private, and specified code is not linked to it<br/> InvalidGroup: No creator group was found with the specified groupId<br/> InvalidAuthCode: AuthCode provided is not valid<br/> ExpiredAuthCode: AuchCode provided has expired<br/> ReferralNexusNotFound: No Nexus was found to match the provided referral code<br/> BountyNotFound: No bounty was found with the specified bountyId<br/> CreatorNotFound: No creator found with the specified creatorId<br/> InvalidEventCode: No event found with the specifed event code Allowed values: InvalidGroup, CodeNotInGroup, InvalidAuthCode, ExpiredAuthCode, ReferralNexusNotFound, BountyNotFound, MemberNotFound, InvalidEventCode, UnknownError.
- `message` (string)
