GO. vergadersuite

This API is intended to retrieve DMUs (Dutch: organen), meetings, documents, events and attachments from the GO. vergadersuite

Schemes:

Summary

Path Operation Description
/dmus GET
/meetings GET
/meetings/{meetingId} GET
/meetings/{meetingId}/documents/{documentId} GET
/events GET
/events/{eventId} GET
/events/{eventId}/attachments/{attachmentId} GET

Paths

GET /dmus

Retrieve a list of Decision Making Units (Dutch: organen).

application/json

200 OK

Successful response

dmu
404 Not Found

Not Found

500 Internal Server Error

Server error

GET /meetings

Retrieve a list of meetings

date_from

Start date as a UNIX timestamp.

query integer
date_to

End date as a UNIX timestamp.

query integer
sort

SQL descriptor for sorting. Possible values:

  • date_asc: Sort by date, ascending.
  • date_desc: Sort by date, descending.
  • id_asc: Sort by id, ascending.
  • id_desc: Sort by id, descending.

Other values are ignored.

query string

application/json

200 OK

Successful response

404 Not Found

Not Found

500 Internal Server Error

Server error

GET /meetings/{meetingId}

Retrieve a meeting.

meetingId

Identifier of document to fetch

path integer

application/json

200 OK

Successful response

404 Not Found

Not Found

500 Internal Server Error

Server error

GET /meetings/{meetingId}/documents/{documentId}

Retrieve a document.

meetingId

Identifier of meeting to fetch

path integer
documentId

Identifier of document to fetch

path integer

application/pdf

200 OK

Successful response

404 Not Found

Not Found

500 Internal Server Error

Server error

GET /events

Retrieve a list of events

date_from

Start date as a UNIX timestamp

query integer
date_to

End date as a UNIX timestamp

query integer

application/json

200 OK

Successful response

404 Not Found

Not Found

500 Internal Server Error

Server error

GET /events/{eventId}

Retrieve an event

eventId

Identifier of event to fetch

path integer

application/json

200 OK

Successful response

404 Not Found

Not Found

500 Internal Server Error

Server Error

GET /events/{eventId}/attachments/{attachmentId}

Retrieve an attachment from an event.

eventId

Identifier of event to fetch

path integer
attachmentId

Identifier of attachment to fetch from the event

path integer
download

Downloading the attachment from the event

path string

application/json

Successful response

404 Not Found

Not Found

500 Internal Server Error

Server error

Schema definitions

dmu: object

id: integer

Unique identifier for the DMU (Dutch: orgaan)

name: string

User-friendly name for the DMU (Dutch: orgaan)

document: object

PDF file with metadata.

id: integer

Unique id.

confidential: boolean

Confidentiality of the document

filename: string

Filename of the document. E.g. voorstel.pdf

filsize: integer

Filesize of the pdf.

modified: string

Date and time of last modification. E.g. 2016-06-29 20:30:00

meeting: object

id: integer

Unique identifier for the meeting

dmu: dmu

DMU (orgaan) that has the meeting

confidential: boolean

Confidentiality of the meeting. Always false if no token is passed.

location: string

Location of the meeting. E.g. Raadzaal.

description: string

Description of the meeting.

date: string

e.g. 2016-06-29 20:30:00

clerkname: string

The name of a clerk

clerkid: int

Unique identifier of a clerk

items: object[]

Agenda items

object
id: integer

Unique identifier for the meeting item

sortorder: integer

Integer representing the order of the meeting items

number: string

Item number. This is a string. E.g. 1.2A

title: string

Title of the agenda item. E.g. Opening

description: string

Description of the agenda item. Provides extra information about its contents. E.g. Opening van de agenda

portfolio holder: string

The person that is a holder of a portfolio

documents: object[]

Documents related to the agenda item.

documents: object[]

Documents related to the meeting.

Event: object

id: integer

Unique identifier for the event

title: string

The title of an event

fragment: string

The fragment of an event

description: string

The description of an event

message: string

The message for an event

publication_date: string

The publication date of an event

start_time: string

The start time of an event

end_time: string

The end time of an event

confidential: boolean

Confidentiality of an event. Default will show only public events

date: string

The date the event takes place

attachments: object[]

Attachments related to the event

attachment: object

PDF file with metadata

attachmentId: integer

Unique identifier for an attachment

attachment_name: string

The name of an attachment

attachment_is_bundle boolean

Returns true when a file is a bundle of attachments.