Get order
Retrieve the order by its identifier
GET
https://api.eventgoose.com/v1/orders/{id}
Authentication
Authenticate yourself using your organisation api token
Parameters
None
Response
200
application/json
An order object is returned.
HTTP/1.1 200 OK
Content-Type: application/json
{
"id": "QqBg7MwlyNEwWG0K",
"status": {
"code": 190,
"text": "Betaald"
},
"orderer": {
"type": "customer",
"data": {
"first_name": "Marielle",
"last_name": "Bayer",
"email": "mbayer@yahoo.com",
"phone": "+1872728234948"
}
},
"purchases": [
{
"id": "WVmRd20vAQE5LAvB",
"ticket": {
"id": "0nqJjGEj3WOedYPQ",
"name": "VIP"
},
"barcode": 6118645969485,
"available_at": null,
"timeslot": null,
"values": []
},
{
"id": "KN43GOrerVEXJQbx",
"ticket": {
"id": "0nqJjGEj3WOedYPQ",
"name": "VIP"
},
"barcode": 2394013917782,
"available_at": null,
"timeslot": null,
"scanned_at": "2021-03-03T11:40:55.000000Z",
"values": []
}
]
}