Get all society subscription

Groups

To understand the groups parameter and the customization of API responses, please refer to the groups page.

List of groups
  • subscriber - retrieve information about the subscriber

  • subscription - retrieve information about the subscription

Filters

To understand the filters parameter and the customization of API responses, please refer to the filters page.

List of filters
  • id - to filter by the unique identifier.

  • subscription.societyId - to filter by the subscription society ID.

  • subscriber.societyId - to filter by the subscriber society ID.

  • active - to filter by the active status.

  • createdAt - to filter by the creation date.

Get all society subscriptions

get

Get all society subscriptions

Authorizations
Query parameters
page[cursor]stringOptional
page[limit]any · min: 2 · max: 200Optional
order[column]stringOptionalExample: column_name
order[direction]stringOptionalExample: asc|desc
Responses
200Success
application/json
get
GET /society-subscription HTTP/1.1
Host: api.one-record.fr
Authorization: Bearer JWT
Accept: */*
{
  "data": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "subscriber": "text",
      "subscription": "text",
      "active": false,
      "createdAt": null,
      "updatedAt": null
    }
  ],
  "metadata": {
    "count": 1,
    "current": "text",
    "next": "text"
  }
}

Last updated