List all application memberships

How to fetch a collection of application memberships via API

To fetch a collection of application memberships, send a GET request to the /api/application_memberships endpoint.

Request

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

Example

The following request fetches a collection of application memberships:

curl -g -X GET \
  'https://provisioning.commercelayer.io/api/application_memberships/' \
  -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 application memberships can be sorted by the following fields:

  • id

  • created_at

  • updated_at

  • reference

  • reference_origin

Filterable fields

The list of application memberships can be filtered by the following fields:

Attributes

  • filters

  • id

  • created_at

  • updated_at

  • reference

  • reference_origin

  • metadata

Relationships

  • api_credential

  • membership

  • organization

  • role

Last updated