Back to Node Auth0

Interface ListConnectionsQueryParameters

docs/interfaces/management.Management.ListConnectionsQueryParameters.html

5.9.12.0 KB
Original Source

Interface ListConnectionsQueryParameters

Example

{ * from: "from", * take: 1, * strategy: ["ad"], * name: "name", * fields: "fields", * include_fields: true * }Copy

interface ListConnectionsQueryParameters {
from?: string | null;
take?: number | null;
strategy?:
| Management.ConnectionStrategyEnum
| (ConnectionStrategyEnum | null)[]
| null;
name?: string | null;
fields?: string | null;
include_fields?: boolean | null;
}

Index

Properties

from?take?strategy?name?fields?include_fields?

Properties

Optionalfrom

from?: string | null

Optional Id from which to start selection.

Optionaltake

take?: number | null

Number of results per page. Defaults to 50.

Optionalstrategy

strategy?:
| Management.ConnectionStrategyEnum
| (ConnectionStrategyEnum | null)[]
| null

Provide strategies to only retrieve connections with such strategies

Optionalname

name?: string | null

Provide the name of the connection to retrieve

Optionalfields

fields?: string | null

A comma separated list of fields to include or exclude (depending on include_fields) from the result, empty to retrieve all fields

Optionalinclude_fields

include_fields?: boolean | null

true if the fields specified are to be included in the result, false otherwise (defaults to true)

Settings

Member Visibility

  • Protected
  • Inherited

ThemeOSLightDark

On This Page

Properties fromtakestrategynamefieldsinclude_fields