List billing information

Retrieve a list of billing information objects from your organisation

GET https://api.eventgoose.com/v1/billing-information

Authentication

Authenticate yourself using your organisation api token

Parameters

None

Response

200 application/json

A paginated object is returned with a list of billing information 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": "Eventgoose B.V.",
            "iban": "NL02ABNA0123456789",
            "vat": "NL123456789B01"
        },
        {  },
        {  }
    ],
    "links": {
        "first": "http://api.eventgoose.com/v1/billing-information?page=1",
        "last": "http://api.eventgoose.com/v1/billing-information?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "path": "http://api.eventgoose.com/v1/billing-information",
        "per_page": 20,
        "to": 1,
        "total": 3
    }
}