booking/notes

This is a call to your Checkfront account that pulls all the notes from all of your bookings. This defaults to pulling all of the notes from your bookings for the past thirty days.

POST /api/3.0/booking/notes
Query Parameters:
  • date (string/timestamp) – Filter the booking notes by a date. This can be in ISO-8601 or “YYYY-MM-DD” format. This can also be a month and will show all notes from that month.

Response JSON Array of Objects:
  • note_id (integer) – the ID of the note on that booking.

  • account_id (integer) – If made by a staff or partner account, this represents their unique identifier, otherwise it represents a customer booking with the value of 0.

  • date (string) – The date the note was created. It appears in ISO-8601 format.

  • body (string) – The body of the note.

  • private (bool) – The visibility of the note on the invoice. True means it is hidden from the invoice, false means it shows.

  • booking_id (string) – The unique identifier for the booking that contains the note.

 1{
 2    "version": "3.0",
 3    "account_id": 1,
 4    "host_id": "your-company.checkfront.com",
 5    "name": "Your Company",
 6    "locale": {
 7        "id": "en_CA",
 8        "lang": "en",
 9        "currency": "CAD"
10    },
11    "request": {
12        "status": "OK",
13        "resource": "booking",
14        "id": "notes",
15        "records": 26,
16        "limit": 0,
17        "page": 1,
18        "pages": 1,
19        "time": 0.003,
20        "timestamp": 1524984437.018568,
21        "method": "get"
22    },
23    "notes": [
24        {
25            "note_id": 1,
26            "account_id": 0,
27            "date": "2018-04-26T17:40:25-07:00",
28            "body": "Quis error quo molestias rerum",
29            "private": false,
30            "booking_id": "PSGS-260418"
31        },
32        {
33            "note_id": 3,
34            "account_id": 1,
35            "date": "2018-04-21T23:30:19-07:00",
36            "body": "test 2",
37            "private": true,
38            "booking_id": "LLXF-230318"
39        }
40    ]
41}