List privacy statements

Retrieve a list of privacy statement objects from your organisation

GET https://api.eventgoose.com/v1/privacy-statements

Authentication

Authenticate yourself using your organisation api token

Parameters

None

Response

200 application/json

A paginated object is returned with a list of privacy statement objects.

The results are paginated. Fetching all objects of a resource can be convenient. At the same time, returning too many objects at once can be unpractical from a performance perspective. Doing so might be too much work for the Eventgoose API to generate, or for your website to process.

    HTTP/1.1 200 OK
Content-Type: application/json

{
    "data": [
        {
            "id": "n8qX7ZMxLMg5DQj4",
            "name": "privacy-statement-2021"
        },
        {  },
        {  }
    ],
    "links": {
        "first": "http://api.eventgoose.com/v1/privacy-statements?page=1",
        "last": "http://api.eventgoose.com/v1/privacy-statements?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "path": "http://api.eventgoose.com/v1/privacy-statements",
        "per_page": 20,
        "to": 1,
        "total": 3
    }
}