List terms and conditions

Retrieve a list of terms and condition objects from your organisation

GET https://api.eventgoose.com/v1/terms-and-conditions

Authentication

Authenticate yourself using your organisation api token

Parameters

None

Response

200 application/json

A paginated object is returned with a list of terms and condition 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": "zQaj9N2LbE85WKn1",
            "name": "terms-and-conditions-2021"
        },
        {  },
        {  }
    ],
    "links": {
        "first": "http://api.eventgoose.com/v1/terms-and-conditions?page=1",
        "last": "http://api.eventgoose.com/v1/terms-and-conditions?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "path": "http://api.eventgoose.com/v1/terms-and-conditions",
        "per_page": 20,
        "to": 1,
        "total": 3
    }
}