docs/classes/management.SDK.CustomTextClient-1.html
new CustomTextClient(options: BaseClientOptions): CustomTextClient
list(
id: string,
language: "en",
page: "get-started",
requestOptions?: CustomTextClient.RequestOptions,
): HttpResponsePromise<ListSelfServiceProfileCustomTextResponseContent>
Retrieves text customizations for a given self-service profile, language and Self-Service Enterprise Configuration flow page.
The id of the self-service profile.
The language of the custom text.
The page where the custom text is shown.
OptionalrequestOptions: CustomTextClient.RequestOptionsRequest-specific configuration.
Management.TooManyRequestsError
await client.selfServiceProfiles.customText.list("id", "en", "get-started")Copy
set(
id: string,
language: "en",
page: "get-started",
request: SetSelfServiceProfileCustomTextRequestContent,
requestOptions?: CustomTextClient.RequestOptions,
): HttpResponsePromise<SetSelfServiceProfileCustomTextResponseContent>
Updates text customizations for a given self-service profile, language and Self-Service Enterprise Configuration flow page.
The id of the self-service profile.
The language of the custom text.
The page where the custom text is shown.
OptionalrequestOptions: CustomTextClient.RequestOptionsRequest-specific configuration.
Management.TooManyRequestsError
await client.selfServiceProfiles.customText.set("id", "en", "get-started", { "key": "value" })Copy
Protected Readonly_options_options: NormalizedClientOptionsWithAuth<BaseClientOptions>
Member Visibility
ThemeOSLightDark
Constructors constructor Methods listset Properties _options