# Member bounties by player

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

Same lookup as getMemberBountiesByID and getMemberBountiesBySlug, addressed by the `playerId` you assigned the member, matched against their membership in the resolved creator group.

A `playerId` with no matching membership in that group 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) - Maximum number of records to return

## Path parameters

- `playerId` (string, required) - Your externalRef for the member, the id you supplied when generating their code or linking their Nexus account.

## 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 progress records
- `memberId` (string) - The member's Nexus id.
- `playerId` (string) - Echoes the externalRef for this member in the resolved group.
- `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)
