Skip to main content

Get personal connections

GET 

/api/v2/Connection

Returns a paginated list of the personal connections owned by the authenticated user. Only connections whose owner is the caller are returned, and credentials are never included. System callers own no personal connections, so they always receive an empty page.

Request

Query Parameters

    page int32

    Default value: 1

    The page number to retrieve. Default is 1.

    pageSize int32

    Default value: 20

    Number of items per page. Maximum allowed is 1000. Default is 20.

    culture string

    Use this param to override the culture of the response. Options: - en (default) - es

Responses

Returns a paginated list of the user's personal connections.

Schema

    items

    object[]

    nullable

  • Array [

  • links

    object[]

    nullable

  • Array [

  • method stringnullable
    url stringnullable
    rel stringnullable
  • ]

  • id uuid
    name stringnullable
    connector stringnullable

    The name of the connector this connection belongs to.

    connectorId uuid
    connectionType AuthTypeEnum (string)

    Possible values: [None, ApiKey, BasicAuth, BearerToken, OAuth2]

    The authentication type used by the connection.

    isDefault boolean

    Indicates whether this is the default connection for its connector.

  • ]

  • total int64
    pageSize int32
    page int32

    links

    object[]

    nullable

  • Array [

  • method stringnullable
    url stringnullable
    rel stringnullable
  • ]

Loading...