GET
/
v1
/
collectives
curl --request GET \
  --url https://platform.realto.io/api/v1/collectives \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "entities": [
        "3c90c3cc-0d44-4b50-8888-8dd25736052a"
      ],
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "owner": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "properties": "<any>",
      "type": "Community",
      "tenantId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ],
  "links": {
    "next": "<string>"
  },
  "meta": {
    "continuationToken": "<string>",
    "pageSize": 123
  }
}

Authorizations

Authorization
string
header
required

Access Token Authentication

Query Parameters

pageSize
integer
default:
25

The number of Collectives per page

continuationToken
string

The token used to retrieve the next page

Response

200
application/json
OK

A page of Collectives

data
object[] | null
meta
object