Deprecated in favor of the List principals endpoint.
List all user profiles in the current project. This operation supports pagination by cursor. The results are ordered alphabetically by name.
const response = await client.profiles.list({ limit: 1000 });
{- "items": [
- {
- "userIdentifier": "abcd",
- "givenName": "Jane",
- "surname": "Doe",
- "email": "jane.doe@example.com",
- "displayName": "Jane Doe",
- "jobTitle": "Software Engineer",
- "identityType": "USER",
- "lastUpdatedTime": 1730204346000
}
], - "nextCursor": "string"
}