List fields
Retrieve all fields created by your organisation.
GET
https://api.eventgoose.com/v1/fields
Authentication
Authenticate yourself using your organisation api token
Parameters
None
Response
200
application/json
A paginated object is returned with a list of field 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": "NnqZebOXBMzoyWGY",
"name": {
"clean": "Postal code",
"slug": "postal_code"
},
"type": "text"
},
{ },
{ },
],
"links": {
"first": "https://api.eventgoose.com/v1/fields?page=1",
"last": "https://api.eventgoose.com/v1/fields?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"path": "https://api.eventgoose.com/v1/fields",
"per_page": 20,
"to": 3,
"total": 3
}
}