List all user profiles
const response = await client.profiles.list({ limit: 1000, cursor: 'abc' });
Get the user profile of the principal issuing the request
const response = await client.profiles.me();
Retrieve one or more user profiles by ID
const response = await client.profiles.retrieve([{ userIdentifier: 'abcd' }]);
Search user profiles
const response = await client.profiles.search({ search: { name: 'John' } });
List all user profiles
const response = await client.profiles.list({ limit: 1000, cursor: 'abc' });