Back to Node Auth0

Interface ListHooksRequestParameters

docs/interfaces/management.Management.ListHooksRequestParameters.html

5.9.12.0 KB
Original Source

Interface ListHooksRequestParameters

Example

{ * page: 1, * per_page: 1, * include_totals: true, * enabled: true, * fields: "fields", * triggerId: "credentials-exchange" * }Copy

interface ListHooksRequestParameters {
page?: number | null;
per_page?: number | null;
include_totals?: boolean | null;
enabled?: boolean | null;
fields?: string | null;
triggerId?: Management.HookTriggerIdEnum | null;
}

Index

Properties

page?per_page?include_totals?enabled?fields?triggerId?

Properties

Optionalpage

page?: number | null

Page index of the results to return. First page is 0.

Optionalper_page

per_page?: number | null

Number of results per page.

Optionalinclude_totals

include_totals?: boolean | null

Return results inside an object that contains the total result count (true) or as a direct array of results (false, default).

Optionalenabled

enabled?: boolean | null

Optional filter on whether a hook is enabled (true) or disabled (false).

Optionalfields

fields?: string | null

Comma-separated list of fields to include in the result. Leave empty to retrieve all fields.

OptionaltriggerId

triggerId?: Management.HookTriggerIdEnum | null

Retrieves hooks that match the trigger

Settings

Member Visibility

  • Protected
  • Inherited

ThemeOSLightDark

On This Page

Properties pageper_pageinclude_totalsenabledfieldstriggerId