v5

latestOpenAPI 3.0.3Apache 2.0raw.githubusercontent.com2026-02-283466592.5 MB
Account members

Get account member

Get a single account member by member ID.

me is a reserved value for the id parameter that returns the caller's member information.

Expanding the member response

LaunchDarkly supports one field for expanding the "Get member" response. By default, this field is not included in the response.

To expand the response, append the expand query parameter and add a comma-separated list with any of the following fields:

  • roleAttributes includes a list of the role attributes that you have assigned to the member.

For example, expand=roleAttributes includes roleAttributes field in the response.

get/api/v2/members/{id}

Path parameters

idstring string required

The member ID

The member ID

Query parameters

expandstring string

A comma-separated list of properties that can reveal additional information in the response.

A comma-separated list of properties that can reveal additional information in the response.

Response

Member response

_linksobject required

The location and content type of related resources

_idstring required

The member's ID

firstNamestring

The member's first name

lastNamestring

The member's last name

rolestring required

The member's base role. If the member has no additional roles, this role will be in effect.

emailstring required

The member's email address

_pendingInviteboolean required

Whether the member has a pending invitation

_verifiedboolean required

Whether the member's email address has been verified

_pendingEmailstring

The member's email address before it has been verified, for accounts where email verification is required

customRolesstring[] required

The set of additional roles, besides the base role, assigned to the member

mfastring required

Whether multi-factor authentication is enabled for this member

excludedDashboardsstring[]

Default dashboards that the member has chosen to ignore

_lastSeeninteger required
creationDateinteger required
oauthProvidersOAuthProviderKind[]

A list of OAuth providers

versioninteger

Version of the current configuration

roleAttributesRoleAttributeMap

Example response

{
  "_id": "507f1f77bcf86cd799439011",
  "firstName": "Ariel",
  "lastName": "Flores",
  "role": "reader",
  "email": "ariel@acme.com",
  "_verified": true,
  "customRoles": [
    "devOps",
    "backend-devs"
  ],
  "_lastSeenMetadata": {
    "tokenId": "5b52207f8ca8e631d31fdb2b"
  },
  "teams": [
    {
      "customRoleKeys": [
        "access-to-test-projects"
      ],
      "key": "team-key-123abc",
      "name": "QA Team"
    }
  ],
  "permissionGrants": [
    {
      "actions": [
        "maintainTeam"
      ],
      "resource": "team/qa-team"
    }
  ],
  "version": 1
}