List all identity providers

How to fetch a collection of identity providers via API

To fetch a collection of identity providers, send a GET request to the /api/identity_providers endpoint.

Request

GET https://provisioning.commercelayer.io/api/identity_providers

Example

The following request fetches a collection of identity providers:

curl -g -X GET \
  'https://provisioning.commercelayer.io/api/identity_providers/' \
  -H 'Accept: application/vnd.api+json' \
  -H 'Authorization: Bearer {{your_access_token}}'

Remember that when you fetch a list of resources you get paginated result.

Sortable fields

The list of identity providers can be sorted by the following fields:

  • name

  • client_id

  • client_secret

  • issuer

  • status

  • domains

  • token_url

  • authorize_url

  • jwks_url

  • txt_record

  • organization

  • id

  • created_at

  • updated_at

  • reference

  • reference_origin

  • disabled_at

Filterable fields

The list of identity providers can be filtered by the following fields:

Attributes

  • name

  • status

  • id

  • created_at

  • updated_at

  • reference

  • reference_origin

  • metadata

  • disabled_at

Relationships

  • user

Last updated