Bookings
This part of the API covers creating, updating, and deleting bookings.
Booking Properties
{
"id": 1,
"created_at": "2017-12-14T07:59:21.000Z",
"expires_at": "2018-03-09T06:20:25.000Z",
"all_day": false,
"order_id": 9876543210,
"order_name": "12345",
"additional_fields": {
"field_1": "value1",
"field_2": "value2"
},
"notes": "",
"tags": [
"api_booking"
],
"starts_at": "2018-12-17T09:00:00.000Z",
"finishes_at": "2018-12-18T17:00:00.000Z",
"items": [
{
"variant_id": 50,
"external_id": 28912354753,
"quantity": 1,
"resources": [
{
"id": 1,
"name": "Alex",
"email": "[email protected]"
},
{
"id": 3,
"name": "Equipment"
}
],
"variant_title": "COBALT INK / XL",
"product_title": "Alex Sports Bra"
}
],
"guests": [
{
"first_name": "Blogs",
"last_name": "Blogs",
"email": "[email protected]",
"phone": "+1 8675 309",
"primary_contact": true
}
],
"location": {
"id": 1,
"name": "Location A"
},
"shipping_address": {
"id": 67,
"address1": "Address 1",
"address2": "Address 2",
"city": "City",
"company": "Company",
"country": "Country",
"country_code": "1234",
"first_name": "Fname",
"last_name": "Lname",
"name": "Fname Lname",
"phone":"+1 8675 309",
"province": "province",
"province_code": "1234",
"street": "Street",
"zip": "654321",
"latitude": "51.1576661",
"longitude": "-1.4458572"
}
}