docs/classes/management.SDK.UserAttributeProfilesClient.html
listcreatelistTemplatesgetTemplategetdeleteupdate
new UserAttributeProfilesClient(
options: BaseClientOptions,
): UserAttributeProfilesClient
list(
request?: ListUserAttributeProfileRequestParameters,
requestOptions?: UserAttributeProfilesClient.RequestOptions,
): Promise<
Page<
UserAttributeProfile,
ListUserAttributeProfilesPaginatedResponseContent,
>,
>
Retrieve a list of User Attribute Profiles. This endpoint supports Checkpoint pagination.
OptionalrequestOptions: UserAttributeProfilesClient.RequestOptionsRequest-specific configuration.
Management.TooManyRequestsError
await client.userAttributeProfiles.list({ from: "from", take: 1 })Copy
create(
request: CreateUserAttributeProfileRequestContent,
requestOptions?: UserAttributeProfilesClient.RequestOptions,
): HttpResponsePromise<CreateUserAttributeProfileResponseContent>
Create a User Attribute Profile
OptionalrequestOptions: UserAttributeProfilesClient.RequestOptionsRequest-specific configuration.
Management.TooManyRequestsError
await client.userAttributeProfiles.create({ name: "name", user_attributes: { "key": { description: "description", label: "label", profile_required: true, auth0_mapping: "auth0_mapping" } } })Copy
listTemplates(
requestOptions?: UserAttributeProfilesClient.RequestOptions,
): HttpResponsePromise<ListUserAttributeProfileTemplateResponseContent>
Retrieve a list of User Attribute Profile Templates.
OptionalrequestOptions: UserAttributeProfilesClient.RequestOptionsRequest-specific configuration.
Management.TooManyRequestsError
await client.userAttributeProfiles.listTemplates()Copy
getTemplate(
id: string,
requestOptions?: UserAttributeProfilesClient.RequestOptions,
): HttpResponsePromise<GetUserAttributeProfileTemplateResponseContent>
Retrieve a User Attribute Profile Template.
ID of the user-attribute-profile-template to retrieve.
OptionalrequestOptions: UserAttributeProfilesClient.RequestOptionsRequest-specific configuration.
Management.TooManyRequestsError
await client.userAttributeProfiles.getTemplate("id")Copy
get(
id: string,
requestOptions?: UserAttributeProfilesClient.RequestOptions,
): HttpResponsePromise<GetUserAttributeProfileResponseContent>
Retrieve details about a single User Attribute Profile specified by ID.
ID of the user-attribute-profile to retrieve.
OptionalrequestOptions: UserAttributeProfilesClient.RequestOptionsRequest-specific configuration.
Management.TooManyRequestsError
await client.userAttributeProfiles.get("id")Copy
delete(
id: string,
requestOptions?: UserAttributeProfilesClient.RequestOptions,
): HttpResponsePromise<void>
Delete a single User Attribute Profile specified by ID.
ID of the user-attribute-profile to delete.
OptionalrequestOptions: UserAttributeProfilesClient.RequestOptionsRequest-specific configuration.
Management.TooManyRequestsError
await client.userAttributeProfiles.delete("id")Copy
update(
id: string,
request?: UpdateUserAttributeProfileRequestContent,
requestOptions?: UserAttributeProfilesClient.RequestOptions,
): HttpResponsePromise<UpdateUserAttributeProfileResponseContent>
Update the details of a specific User attribute profile, such as name, user_id and user_attributes.
ID of the user attribute profile to update.
OptionalrequestOptions: UserAttributeProfilesClient.RequestOptionsRequest-specific configuration.
Management.TooManyRequestsError
await client.userAttributeProfiles.update("id")Copy
Protected Readonly_options_options: NormalizedClientOptionsWithAuth<BaseClientOptions>
Member Visibility
ThemeOSLightDark
Constructors constructor Methods listcreatelistTemplatesgetTemplategetdeleteupdate Properties _options