From baf8b03a2b18b3f69064bc1c6efb10895f92a369 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 29 Mar 2026 15:10:34 +0000 Subject: [PATCH 1/2] Fix API spec to match actual response types MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replays schema fixes from PR #6 cleanly onto main, avoiding merge conflicts caused by intervening Postman collection and studio.json changes. - room.id: string → integer (API returns numeric IDs) - customer.regular_bookings_count: allow boolean false in addition to integer - short_group: add number (nullable) and booking_count fields - dashboard_booking: rewrite to match actual dashboard response format (start/end datetimes, split room code, formatted amount_due, etc.) https://claude.ai/code/session_01DgxWeWcLq3ao4NDvAUQTzX --- v2/jammed.yaml | 93 ++++++++++++++++++++++++++++++++------------------ 1 file changed, 59 insertions(+), 34 deletions(-) diff --git a/v2/jammed.yaml b/v2/jammed.yaml index e1ae21b..2e798cd 100644 --- a/v2/jammed.yaml +++ b/v2/jammed.yaml @@ -2941,7 +2941,16 @@ components: number_of_members: type: integer title: NumberOfMembers - description: "The number of members in the group" + description: "The number of members in the group (only present in full group responses)" + number: + type: integer + title: Number + description: "The number of members in the group (present in customer band responses)" + nullable: true + booking_count: + type: integer + title: BookingCount + description: "The number of bookings for this group" required: - name - code @@ -3103,7 +3112,7 @@ components: type: object properties: id: - type: string + type: integer title: id description: "Same as code" code: @@ -3215,9 +3224,11 @@ components: title: SignedUpAt description: "Unix timestamp from epoch - when the customer signed up" regular_bookings_count: - type: integer title: RegularBookingsCount - description: "The number of regular bookings the customer has made" + description: 'The number of regular bookings the customer has made. Note: may return boolean `false` instead of `0` when the customer has no regular bookings.' + oneOf: + - type: integer + - type: boolean bookings_count: type: integer title: BookingsCount @@ -3825,8 +3836,8 @@ components: dashboard_booking: type: object - title: Dashboard Booking - description: Lightweight booking representation for dashboard/schedule views + title: DashboardBooking + description: 'A booking as returned by the dashboard endpoint. Note: this format differs significantly from the full booking schema.' properties: id: type: integer @@ -3834,60 +3845,74 @@ components: type: string name: type: string + description: Customer name + title: + type: string + description: Display title, e.g. "John Doe (The Beatles)" + band_name: + type: string + description: Band/group name, empty string if none is_recording: type: boolean + nullable: true session_name: type: string + nullable: true block_colour_override: type: string + nullable: true + description: Hex colour override for the booking block studio_notes: type: string + nullable: true additional_notes: type: string + nullable: true number_expected: type: integer - room: - type: object - properties: - id: - type: integer - name: - type: string - code: - type: string - start_at: - type: integer - end_at: - type: integer - start_time: + nullable: true + start: type: string - end_time: + description: 'Start datetime as "YYYY-MM-DD HH:mm"' + example: "2026-03-24 11:41" + end: type: string - title: + description: 'End datetime as "YYYY-MM-DD HH:mm"' + example: "2026-03-24 12:41" + split: type: string - band_name: + description: Room code — use to match against rooms[].code + room_name: type: string + description: Room display name has_amount_due: type: boolean amount_due: - type: integer + type: string + description: 'Formatted currency string e.g. "£1.00"' + payments_recieved: + type: boolean + description: 'Whether any payments have been received (note: API uses this spelling)' regular: type: boolean incomplete: type: boolean - cancelled: + show_studio_notes: type: boolean - customer: - type: object - properties: - id: - type: integer - name: - type: string - email: - type: string extras_summary: + type: array + items: + type: string + description: Array of extra item descriptions (empty array if none) + link: + type: string + description: 'Admin link path e.g. "/admin/bookings/R9XT9J1JFX"' + type: + type: string + description: '"booking" or "blocked"' + class: type: string + description: 'CSS class for the booking block e.g. "room-l3j5nwp8"' credit_movement: type: object From bb52899a6e5d63319fd245588a340c52da62fd7d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 29 Mar 2026 15:10:54 +0000 Subject: [PATCH 2/2] Auto-update Postman collection from OpenAPI spec --- v2/jammed-postman-collection.json | 482 +++++++++++++++--------------- 1 file changed, 241 insertions(+), 241 deletions(-) diff --git a/v2/jammed-postman-collection.json b/v2/jammed-postman-collection.json index f5fb2c5..1404763 100644 --- a/v2/jammed-postman-collection.json +++ b/v2/jammed-postman-collection.json @@ -5,7 +5,7 @@ "description": "", "item": [ { - "id": "e97cee69-973e-4d42-a074-829ff241fd62", + "id": "62e8e4fc-0412-4d6d-9cb4-9e259e93cffd", "name": "All bookings", "request": { "name": "All bookings", @@ -72,7 +72,7 @@ }, "response": [ { - "id": "3c1646db-60cd-4c01-9c3a-ac42fe46719e", + "id": "6afac0a1-e4db-4781-a914-d77bab13ab3c", "name": "successful operation", "originalRequest": { "url": { @@ -139,12 +139,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n },\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n }\n]", + "body": "[\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n },\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1ae33eb1-3780-42d1-8fac-d9c53e11412a", + "id": "dfbf1365-4f83-49bd-80e1-696fc47167d6", "name": "Unauthorized - Invalid API key", "originalRequest": { "url": { @@ -210,7 +210,7 @@ } }, { - "id": "0a3fdc75-53fd-4eb5-a3d6-d2023b2f6579", + "id": "b73e3289-e70c-4bd4-93e2-7514e018833d", "name": "Create a booking", "request": { "name": "Create a booking", @@ -253,7 +253,7 @@ }, "response": [ { - "id": "bf839cf9-b7f6-45fd-b061-160641d59b99", + "id": "142e405f-51dd-467b-a8e4-701815286e59", "name": "Booking created", "originalRequest": { "url": { @@ -296,12 +296,12 @@ "value": "application/json" } ], - "body": "{\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n}", + "body": "{\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d7a6b8ae-132f-463f-a0c8-e1ac2cae36ed", + "id": "81cc9aea-49d7-4421-acef-b12dab09b6db", "name": "Unauthorized - Invalid API key", "originalRequest": { "url": { @@ -339,7 +339,7 @@ "_postman_previewlanguage": "text" }, { - "id": "655c08cf-7935-4d5f-a250-9f7b0a193460", + "id": "1375315f-f8ca-49b8-accb-807df441c77d", "name": "Unprocessable - the booking parameters you provided are invalid", "originalRequest": { "url": { @@ -403,7 +403,7 @@ "description": "", "item": [ { - "id": "cf8e0a2b-7acf-46c7-81dc-c18bb5d518bf", + "id": "e0cd477c-6f5b-4348-bbc9-55be1a6d47a7", "name": "Find a booking by code", "request": { "name": "Find a booking by code", @@ -434,7 +434,7 @@ }, "response": [ { - "id": "033e50da-4b78-492d-af52-968c34fd79f5", + "id": "4c38c71b-a778-49f4-bf3b-9ddd1ee7169d", "name": "successful operation", "originalRequest": { "url": { @@ -465,12 +465,12 @@ "value": "application/json" } ], - "body": "{\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n}", + "body": "{\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d83aba27-e275-4ed2-b605-9c21b19c3da9", + "id": "a149229c-0746-4d58-80b0-33e04cd9b331", "name": "Unauthorized - Invalid API key", "originalRequest": { "url": { @@ -494,7 +494,7 @@ "_postman_previewlanguage": "text" }, { - "id": "08989822-0e30-42da-b43c-2e34083fdc7d", + "id": "a65d105e-65bf-4dc5-9e1d-a9cdbbc5b6d2", "name": "Not found - Booking was not found", "originalRequest": { "url": { @@ -524,7 +524,7 @@ } }, { - "id": "b33a8acf-5dc7-4fc6-bcab-e1354d399e5c", + "id": "3ca5c4fa-1f6d-44ce-8294-d3460f58be04", "name": "Update a booking", "request": { "name": "Update a booking", @@ -568,7 +568,7 @@ }, "response": [ { - "id": "aa61fc63-b31f-45c4-a0c0-15afcdc57123", + "id": "1e548c84-0b1a-4fca-9210-806abe7515ab", "name": "Booking updated successfully", "originalRequest": { "url": { @@ -612,12 +612,12 @@ "value": "application/json" } ], - "body": "{\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n}", + "body": "{\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3b222530-be63-4c31-af5a-11e2367f5ccd", + "id": "43723c70-5f4c-43d7-841b-42e24d417ef2", "name": "Unauthorized - Invalid API key", "originalRequest": { "url": { @@ -656,7 +656,7 @@ "_postman_previewlanguage": "text" }, { - "id": "860f0650-84e3-49a1-b58e-fcb960364be7", + "id": "a98ea677-07f9-4a7b-a59d-bac12c5ae353", "name": "Not found - Booking was not found", "originalRequest": { "url": { @@ -695,7 +695,7 @@ "_postman_previewlanguage": "text" }, { - "id": "1a36dde7-a309-43a8-8ab5-048918c364a5", + "id": "6169abea-022a-4e9c-82d8-a95f5ecc4c71", "name": "Unprocessable - the booking parameters you provided are invalid", "originalRequest": { "url": { @@ -756,7 +756,7 @@ "description": "", "item": [ { - "id": "941d51e4-3c48-411c-bfe8-36525ba0f03f", + "id": "4970bea1-224a-4455-893f-a103dc07b998", "name": "Cancelled bookings", "request": { "name": "Cancelled bookings", @@ -787,7 +787,7 @@ }, "response": [ { - "id": "5779ab11-7da0-426b-9d34-8d6dc48ca2bf", + "id": "dfe358b8-c649-4eb2-8771-fd1ef99a813a", "name": "successful operation", "originalRequest": { "url": { @@ -818,12 +818,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n },\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n }\n]", + "body": "[\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n },\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "944a5fc3-f0ce-4017-93e1-e25b952b6b66", + "id": "a2bb4e62-5f41-40b6-af9a-73ad87bc49b6", "name": "Unauthorized - Invalid API key", "originalRequest": { "url": { @@ -859,7 +859,7 @@ "description": "", "item": [ { - "id": "e20e0bdc-77c6-4130-a19f-00ea71c91751", + "id": "19e11f96-8031-4f08-9c16-6c45b112c58a", "name": "Started bookings", "request": { "name": "Started bookings", @@ -890,7 +890,7 @@ }, "response": [ { - "id": "ab5d3ae2-796d-49df-bdef-c99a90b867f6", + "id": "44282fb4-ad76-43e0-ba28-34b383807e5d", "name": "successful operation", "originalRequest": { "url": { @@ -921,12 +921,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n },\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n }\n]", + "body": "[\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n },\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "91b82dab-8285-4936-9f87-7e8c82922a2e", + "id": "9b7510de-e9a2-404f-a9a1-edf8cd26e51b", "name": "Unauthorized - Invalid API key", "originalRequest": { "url": { @@ -962,7 +962,7 @@ "description": "", "item": [ { - "id": "7441d8a0-1505-409b-95da-b1adca171b88", + "id": "4b81c666-1047-4c45-b745-32554f108992", "name": "Finished bookings", "request": { "name": "Finished bookings", @@ -993,7 +993,7 @@ }, "response": [ { - "id": "237bb7f1-3021-4d34-9ea9-e45d1825bef4", + "id": "da170e5a-a181-4fb8-ab1f-b5295eead3aa", "name": "successful operation", "originalRequest": { "url": { @@ -1024,12 +1024,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n },\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n }\n]", + "body": "[\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n },\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ff2ae409-9e5c-4161-b0cc-8dcbe230f28d", + "id": "034e8cf9-7dc5-4ede-9233-93c1ce291458", "name": "Unauthorized - Invalid API key", "originalRequest": { "url": { @@ -1065,7 +1065,7 @@ "description": "", "item": [ { - "id": "5bc7aed9-697e-4087-9cfd-7657c14dad09", + "id": "3e5e4217-fb6c-41e6-a976-99c0d103631f", "name": "Reminder bookings", "request": { "name": "Reminder bookings", @@ -1096,7 +1096,7 @@ }, "response": [ { - "id": "f323ca88-fa9d-4792-8442-6141c4965a8c", + "id": "66518575-6fc5-4a05-b2af-b9998eb50da1", "name": "successful operation", "originalRequest": { "url": { @@ -1127,12 +1127,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n },\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n }\n]", + "body": "[\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n },\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4bac0c0f-47bf-4fbb-8d27-6a8211866917", + "id": "011e70e9-f9af-4502-b7d6-0ba53b823aac", "name": "Unauthorized - Invalid API key", "originalRequest": { "url": { @@ -1168,7 +1168,7 @@ "description": "", "item": [ { - "id": "5e0e40a6-f15e-4b0a-887c-b409019085d0", + "id": "304d1410-6cd7-4bbb-a0e3-37e2ddf8fe5a", "name": "One hour before bookings", "request": { "name": "One hour before bookings", @@ -1199,7 +1199,7 @@ }, "response": [ { - "id": "6cb5bfe6-89e7-4de0-948f-4296886167ca", + "id": "be75055c-b11d-40f6-a104-cdc8ea105db5", "name": "successful operation", "originalRequest": { "url": { @@ -1230,12 +1230,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n },\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n }\n]", + "body": "[\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n },\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "86f17751-5ff3-47af-8db6-a8794fdd5952", + "id": "6972e481-c103-4262-9672-de6ca2ea5546", "name": "Unauthorized - Invalid API key", "originalRequest": { "url": { @@ -1271,7 +1271,7 @@ "description": "", "item": [ { - "id": "d54e4839-5b88-4fe3-bb68-52e55dc5faa2", + "id": "818e503f-13bd-471a-9e04-b1c88cef466b", "name": "Updated bookings", "request": { "name": "Updated bookings", @@ -1302,7 +1302,7 @@ }, "response": [ { - "id": "a55c3098-c465-4069-bc82-e729cf854ba9", + "id": "5f7d7caa-4c57-4496-a810-86eea029f527", "name": "successful operation", "originalRequest": { "url": { @@ -1333,12 +1333,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n },\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n }\n]", + "body": "[\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n },\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "68411b93-86b6-4439-a14e-fc1ae2434788", + "id": "05074bf7-9f7d-4db7-b4bc-6a05146d191f", "name": "Unauthorized - Invalid API key", "originalRequest": { "url": { @@ -1378,7 +1378,7 @@ "description": "", "item": [ { - "id": "0e261294-a35c-4014-a777-fbad513d03e8", + "id": "e3aea1f3-8e60-4423-8590-fe5649820064", "name": "List booking transactions", "request": { "name": "List booking transactions", @@ -1421,7 +1421,7 @@ }, "response": [ { - "id": "d07e0d63-d00b-4567-b25f-ce3b47035da7", + "id": "0e5a91ce-111c-44a9-bc9a-fe428ad38cb1", "name": "successful operation", "originalRequest": { "url": { @@ -1469,7 +1469,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee40bb4d-e639-419f-9ada-e97e0a171a9e", + "id": "d56c9413-cb2f-4ba6-bfc8-020088f68b29", "name": "Unauthorized - Invalid API key", "originalRequest": { "url": { @@ -1505,7 +1505,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e8eac1c6-658a-45ab-8e57-d9a322cb8fe8", + "id": "dd4c2023-d7f1-4b66-acab-c00bd53db5cc", "name": "Not found - Booking was not found", "originalRequest": { "url": { @@ -1547,7 +1547,7 @@ } }, { - "id": "ac19818b-e1ec-4e01-b68f-6b2555e2c02b", + "id": "0fabba4e-35d2-436d-8af2-cdf35fefd2c2", "name": "Create a transaction for a booking", "request": { "name": "Create a transaction for a booking", @@ -1603,7 +1603,7 @@ }, "response": [ { - "id": "834c0458-bce4-486f-b044-d4049a5f3c89", + "id": "82300acf-7d69-4175-ad93-6b211325ff50", "name": "Transaction created successfully", "originalRequest": { "url": { @@ -1664,7 +1664,7 @@ "_postman_previewlanguage": "json" }, { - "id": "328f966a-ddd4-487f-8959-eac3432232da", + "id": "e31f27c2-7769-4086-83e9-15bf8a89350b", "name": "Unauthorized - Invalid API key", "originalRequest": { "url": { @@ -1715,7 +1715,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c23110dc-98b7-4d38-9013-c94f1afdb815", + "id": "53a8a665-a436-4e50-85b0-84317754b919", "name": "Not found - Booking was not found", "originalRequest": { "url": { @@ -1766,7 +1766,7 @@ "_postman_previewlanguage": "text" }, { - "id": "39b4bc70-0660-4453-b665-f64c76a7b98b", + "id": "44238ade-b86a-4906-8bde-5aa211777f60", "name": "Unprocessable - the transaction parameters you provided are invalid", "originalRequest": { "url": { @@ -1829,7 +1829,7 @@ "description": "", "item": [ { - "id": "024d3108-0c09-40cb-890b-c5a583ca436b", + "id": "8e1f2758-1f33-4bbe-88d1-2c3fa78084c1", "name": "Get booking studio notes", "request": { "name": "Get booking studio notes", @@ -1872,7 +1872,7 @@ }, "response": [ { - "id": "7816a9bf-d622-4748-8de5-7f0fb54db6ce", + "id": "c9159f04-ab9d-47fd-a37d-b11fcfc08bd6", "name": "successful operation", "originalRequest": { "url": { @@ -1920,7 +1920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c6753d4-1757-47c9-a508-a07a6f4dad97", + "id": "09b82dd2-ecb5-49f0-a1c0-659e328890b2", "name": "Unauthorized - Invalid API key", "originalRequest": { "url": { @@ -1956,7 +1956,7 @@ "_postman_previewlanguage": "text" }, { - "id": "0cae7f43-c4f2-48b2-9fd2-f09e31dd3c7f", + "id": "c8853ffc-468f-4386-b672-d764cc26b8ea", "name": "Not found - Booking was not found", "originalRequest": { "url": { @@ -1998,7 +1998,7 @@ } }, { - "id": "a3b952cf-c53c-4bac-8a40-bcd380df5293", + "id": "103dfa18-55ac-46f3-a736-81282658d6bd", "name": "Update booking studio notes", "request": { "name": "Update booking studio notes", @@ -2054,7 +2054,7 @@ }, "response": [ { - "id": "9c0ec033-3f94-42a2-baea-33e6bbfb4e14", + "id": "925cc945-aa41-479b-9520-c37a3b25fccc", "name": "Studio notes updated successfully", "originalRequest": { "url": { @@ -2115,7 +2115,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40a65fbf-c9bb-4fa6-b182-07f2d69cad05", + "id": "932c01ea-95f7-44f7-afb3-cd15529477ab", "name": "Unauthorized - Invalid API key", "originalRequest": { "url": { @@ -2166,7 +2166,7 @@ "_postman_previewlanguage": "text" }, { - "id": "920e0d66-03d8-4606-a2c0-1bc742dfb6c1", + "id": "16893733-c9a2-4f56-9f3e-84cbea3819b9", "name": "Not found - Booking was not found", "originalRequest": { "url": { @@ -2225,7 +2225,7 @@ ] }, { - "id": "794954f5-704b-49ba-807f-3f22de0be50e", + "id": "ddf1c11f-76ef-4731-abc9-1c3f83610292", "name": "Cancel a booking", "request": { "name": "Cancel a booking", @@ -2277,7 +2277,7 @@ }, "response": [ { - "id": "0c69ce8b-3bce-450d-a4f2-a02de07ff5ff", + "id": "94c558a4-e813-40bd-9189-2901142f9dfc", "name": "Booking cancelled", "originalRequest": { "url": { @@ -2329,12 +2329,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"ok\",\n \"message\": \"\"\n}", + "body": "{\n \"status\": \"error\",\n \"message\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f6a60db9-079b-41a8-8f0b-d5b99e877836", + "id": "fc72acd4-233d-4c91-8ece-57ce37c9dc22", "name": "Booking not found", "originalRequest": { "url": { @@ -2389,7 +2389,7 @@ "description": "", "item": [ { - "id": "3ab7cb49-1899-4d30-b262-44545c21a17b", + "id": "1fad1519-e011-4cfe-a10f-4fc35de847f7", "name": "Uncancel a booking", "request": { "name": "Uncancel a booking", @@ -2432,7 +2432,7 @@ }, "response": [ { - "id": "6860a38c-ef37-4067-b68b-bceaeba8547a", + "id": "0f2ac9f0-5412-4152-8a75-d356f9cfd04e", "name": "Booking restored", "originalRequest": { "url": { @@ -2475,12 +2475,12 @@ "value": "application/json" } ], - "body": "{\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n}", + "body": "{\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fc2f37fe-b0b9-481e-8e8d-cc508013c4de", + "id": "f9e6b015-5635-421e-9fe8-493744e71347", "name": "Booking not found", "originalRequest": { "url": { @@ -2528,7 +2528,7 @@ "description": "", "item": [ { - "id": "bc265182-bda8-4e49-93bc-c1d517e628ef", + "id": "83dbf627-65e9-43f7-9a1a-3a831a7db46b", "name": "Approve a booking", "request": { "name": "Approve a booking", @@ -2571,7 +2571,7 @@ }, "response": [ { - "id": "3442a1b6-a9c4-4326-b7ac-699e847293dc", + "id": "b7b7c21a-9814-4fd9-9c65-8093d94afa61", "name": "Booking approved", "originalRequest": { "url": { @@ -2614,7 +2614,7 @@ "value": "application/json" } ], - "body": "{\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n}", + "body": "{\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -2631,7 +2631,7 @@ "description": "", "item": [ { - "id": "f4948b06-64c5-4308-a941-0cb3a5fdba6e", + "id": "2a874f69-f427-4439-89f2-da4fdb146656", "name": "Reject a booking", "request": { "name": "Reject a booking", @@ -2684,7 +2684,7 @@ }, "response": [ { - "id": "091d8d07-e98f-45f0-a3f1-e284c3a56343", + "id": "0b2a88fb-8c43-4182-8f73-0a5eef97c3a1", "name": "Booking rejected", "originalRequest": { "url": { @@ -2737,7 +2737,7 @@ "value": "application/json" } ], - "body": "{\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n}", + "body": "{\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -2754,7 +2754,7 @@ "description": "", "item": [ { - "id": "d1069bb1-a412-4d59-af6a-36af5235e40a", + "id": "29ce65b2-3861-41c9-92ec-feda2e6ccca4", "name": "Generate booking PDF", "request": { "name": "Generate booking PDF", @@ -2797,7 +2797,7 @@ }, "response": [ { - "id": "0af3c53b-bf0f-493a-9b93-2d3fed20e9ae", + "id": "6469a653-849b-40fc-9d24-0289a72043c4", "name": "PDF file", "originalRequest": { "url": { @@ -2857,7 +2857,7 @@ "description": "", "item": [ { - "id": "30db97a8-6432-4d75-9cc0-14661fb755be", + "id": "59b70661-9803-44c0-a935-bd601009b71d", "name": "Resend confirmation email", "request": { "name": "Resend confirmation email", @@ -2900,7 +2900,7 @@ }, "response": [ { - "id": "198965ff-d8dc-475a-96c1-003fc0c4d493", + "id": "7dfb7c3e-337a-462f-8226-da8194de4dc3", "name": "Email sent", "originalRequest": { "url": { @@ -2943,7 +2943,7 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"ok\",\n \"message\": \"\"\n}", + "body": "{\n \"status\": \"error\",\n \"message\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -2960,7 +2960,7 @@ "description": "", "item": [ { - "id": "13a9ef9a-7f2f-4fcc-ab32-a6df4a5f75f3", + "id": "fe25351c-1247-44b5-8f08-c0e8a095e4b5", "name": "Refund a transaction", "request": { "name": "Refund a transaction", @@ -3013,7 +3013,7 @@ }, "response": [ { - "id": "484671ce-7519-49cb-9cf1-ecfde7043a07", + "id": "2aa063f8-5803-4368-925e-28495923b3ce", "name": "Transaction refunded", "originalRequest": { "url": { @@ -3066,7 +3066,7 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"ok\",\n \"message\": \"\"\n}", + "body": "{\n \"status\": \"error\",\n \"message\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -3083,7 +3083,7 @@ "description": "", "item": [ { - "id": "bd2666e8-f6cc-4305-8166-05a094227f2e", + "id": "51e3e44f-3822-4c37-ba93-7351b2ae3f53", "name": "Full refund", "request": { "name": "Full refund", @@ -3139,7 +3139,7 @@ }, "response": [ { - "id": "59d787ec-321d-4f93-ab9f-554c77640006", + "id": "b0918cdb-0afa-4e52-bc41-8a4459f22b2a", "name": "Booking refunded", "originalRequest": { "url": { @@ -3195,7 +3195,7 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"ok\",\n \"message\": \"\"\n}", + "body": "{\n \"status\": \"error\",\n \"message\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -3212,7 +3212,7 @@ "description": "", "item": [ { - "id": "998897dc-d852-444b-923a-199d9fe8c69d", + "id": "bfe232bd-c4f0-4880-9d9c-9871620a46dc", "name": "Apply credit balance", "request": { "name": "Apply credit balance", @@ -3255,7 +3255,7 @@ }, "response": [ { - "id": "292005e0-89d0-4ba1-bec1-550d07e301dd", + "id": "d9941fb1-2061-4c91-9d69-64bb2d56aa30", "name": "Credit applied", "originalRequest": { "url": { @@ -3298,7 +3298,7 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"ok\",\n \"message\": \"\"\n}", + "body": "{\n \"status\": \"error\",\n \"message\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -3315,7 +3315,7 @@ "description": "", "item": [ { - "id": "cbd6b8e8-06e4-489b-a02c-9e3f9745b590", + "id": "b2ea5472-51b9-4aa5-afff-88a6f035735b", "name": "Credit to customer balance", "request": { "name": "Credit to customer balance", @@ -3371,7 +3371,7 @@ }, "response": [ { - "id": "101eaa66-babc-418d-96b5-5294acc4be0b", + "id": "93869597-2271-4cab-980b-08914e761f3c", "name": "Booking credited", "originalRequest": { "url": { @@ -3427,7 +3427,7 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"ok\",\n \"message\": \"\"\n}", + "body": "{\n \"status\": \"error\",\n \"message\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -3444,7 +3444,7 @@ "description": "", "item": [ { - "id": "d3d7a738-55a5-4c56-91c8-53e564b2e910", + "id": "5e9e3b60-58e7-4dbe-a726-b5affca71d43", "name": "Update booking notes", "request": { "name": "Update booking notes", @@ -3500,7 +3500,7 @@ }, "response": [ { - "id": "0a9603c4-7948-4372-a441-7fa3f780a888", + "id": "ddc3a6a4-4f7e-4e9d-a93f-d7058d3ed10b", "name": "Notes updated", "originalRequest": { "url": { @@ -3556,7 +3556,7 @@ "value": "application/json" } ], - "body": "{\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n}", + "body": "{\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -3573,7 +3573,7 @@ "description": "", "item": [ { - "id": "edb908a6-585d-4c04-aa9a-9184b6a8506a", + "id": "aa54a165-fc13-4c3c-a1ce-897886bab0f7", "name": "Booking notifications", "request": { "name": "Booking notifications", @@ -3616,7 +3616,7 @@ }, "response": [ { - "id": "81f58ebd-1313-4569-ae68-cd7dc4ca455d", + "id": "cad9d2d6-e19e-4766-bd78-d2002d51b8cc", "name": "Notifications list", "originalRequest": { "url": { @@ -3676,7 +3676,7 @@ "description": "", "item": [ { - "id": "3bb5901b-ce5e-420b-b28c-753c8f377bef", + "id": "bfa8ba50-3503-48fe-8bad-2dc6e355c40d", "name": "Booking history", "request": { "name": "Booking history", @@ -3719,7 +3719,7 @@ }, "response": [ { - "id": "4eade114-bedc-4037-9b3a-ba120c341f03", + "id": "8452cf8b-8b56-4c41-97c8-2c84eb115715", "name": "History timeline", "originalRequest": { "url": { @@ -3767,7 +3767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bc735e9-018f-4ec4-be93-1834e3ee0f6b", + "id": "28fbfcc0-3fda-46ef-becf-94204a5d2645", "name": "Unauthorized - Invalid API key", "originalRequest": { "url": { @@ -3803,7 +3803,7 @@ "_postman_previewlanguage": "text" }, { - "id": "48261584-5072-4c30-bf01-5a72ad7b5d13", + "id": "e0b08af3-ea4b-43ae-beae-6853aac88a74", "name": "Not found - Booking was not found", "originalRequest": { "url": { @@ -3851,7 +3851,7 @@ "description": "", "item": [ { - "id": "b177612e-f27f-4264-800c-435349b4b33a", + "id": "4e2ea6ec-0deb-4526-83c3-698a00d50d4e", "name": "Send payment request", "request": { "name": "Send payment request", @@ -3907,7 +3907,7 @@ }, "response": [ { - "id": "94a9b315-265b-4bc5-8d8a-f6c50003032e", + "id": "839109b7-20f5-40cb-bd84-1f268fdd3447", "name": "Payment request sent", "originalRequest": { "url": { @@ -3963,7 +3963,7 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"ok\",\n \"message\": \"\"\n}", + "body": "{\n \"status\": \"error\",\n \"message\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -3978,7 +3978,7 @@ "description": "", "item": [ { - "id": "b8d83f0a-f2ba-4415-99df-9bbc11da3280", + "id": "dfc7386e-441c-4f08-9c3c-83825c13abd0", "name": "Charge saved card", "request": { "name": "Charge saved card", @@ -4035,7 +4035,7 @@ }, "response": [ { - "id": "9d241408-ca91-4678-8508-38c2c54a00df", + "id": "b9b710ef-7c11-46b7-81fa-a0cb44975a82", "name": "Payment taken", "originalRequest": { "url": { @@ -4092,7 +4092,7 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"ok\",\n \"message\": \"\"\n}", + "body": "{\n \"status\": \"error\",\n \"message\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -4113,7 +4113,7 @@ "description": "", "item": [ { - "id": "19e9979a-11a6-4b0f-8856-159ff0c3edfa", + "id": "ad6d4a61-6d40-4bbb-bacc-b187658b6a72", "name": "Mark payment as paid", "request": { "name": "Mark payment as paid", @@ -4168,7 +4168,7 @@ }, "response": [ { - "id": "7be85def-ec8c-4c94-9f68-c9725c7232c5", + "id": "215b7eb5-9593-49b1-b617-ea7ce11c57c3", "name": "Marked as paid", "originalRequest": { "url": { @@ -4223,7 +4223,7 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"ok\",\n \"message\": \"\"\n}", + "body": "{\n \"status\": \"error\",\n \"message\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -4240,7 +4240,7 @@ "description": "", "item": [ { - "id": "ade01155-c0b7-42e5-a5bb-17fb02034cc0", + "id": "f691f2a1-47c9-40ad-81a7-f5f1ca7bf66d", "name": "Cancel payment request", "request": { "name": "Cancel payment request", @@ -4295,7 +4295,7 @@ }, "response": [ { - "id": "67a3b032-4003-4279-9800-647a12c00983", + "id": "0e473860-5165-4a21-8b15-c0f178210e34", "name": "Payment request cancelled", "originalRequest": { "url": { @@ -4350,7 +4350,7 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"ok\",\n \"message\": \"\"\n}", + "body": "{\n \"status\": \"error\",\n \"message\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -4371,7 +4371,7 @@ "description": "", "item": [ { - "id": "89ba331d-ee61-4c82-ad9d-43fb65b00384", + "id": "0998a0ee-7c5a-450d-96c1-86f26ef503a4", "name": "Check settlement support", "request": { "name": "Check settlement support", @@ -4414,7 +4414,7 @@ }, "response": [ { - "id": "8c5fe0c9-02e9-4256-9a3c-48c74820ec9d", + "id": "65d4c7ce-37cb-49e3-a851-16604fa7f8bc", "name": "Settlement check result", "originalRequest": { "url": { @@ -4474,7 +4474,7 @@ "description": "", "item": [ { - "id": "9c91c063-16cf-4aa1-85cc-00a74e132574", + "id": "f5fb68fa-320a-45c4-8b47-bc53c46369b4", "name": "Create credit note", "request": { "name": "Create credit note", @@ -4518,7 +4518,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"price\": \"\",\n \"description\": \"\",\n \"manual_type\": \"card\"\n}", + "raw": "{\n \"price\": \"\",\n \"description\": \"\",\n \"manual_type\": \"cash\"\n}", "options": { "raw": { "headerFamily": "json", @@ -4530,7 +4530,7 @@ }, "response": [ { - "id": "5801ec26-8e3b-4c5c-a3c2-4881dc5c7f6d", + "id": "e52fb414-ec7d-47b1-8f96-b91e48236e9e", "name": "Credit note created", "originalRequest": { "url": { @@ -4569,7 +4569,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"price\": \"\",\n \"description\": \"\",\n \"manual_type\": \"card\"\n}", + "raw": "{\n \"price\": \"\",\n \"description\": \"\",\n \"manual_type\": \"cash\"\n}", "options": { "raw": { "headerFamily": "json", @@ -4586,7 +4586,7 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"ok\",\n \"message\": \"\"\n}", + "body": "{\n \"status\": \"error\",\n \"message\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -4601,7 +4601,7 @@ "description": "", "item": [ { - "id": "be81cbc6-346c-47c0-8950-ea150db0aa26", + "id": "6c6a5589-6ff0-45f3-91de-45391f4f69d7", "name": "Delete credit note", "request": { "name": "Delete credit note", @@ -4655,7 +4655,7 @@ }, "response": [ { - "id": "9d0034c9-02a3-4377-80b5-1067117f597d", + "id": "c2824407-2f8a-428a-beac-07b9dcbdfffa", "name": "Credit note removed", "originalRequest": { "url": { @@ -4709,12 +4709,12 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"ok\",\n \"message\": \"\"\n}", + "body": "{\n \"status\": \"error\",\n \"message\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "98c5dbde-37a5-4934-a302-6b0a571d4f84", + "id": "ce8cf491-4845-47c9-be42-2069cb171520", "name": "Credit note or booking not found", "originalRequest": { "url": { @@ -4777,7 +4777,7 @@ "description": "", "item": [ { - "id": "3799ac99-412f-4e39-a808-a50a4f68d04a", + "id": "32e1b4d2-865b-4bd2-ac3b-669a43e501d6", "name": "Search bookings", "request": { "name": "Search bookings", @@ -4810,7 +4810,7 @@ "type": "text/plain" }, "key": "status_filter", - "value": "active" + "value": "cancelled" }, { "disabled": false, @@ -4845,7 +4845,7 @@ }, "response": [ { - "id": "d3362f3f-fe79-4746-ad79-28c12aae4d9c", + "id": "4e7bc1c4-47bb-4a8f-8a76-83cd6a9974c5", "name": "Search results", "originalRequest": { "url": { @@ -4873,7 +4873,7 @@ "type": "text/plain" }, "key": "status_filter", - "value": "active" + "value": "cancelled" }, { "disabled": false, @@ -4913,7 +4913,7 @@ "value": "application/json" } ], - "body": "[\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n },\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n }\n]", + "body": "[\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n },\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" } @@ -4930,7 +4930,7 @@ "description": "", "item": [ { - "id": "e2a9f9a2-29c3-4191-b053-4c4f1c2baf71", + "id": "5d88fdb3-25f0-4ced-b82d-fec2ef0a806b", "name": "Bookings by date range", "request": { "name": "Bookings by date range", @@ -4980,7 +4980,7 @@ }, "response": [ { - "id": "f6571d2a-fa9d-473a-9e9c-9b1f9ac0de3f", + "id": "ac75b85c-ff20-43b1-a4e3-668c74270da3", "name": "Bookings for date range", "originalRequest": { "url": { @@ -5030,7 +5030,7 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"code\": \"\",\n \"name\": \"\",\n \"is_recording\": \"\",\n \"session_name\": \"\",\n \"block_colour_override\": \"\",\n \"studio_notes\": \"\",\n \"additional_notes\": \"\",\n \"number_expected\": \"\",\n \"room\": {\n \"id\": \"\",\n \"name\": \"\",\n \"code\": \"\"\n },\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"start_time\": \"\",\n \"end_time\": \"\",\n \"title\": \"\",\n \"band_name\": \"\",\n \"has_amount_due\": \"\",\n \"amount_due\": \"\",\n \"regular\": \"\",\n \"incomplete\": \"\",\n \"cancelled\": \"\",\n \"customer\": {\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"extras_summary\": \"\"\n },\n {\n \"id\": \"\",\n \"code\": \"\",\n \"name\": \"\",\n \"is_recording\": \"\",\n \"session_name\": \"\",\n \"block_colour_override\": \"\",\n \"studio_notes\": \"\",\n \"additional_notes\": \"\",\n \"number_expected\": \"\",\n \"room\": {\n \"id\": \"\",\n \"name\": \"\",\n \"code\": \"\"\n },\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"start_time\": \"\",\n \"end_time\": \"\",\n \"title\": \"\",\n \"band_name\": \"\",\n \"has_amount_due\": \"\",\n \"amount_due\": \"\",\n \"regular\": \"\",\n \"incomplete\": \"\",\n \"cancelled\": \"\",\n \"customer\": {\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"extras_summary\": \"\"\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"code\": \"\",\n \"name\": \"\",\n \"title\": \"\",\n \"band_name\": \"\",\n \"is_recording\": \"\",\n \"session_name\": \"\",\n \"block_colour_override\": \"\",\n \"studio_notes\": \"\",\n \"additional_notes\": \"\",\n \"number_expected\": \"\",\n \"start\": \"\",\n \"end\": \"\",\n \"split\": \"\",\n \"room_name\": \"\",\n \"has_amount_due\": \"\",\n \"amount_due\": \"\",\n \"payments_recieved\": \"\",\n \"regular\": \"\",\n \"incomplete\": \"\",\n \"show_studio_notes\": \"\",\n \"extras_summary\": [\n \"\",\n \"\"\n ],\n \"link\": \"\",\n \"type\": \"\",\n \"class\": \"\"\n },\n {\n \"id\": \"\",\n \"code\": \"\",\n \"name\": \"\",\n \"title\": \"\",\n \"band_name\": \"\",\n \"is_recording\": \"\",\n \"session_name\": \"\",\n \"block_colour_override\": \"\",\n \"studio_notes\": \"\",\n \"additional_notes\": \"\",\n \"number_expected\": \"\",\n \"start\": \"\",\n \"end\": \"\",\n \"split\": \"\",\n \"room_name\": \"\",\n \"has_amount_due\": \"\",\n \"amount_due\": \"\",\n \"payments_recieved\": \"\",\n \"regular\": \"\",\n \"incomplete\": \"\",\n \"show_studio_notes\": \"\",\n \"extras_summary\": [\n \"\",\n \"\"\n ],\n \"link\": \"\",\n \"type\": \"\",\n \"class\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" } @@ -5047,7 +5047,7 @@ "description": "", "item": [ { - "id": "7c655d87-b754-4c85-bb3a-8e73cc133da2", + "id": "a7233b82-0dd8-47ff-940d-67717900b101", "name": "Bookings awaiting approval", "request": { "name": "Bookings awaiting approval", @@ -5097,7 +5097,7 @@ }, "response": [ { - "id": "11edee33-1766-449f-9985-9bf15703f258", + "id": "e676c0b9-b839-4c8e-8553-fb724daa3fa0", "name": "Pending bookings", "originalRequest": { "url": { @@ -5147,7 +5147,7 @@ "value": "application/json" } ], - "body": "[\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n },\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n }\n]", + "body": "[\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n },\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" } @@ -5166,7 +5166,7 @@ "description": "", "item": [ { - "id": "4e767f4c-b74f-4390-a318-db8e847c60da", + "id": "c577ba52-269f-415a-8a4b-f56747466f59", "name": "Find all customers", "request": { "name": "Find all customers", @@ -5196,7 +5196,7 @@ }, "response": [ { - "id": "34e15abb-4344-4f2d-967b-a4ddfa900425", + "id": "5fcce93f-0de4-4cc4-8abf-5c5ead3bdcf0", "name": "successful operation", "originalRequest": { "url": { @@ -5226,12 +5226,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"mobile\": \"\",\n \"avatar\": \"\",\n \"credit_balance\": \"\",\n \"status\": \"banned\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\",\n \"signed_up\": \"\",\n \"signed_up_at\": \"\",\n \"regular_bookings_count\": \"\",\n \"bookings_count\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"last_booking_at\": \"\",\n \"regular_bookings\": [\n {\n \"name\": \"\",\n \"id\": \"\"\n },\n {\n \"name\": \"\",\n \"id\": \"\"\n }\n ],\n \"bands\": [\n {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n }\n ]\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"mobile\": \"\",\n \"avatar\": \"\",\n \"credit_balance\": \"\",\n \"status\": \"behind_payment\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\",\n \"signed_up\": \"\",\n \"signed_up_at\": \"\",\n \"regular_bookings_count\": \"\",\n \"bookings_count\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"last_booking_at\": \"\",\n \"regular_bookings\": [\n {\n \"name\": \"\",\n \"id\": \"\"\n },\n {\n \"name\": \"\",\n \"id\": \"\"\n }\n ],\n \"bands\": [\n {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n }\n ]\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"mobile\": \"\",\n \"avatar\": \"\",\n \"credit_balance\": \"\",\n \"status\": \"behind_payment\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\",\n \"signed_up\": \"\",\n \"signed_up_at\": \"\",\n \"regular_bookings_count\": \"\",\n \"bookings_count\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"last_booking_at\": \"\",\n \"regular_bookings\": [\n {\n \"name\": \"\",\n \"id\": \"\"\n },\n {\n \"name\": \"\",\n \"id\": \"\"\n }\n ],\n \"bands\": [\n {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n }\n ]\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"mobile\": \"\",\n \"avatar\": \"\",\n \"credit_balance\": \"\",\n \"status\": \"behind_payment\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\",\n \"signed_up\": \"\",\n \"signed_up_at\": \"\",\n \"regular_bookings_count\": \"\",\n \"bookings_count\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"last_booking_at\": \"\",\n \"regular_bookings\": [\n {\n \"name\": \"\",\n \"id\": \"\"\n },\n {\n \"name\": \"\",\n \"id\": \"\"\n }\n ],\n \"bands\": [\n {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n }\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e7bf6b43-dfa8-4b12-95f4-37be9a7dd87b", + "id": "2f0c1a6e-33ce-4f6a-bd38-952fb39c32eb", "name": "Unauthorized - Invalid API key", "originalRequest": { "url": { @@ -5260,7 +5260,7 @@ } }, { - "id": "08cd93fd-ce38-4a20-ba36-0eae373260c4", + "id": "d1951b70-1177-4c17-bd36-eafe6ffe67d4", "name": "Create a customer", "request": { "name": "Create a customer", @@ -5297,7 +5297,7 @@ }, "response": [ { - "id": "30cdfce4-1c8d-4df9-8a70-acadb271b2f1", + "id": "c5b40b7c-2d6a-4518-a037-1047a6f92fb4", "name": "Customer created", "originalRequest": { "url": { @@ -5334,12 +5334,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"mobile\": \"\",\n \"avatar\": \"\",\n \"credit_balance\": \"\",\n \"status\": \"banned\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\",\n \"signed_up\": \"\",\n \"signed_up_at\": \"\",\n \"regular_bookings_count\": \"\",\n \"bookings_count\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"last_booking_at\": \"\",\n \"regular_bookings\": [\n {\n \"name\": \"\",\n \"id\": \"\"\n },\n {\n \"name\": \"\",\n \"id\": \"\"\n }\n ],\n \"bands\": [\n {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n }\n ]\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"mobile\": \"\",\n \"avatar\": \"\",\n \"credit_balance\": \"\",\n \"status\": \"behind_payment\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\",\n \"signed_up\": \"\",\n \"signed_up_at\": \"\",\n \"regular_bookings_count\": \"\",\n \"bookings_count\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"last_booking_at\": \"\",\n \"regular_bookings\": [\n {\n \"name\": \"\",\n \"id\": \"\"\n },\n {\n \"name\": \"\",\n \"id\": \"\"\n }\n ],\n \"bands\": [\n {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n }\n ]\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"mobile\": \"\",\n \"avatar\": \"\",\n \"credit_balance\": \"\",\n \"status\": \"behind_payment\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\",\n \"signed_up\": \"\",\n \"signed_up_at\": \"\",\n \"regular_bookings_count\": \"\",\n \"bookings_count\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"last_booking_at\": \"\",\n \"regular_bookings\": [\n {\n \"name\": \"\",\n \"id\": \"\"\n },\n {\n \"name\": \"\",\n \"id\": \"\"\n }\n ],\n \"bands\": [\n {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n }\n ]\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"mobile\": \"\",\n \"avatar\": \"\",\n \"credit_balance\": \"\",\n \"status\": \"behind_payment\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\",\n \"signed_up\": \"\",\n \"signed_up_at\": \"\",\n \"regular_bookings_count\": \"\",\n \"bookings_count\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"last_booking_at\": \"\",\n \"regular_bookings\": [\n {\n \"name\": \"\",\n \"id\": \"\"\n },\n {\n \"name\": \"\",\n \"id\": \"\"\n }\n ],\n \"bands\": [\n {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n }\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9e1cf4b9-0f32-4db2-b9b8-0861f74e0221", + "id": "71c1ed28-0425-4b07-8fd9-ac6a1e62f0ba", "name": "Unauthorized - Invalid API key", "originalRequest": { "url": { @@ -5371,7 +5371,7 @@ "_postman_previewlanguage": "text" }, { - "id": "7f5be126-f6eb-41d1-b5f3-a5c0738d9589", + "id": "766c2dec-26d9-4c42-9da5-85160130b3be", "name": "Unprocessable - the customer parameters you provided are invalid", "originalRequest": { "url": { @@ -5429,7 +5429,7 @@ "description": "", "item": [ { - "id": "a455eba2-224b-4978-99ff-927dcf546a9c", + "id": "9d15bd1b-d8a1-4293-97f8-5953fb9910eb", "name": "Find a customer by ID", "request": { "name": "Find a customer by ID", @@ -5460,7 +5460,7 @@ }, "response": [ { - "id": "87c9eadc-7e8f-471e-aa95-8652e88e61c5", + "id": "84445cdb-73eb-44ee-98e4-fafd1f2b9baa", "name": "successful operation", "originalRequest": { "url": { @@ -5491,12 +5491,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"mobile\": \"\",\n \"avatar\": \"\",\n \"credit_balance\": \"\",\n \"status\": \"unregistered\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\",\n \"signed_up\": \"\",\n \"signed_up_at\": \"\",\n \"regular_bookings_count\": \"\",\n \"bookings_count\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"last_booking_at\": \"\",\n \"regular_bookings\": [\n {\n \"name\": \"\",\n \"id\": \"\"\n },\n {\n \"name\": \"\",\n \"id\": \"\"\n }\n ],\n \"bands\": [\n {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n }\n ]\n}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"mobile\": \"\",\n \"avatar\": \"\",\n \"credit_balance\": \"\",\n \"status\": \"behind_payment\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\",\n \"signed_up\": \"\",\n \"signed_up_at\": \"\",\n \"regular_bookings_count\": \"\",\n \"bookings_count\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"last_booking_at\": \"\",\n \"regular_bookings\": [\n {\n \"name\": \"\",\n \"id\": \"\"\n },\n {\n \"name\": \"\",\n \"id\": \"\"\n }\n ],\n \"bands\": [\n {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1552752d-a234-4891-92e7-d4a502d56674", + "id": "b2fe953c-cb44-442c-a01b-a7fbeb763932", "name": "Unauthorized - Invalid API key", "originalRequest": { "url": { @@ -5520,7 +5520,7 @@ "_postman_previewlanguage": "text" }, { - "id": "17221d73-19f9-44a7-97cb-4a710956fd82", + "id": "f4469da5-e12b-4736-b9a5-6404e1ca5115", "name": "Not found - Customer was not found", "originalRequest": { "url": { @@ -5556,7 +5556,7 @@ "description": "", "item": [ { - "id": "6228d496-0412-4e39-bc35-6f76b79cc1af", + "id": "49613eeb-0a33-4ca6-b89f-b6bf8d08ca53", "name": "Update customer", "request": { "name": "Update customer", @@ -5611,7 +5611,7 @@ }, "response": [ { - "id": "ada79d67-199d-424a-9e18-c6c48a7b2a97", + "id": "39788278-48bc-4cd7-a84d-88e60cae5981", "name": "Customer updated", "originalRequest": { "url": { @@ -5666,7 +5666,7 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"mobile\": \"\",\n \"avatar\": \"\",\n \"credit_balance\": \"\",\n \"status\": \"unregistered\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\",\n \"signed_up\": \"\",\n \"signed_up_at\": \"\",\n \"regular_bookings_count\": \"\",\n \"bookings_count\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"last_booking_at\": \"\",\n \"regular_bookings\": [\n {\n \"name\": \"\",\n \"id\": \"\"\n },\n {\n \"name\": \"\",\n \"id\": \"\"\n }\n ],\n \"bands\": [\n {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n }\n ]\n}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"mobile\": \"\",\n \"avatar\": \"\",\n \"credit_balance\": \"\",\n \"status\": \"behind_payment\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\",\n \"signed_up\": \"\",\n \"signed_up_at\": \"\",\n \"regular_bookings_count\": \"\",\n \"bookings_count\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"last_booking_at\": \"\",\n \"regular_bookings\": [\n {\n \"name\": \"\",\n \"id\": \"\"\n },\n {\n \"name\": \"\",\n \"id\": \"\"\n }\n ],\n \"bands\": [\n {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -5681,7 +5681,7 @@ "description": "", "item": [ { - "id": "91ad6c02-2545-4aa7-84a1-7ab3d454444a", + "id": "4971cf82-a036-4caf-bf49-083c209d425d", "name": "Update customer notes", "request": { "name": "Update customer notes", @@ -5737,7 +5737,7 @@ }, "response": [ { - "id": "39ff3819-0d48-4d25-8cb0-2b665152bca9", + "id": "088868a8-52f7-40db-939a-7ca819fb7b94", "name": "Notes updated", "originalRequest": { "url": { @@ -5793,7 +5793,7 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"mobile\": \"\",\n \"avatar\": \"\",\n \"credit_balance\": \"\",\n \"status\": \"unregistered\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\",\n \"signed_up\": \"\",\n \"signed_up_at\": \"\",\n \"regular_bookings_count\": \"\",\n \"bookings_count\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"last_booking_at\": \"\",\n \"regular_bookings\": [\n {\n \"name\": \"\",\n \"id\": \"\"\n },\n {\n \"name\": \"\",\n \"id\": \"\"\n }\n ],\n \"bands\": [\n {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n }\n ]\n}", + "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\",\n \"mobile\": \"\",\n \"avatar\": \"\",\n \"credit_balance\": \"\",\n \"status\": \"behind_payment\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\",\n \"signed_up\": \"\",\n \"signed_up_at\": \"\",\n \"regular_bookings_count\": \"\",\n \"bookings_count\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"last_booking_at\": \"\",\n \"regular_bookings\": [\n {\n \"name\": \"\",\n \"id\": \"\"\n },\n {\n \"name\": \"\",\n \"id\": \"\"\n }\n ],\n \"bands\": [\n {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -5810,7 +5810,7 @@ "description": "", "item": [ { - "id": "1c1471f3-9abc-4c5f-977e-1a31c15f5f14", + "id": "73e91b24-34c8-414a-88b9-59b1d19df270", "name": "Customer bookings", "request": { "name": "Customer bookings", @@ -5872,7 +5872,7 @@ }, "response": [ { - "id": "866da303-92e8-4cdb-9b80-066d4a1da526", + "id": "6beb9319-f7e8-4b74-8f8a-403a5eabe368", "name": "Customer's bookings", "originalRequest": { "url": { @@ -5934,7 +5934,7 @@ "value": "application/json" } ], - "body": "[\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n },\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n }\n]", + "body": "[\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n },\n {\n \"group\": {\n \"name\": \"\",\n \"code\": \"\",\n \"number_of_members\": \"\",\n \"number\": \"\",\n \"booking_count\": \"\"\n },\n \"customer\": {\n \"name\": \"string\",\n \"email\": \"string\",\n \"mobile\": \"string\",\n \"avatar\": \"string\",\n \"reminders_opt_in\": \"\",\n \"mailing_list_opt_in\": \"\"\n },\n \"room\": {\n \"name\": \"\",\n \"code\": \"\"\n },\n \"extras\": [\n {\n \"name\": \"\",\n \"category\": \"\"\n },\n {\n \"name\": \"\",\n \"category\": \"\"\n }\n ],\n \"custom_answers\": [\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n },\n {\n \"question_id\": \"\",\n \"name\": \"\",\n \"response\": \"\"\n }\n ],\n \"source_data\": {\n \"source\": \"\",\n \"platform\": \"\",\n \"referrer\": \"\"\n },\n \"code\": \"\",\n \"id\": \"\",\n \"recording\": \"\",\n \"regular\": \"\",\n \"online_booking\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\",\n \"approved_at\": \"\",\n \"rejected_at\": \"\",\n \"price\": \"\",\n \"price_currency\": \"\",\n \"title\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"duration\": \"\",\n \"duration_hours\": \"\",\n \"duration_full_hours\": \"\",\n \"activity_name\": \"\",\n \"dates\": [\n \"\",\n \"\"\n ],\n \"timezone\": \"\",\n \"has_amount_due\": \"\",\n \"remaining_amount\": \"\",\n \"cancelled\": \"\",\n \"taken_by\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" } @@ -5951,7 +5951,7 @@ "description": "", "item": [ { - "id": "984435f3-7ab1-4cfb-8e5e-1085b8a5c5db", + "id": "ba08c5e7-4ed4-499f-89a2-4050093943a4", "name": "Get credit balance", "request": { "name": "Get credit balance", @@ -5994,7 +5994,7 @@ }, "response": [ { - "id": "5b219a7f-5388-402e-822a-2367c0a6ac6c", + "id": "844d8b69-d93e-4c7f-a99b-b8d64d5841a3", "name": "Credit balance", "originalRequest": { "url": { @@ -6048,7 +6048,7 @@ } }, { - "id": "b2e737b2-c449-449b-a1e7-a07c638f5703", + "id": "a0344d9a-8717-45a6-b0e7-0aba9520225e", "name": "Update credit balance", "request": { "name": "Update credit balance", @@ -6104,7 +6104,7 @@ }, "response": [ { - "id": "c07c0445-8b03-4cc7-9e24-8c1262334b47", + "id": "7b08412f-e852-4d0b-8c01-cb68b16e2f45", "name": "Balance updated", "originalRequest": { "url": { @@ -6177,7 +6177,7 @@ "description": "", "item": [ { - "id": "dd747d22-8f9e-4938-8c4b-e20777073fc9", + "id": "bba0df98-8038-4e58-80ff-ab56aec5e3e6", "name": "Credit movements", "request": { "name": "Credit movements", @@ -6239,7 +6239,7 @@ }, "response": [ { - "id": "120cb7b1-3ae0-4281-8282-b845f0578263", + "id": "2449aa7f-da4e-4e87-9327-801c7bee806b", "name": "Credit movements", "originalRequest": { "url": { @@ -6318,7 +6318,7 @@ "description": "", "item": [ { - "id": "f58d9a77-7787-4814-b6f5-4c969a4e0126", + "id": "298cceb3-fa68-4f45-9c61-dc765bff464b", "name": "Customer status", "request": { "name": "Customer status", @@ -6361,7 +6361,7 @@ }, "response": [ { - "id": "0fe68b36-8c89-4867-8834-5ae991fa8d48", + "id": "2c9a3327-0b5b-4ccf-aec6-dacf6808d90a", "name": "Customer status", "originalRequest": { "url": { @@ -6421,7 +6421,7 @@ "description": "", "item": [ { - "id": "20d3a09b-402b-4a1b-ace0-a9999beb8aed", + "id": "dcb77979-c795-4db8-92a5-aef109b793fa", "name": "Payment methods", "request": { "name": "Payment methods", @@ -6464,7 +6464,7 @@ }, "response": [ { - "id": "c6937b61-c766-423e-8a4c-368848e39da1", + "id": "2061a8d7-e8df-4447-97db-58424d754817", "name": "Payment methods", "originalRequest": { "url": { @@ -6526,7 +6526,7 @@ "description": "", "item": [ { - "id": "af612c67-d102-47b7-8760-fa1430a3d19f", + "id": "d85aa8f4-1b9b-4b28-a0d9-37a8cd4d5ad1", "name": "Search customers", "request": { "name": "Search customers", @@ -6576,7 +6576,7 @@ }, "response": [ { - "id": "70cfea1c-5e23-4239-b798-443c3350581b", + "id": "6e6c09a1-11de-41e2-a1ef-e3fa069b7e52", "name": "Matching customers", "originalRequest": { "url": { @@ -6649,7 +6649,7 @@ "description": "", "item": [ { - "id": "436c7e95-390a-48c3-aadb-ad464bd2e42f", + "id": "16d4823e-313e-4510-8820-4475d33fe508", "name": "Find a coupon by ID", "request": { "name": "Find a coupon by ID", @@ -6680,7 +6680,7 @@ }, "response": [ { - "id": "423d117a-c26d-41b7-b036-f7dcf3a4d121", + "id": "b6ee63b6-20a3-4a21-8b2f-afd0209ec2a2", "name": "successful operation", "originalRequest": { "url": { @@ -6716,7 +6716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9ea63d4-cdf7-44c9-b78f-bf80ee3591d3", + "id": "b2921c64-d344-450d-ab78-007a06f48871", "name": "Unauthorized - Invalid API key", "originalRequest": { "url": { @@ -6740,7 +6740,7 @@ "_postman_previewlanguage": "text" }, { - "id": "8546f604-b670-4aeb-b3ed-7e520c68c436", + "id": "4e8b6250-e04c-41fb-858c-9b0c81310276", "name": "Not found - Coupon was not found", "originalRequest": { "url": { @@ -6780,7 +6780,7 @@ "description": "", "item": [ { - "id": "dc7c6abf-38eb-487e-9695-0c12cfcd0457", + "id": "275575cb-d07d-4b3e-b1c4-68b0326e1479", "name": "Find all promocodes", "request": { "name": "Find all promocodes", @@ -6823,7 +6823,7 @@ }, "response": [ { - "id": "0deefadc-ff24-4591-b253-2ec9c53195a7", + "id": "d1760013-464a-4521-b06c-7fe9e531b74f", "name": "successful operation", "originalRequest": { "url": { @@ -6871,7 +6871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f92688c-292d-4d7c-8415-68fb4ca74a31", + "id": "8a4042d0-9958-4632-8185-6a1293bc29d8", "name": "Unauthorized - Invalid API key", "originalRequest": { "url": { @@ -6913,7 +6913,7 @@ } }, { - "id": "81845b31-c71d-4c36-8ac8-fcb80d5956b6", + "id": "113caefb-b59b-489c-90bb-ca038589bbc8", "name": "Create a promocode", "request": { "name": "Create a promocode", @@ -6963,7 +6963,7 @@ }, "response": [ { - "id": "c7c1a029-32ba-4ecb-8ff3-65d8afabb3a9", + "id": "df6ec163-7b6f-4000-bc6a-c600f0bccbb1", "name": "Promocode created", "originalRequest": { "url": { @@ -7018,7 +7018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47deb27c-65aa-4a46-8965-486f283bee5c", + "id": "5786602e-8ce2-40a0-bb98-e0dd69b51a9b", "name": "Unauthorized - Invalid API key", "originalRequest": { "url": { @@ -7063,7 +7063,7 @@ "_postman_previewlanguage": "text" }, { - "id": "92ed2100-122c-4362-8868-bc1ad58c0cb7", + "id": "ac1be950-21c4-4da7-a8ed-5b4bfc785fb9", "name": "Unprocessable - the promocode parameters you provided are invalid", "originalRequest": { "url": { @@ -7130,7 +7130,7 @@ "description": "", "item": [ { - "id": "fecef1ff-385d-41cc-95f8-14f092d711df", + "id": "a285c487-fe26-4099-b8b3-7fd5c5920a1e", "name": "Assign Coupon to Customer", "request": { "name": "Assign Coupon to Customer", @@ -7180,7 +7180,7 @@ }, "response": [ { - "id": "b3ae75d2-869b-438b-9b06-a9dfd8bbfd5c", + "id": "0123bc2b-3323-462c-8eee-8664ba7633f4", "name": "Promocode assigned", "originalRequest": { "url": { @@ -7235,7 +7235,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef1fa4cb-4c9f-4cf7-a659-e47e1ae33b44", + "id": "3555623c-ef7d-4c94-952d-650ecaadfd58", "name": "Unauthorized - Invalid API key", "originalRequest": { "url": { @@ -7280,7 +7280,7 @@ "_postman_previewlanguage": "text" }, { - "id": "46169520-1a8c-4554-b562-ee1929fbaa16", + "id": "0fefe953-a168-4972-a091-601ce26ff5ff", "name": "Coupon has already been assigned to this Customer", "originalRequest": { "url": { @@ -7351,7 +7351,7 @@ "description": "", "item": [ { - "id": "c494b623-0bfd-448d-a00c-27e1b73ccb83", + "id": "da2a5fe5-c74e-4c80-a75b-a325e360953c", "name": "Find all coupons", "request": { "name": "Find all coupons", @@ -7381,7 +7381,7 @@ }, "response": [ { - "id": "ed9d3f6e-0cd6-48c7-9469-9256e28f7e1e", + "id": "e26e4b19-a374-4f5c-9aa2-e07d9b34a1fd", "name": "successful operation", "originalRequest": { "url": { @@ -7416,7 +7416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd409949-468e-4bf7-8fdb-0d21a2774f6a", + "id": "24359459-865a-4558-acf3-0713034e7ba2", "name": "Unauthorized - Invalid API key", "originalRequest": { "url": { @@ -7445,7 +7445,7 @@ } }, { - "id": "572f4658-bc02-42f9-819b-c7204066ee66", + "id": "5098b184-2e0a-4293-95b1-e97223f63878", "name": "Create a coupon", "request": { "name": "Create a coupon", @@ -7482,7 +7482,7 @@ }, "response": [ { - "id": "96e08924-229e-4cca-8107-44b31ec2197f", + "id": "c5a81c1a-5ae9-4971-81b0-4c7c534aaeb0", "name": "Coupon created", "originalRequest": { "url": { @@ -7524,7 +7524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55120443-481e-4fb2-9974-3ff99ee11837", + "id": "ccf38785-40f3-4056-8f60-bd3c05bc7e86", "name": "Unauthorized - Invalid API key", "originalRequest": { "url": { @@ -7556,7 +7556,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ea3f50e0-3a12-45a2-b8bb-c20b27628fe5", + "id": "52f612c3-03b9-4ec3-bde3-1d30859974b9", "name": "Unprocessable - the coupon parameters you provided are invalid", "originalRequest": { "url": { @@ -7610,7 +7610,7 @@ "description": "", "item": [ { - "id": "31c0c450-1c78-4619-9abe-0f49cf8d7869", + "id": "95346704-bd01-4bff-a777-e43b060e657e", "name": "Find all groups", "request": { "name": "Find all groups", @@ -7640,7 +7640,7 @@ }, "response": [ { - "id": "2ead855f-2c42-4dcd-87a5-0744f710e814", + "id": "fcc9ea1a-fb77-4fbc-aa2b-dc977ab36d24", "name": "successful operation", "originalRequest": { "url": { @@ -7675,7 +7675,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0f1ad1c-07fc-4553-b97e-612acb1157c2", + "id": "4486bbe1-c89e-4097-9167-8c0972000d26", "name": "Unauthorized - Invalid API key", "originalRequest": { "url": { @@ -7710,7 +7710,7 @@ "description": "", "item": [ { - "id": "03c4cb6d-9b0a-4cea-8f8a-9be39d8a3331", + "id": "93d33622-c5ff-4bde-8c34-efc5a07adbd4", "name": "Find all rooms", "request": { "name": "Find all rooms", @@ -7740,7 +7740,7 @@ }, "response": [ { - "id": "028e5ca0-a251-4b5e-bde2-cda6ca5a69bb", + "id": "3aa81bdc-ea15-4cbb-9e47-a9f074b4a851", "name": "successful operation", "originalRequest": { "url": { @@ -7770,12 +7770,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"code\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"space_for\": \"\",\n \"order\": \"\",\n \"twenty_four_hour_booking\": \"\",\n \"space_type\": \"\",\n \"hex_colour\": \"\",\n \"active\": \"\",\n \"prices_set\": \"\",\n \"price_to\": \"\",\n \"price_from\": \"\",\n \"images\": [\n {\n \"original\": \"\"\n },\n {\n \"original\": \"\"\n }\n ],\n \"data\": {}\n },\n {\n \"id\": \"\",\n \"code\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"space_for\": \"\",\n \"order\": \"\",\n \"twenty_four_hour_booking\": \"\",\n \"space_type\": \"\",\n \"hex_colour\": \"\",\n \"active\": \"\",\n \"prices_set\": \"\",\n \"price_to\": \"\",\n \"price_from\": \"\",\n \"images\": [\n {\n \"original\": \"\"\n },\n {\n \"original\": \"\"\n }\n ],\n \"data\": {}\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"code\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"space_for\": \"\",\n \"order\": \"\",\n \"twenty_four_hour_booking\": \"\",\n \"space_type\": \"\",\n \"hex_colour\": \"\",\n \"active\": \"\",\n \"prices_set\": \"\",\n \"price_to\": \"\",\n \"price_from\": \"\",\n \"images\": [\n {\n \"original\": \"\"\n },\n {\n \"original\": \"\"\n }\n ],\n \"data\": {}\n },\n {\n \"id\": \"\",\n \"code\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"space_for\": \"\",\n \"order\": \"\",\n \"twenty_four_hour_booking\": \"\",\n \"space_type\": \"\",\n \"hex_colour\": \"\",\n \"active\": \"\",\n \"prices_set\": \"\",\n \"price_to\": \"\",\n \"price_from\": \"\",\n \"images\": [\n {\n \"original\": \"\"\n },\n {\n \"original\": \"\"\n }\n ],\n \"data\": {}\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "759e1a01-dcc6-43bd-b4cd-99d46204e2c1", + "id": "7adddf57-c890-4348-94c7-1e420c5d4ff2", "name": "Unauthorized - Invalid API key", "originalRequest": { "url": { @@ -7810,7 +7810,7 @@ "description": "", "item": [ { - "id": "a3f80671-ef69-4a22-a418-14e809746858", + "id": "17857d7d-153e-4f34-a6d6-c17df08e4652", "name": "Studio configuration", "request": { "name": "Studio configuration", @@ -7840,7 +7840,7 @@ }, "response": [ { - "id": "bcc3a28f-c316-45d6-ab80-41d1b9145ce9", + "id": "c05da12c-a53e-4232-9ef4-88bd99ae959b", "name": "Studio configuration", "originalRequest": { "url": { @@ -7887,7 +7887,7 @@ "description": "", "item": [ { - "id": "0c37652f-ec53-4cf5-b9a7-f8e86e2bc996", + "id": "a3ed979a-b336-4ffa-8372-99efc9614a97", "name": "Dashboard composite data", "request": { "name": "Dashboard composite data", @@ -7945,7 +7945,7 @@ }, "response": [ { - "id": "ceb6a16e-d2ef-4f80-8958-aad495b7aa1e", + "id": "95ee1b6c-3c70-477d-b1f1-5d07106bb25b", "name": "Dashboard data", "originalRequest": { "url": { @@ -8003,7 +8003,7 @@ "value": "application/json" } ], - "body": "{\n \"rooms\": [\n {\n \"id\": \"\",\n \"code\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"space_for\": \"\",\n \"order\": \"\",\n \"twenty_four_hour_booking\": \"\",\n \"space_type\": \"\",\n \"hex_colour\": \"\",\n \"active\": \"\",\n \"prices_set\": \"\",\n \"price_to\": \"\",\n \"price_from\": \"\",\n \"images\": [\n {\n \"original\": \"\"\n },\n {\n \"original\": \"\"\n }\n ],\n \"data\": {}\n },\n {\n \"id\": \"\",\n \"code\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"space_for\": \"\",\n \"order\": \"\",\n \"twenty_four_hour_booking\": \"\",\n \"space_type\": \"\",\n \"hex_colour\": \"\",\n \"active\": \"\",\n \"prices_set\": \"\",\n \"price_to\": \"\",\n \"price_from\": \"\",\n \"images\": [\n {\n \"original\": \"\"\n },\n {\n \"original\": \"\"\n }\n ],\n \"data\": {}\n }\n ],\n \"bookings\": [\n {\n \"id\": \"\",\n \"code\": \"\",\n \"name\": \"\",\n \"is_recording\": \"\",\n \"session_name\": \"\",\n \"block_colour_override\": \"\",\n \"studio_notes\": \"\",\n \"additional_notes\": \"\",\n \"number_expected\": \"\",\n \"room\": {\n \"id\": \"\",\n \"name\": \"\",\n \"code\": \"\"\n },\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"start_time\": \"\",\n \"end_time\": \"\",\n \"title\": \"\",\n \"band_name\": \"\",\n \"has_amount_due\": \"\",\n \"amount_due\": \"\",\n \"regular\": \"\",\n \"incomplete\": \"\",\n \"cancelled\": \"\",\n \"customer\": {\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"extras_summary\": \"\"\n },\n {\n \"id\": \"\",\n \"code\": \"\",\n \"name\": \"\",\n \"is_recording\": \"\",\n \"session_name\": \"\",\n \"block_colour_override\": \"\",\n \"studio_notes\": \"\",\n \"additional_notes\": \"\",\n \"number_expected\": \"\",\n \"room\": {\n \"id\": \"\",\n \"name\": \"\",\n \"code\": \"\"\n },\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"start_time\": \"\",\n \"end_time\": \"\",\n \"title\": \"\",\n \"band_name\": \"\",\n \"has_amount_due\": \"\",\n \"amount_due\": \"\",\n \"regular\": \"\",\n \"incomplete\": \"\",\n \"cancelled\": \"\",\n \"customer\": {\n \"id\": \"\",\n \"name\": \"\",\n \"email\": \"\"\n },\n \"extras_summary\": \"\"\n }\n ],\n \"blocked_times\": [\n {\n \"id\": \"\",\n \"room_id\": \"\",\n \"reason\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"start_time\": \"\",\n \"end_time\": \"\",\n \"room\": {\n \"id\": \"\",\n \"name\": \"\",\n \"code\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"room_id\": \"\",\n \"reason\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"start_time\": \"\",\n \"end_time\": \"\",\n \"room\": {\n \"id\": \"\",\n \"name\": \"\",\n \"code\": \"\"\n }\n }\n ],\n \"opening_time\": \"\",\n \"slot_length\": \"\",\n \"timezone\": \"\"\n}", + "body": "{\n \"rooms\": [\n {\n \"id\": \"\",\n \"code\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"space_for\": \"\",\n \"order\": \"\",\n \"twenty_four_hour_booking\": \"\",\n \"space_type\": \"\",\n \"hex_colour\": \"\",\n \"active\": \"\",\n \"prices_set\": \"\",\n \"price_to\": \"\",\n \"price_from\": \"\",\n \"images\": [\n {\n \"original\": \"\"\n },\n {\n \"original\": \"\"\n }\n ],\n \"data\": {}\n },\n {\n \"id\": \"\",\n \"code\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"space_for\": \"\",\n \"order\": \"\",\n \"twenty_four_hour_booking\": \"\",\n \"space_type\": \"\",\n \"hex_colour\": \"\",\n \"active\": \"\",\n \"prices_set\": \"\",\n \"price_to\": \"\",\n \"price_from\": \"\",\n \"images\": [\n {\n \"original\": \"\"\n },\n {\n \"original\": \"\"\n }\n ],\n \"data\": {}\n }\n ],\n \"bookings\": [\n {\n \"id\": \"\",\n \"code\": \"\",\n \"name\": \"\",\n \"title\": \"\",\n \"band_name\": \"\",\n \"is_recording\": \"\",\n \"session_name\": \"\",\n \"block_colour_override\": \"\",\n \"studio_notes\": \"\",\n \"additional_notes\": \"\",\n \"number_expected\": \"\",\n \"start\": \"\",\n \"end\": \"\",\n \"split\": \"\",\n \"room_name\": \"\",\n \"has_amount_due\": \"\",\n \"amount_due\": \"\",\n \"payments_recieved\": \"\",\n \"regular\": \"\",\n \"incomplete\": \"\",\n \"show_studio_notes\": \"\",\n \"extras_summary\": [\n \"\",\n \"\"\n ],\n \"link\": \"\",\n \"type\": \"\",\n \"class\": \"\"\n },\n {\n \"id\": \"\",\n \"code\": \"\",\n \"name\": \"\",\n \"title\": \"\",\n \"band_name\": \"\",\n \"is_recording\": \"\",\n \"session_name\": \"\",\n \"block_colour_override\": \"\",\n \"studio_notes\": \"\",\n \"additional_notes\": \"\",\n \"number_expected\": \"\",\n \"start\": \"\",\n \"end\": \"\",\n \"split\": \"\",\n \"room_name\": \"\",\n \"has_amount_due\": \"\",\n \"amount_due\": \"\",\n \"payments_recieved\": \"\",\n \"regular\": \"\",\n \"incomplete\": \"\",\n \"show_studio_notes\": \"\",\n \"extras_summary\": [\n \"\",\n \"\"\n ],\n \"link\": \"\",\n \"type\": \"\",\n \"class\": \"\"\n }\n ],\n \"blocked_times\": [\n {\n \"id\": \"\",\n \"room_id\": \"\",\n \"reason\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"start_time\": \"\",\n \"end_time\": \"\",\n \"room\": {\n \"id\": \"\",\n \"name\": \"\",\n \"code\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"room_id\": \"\",\n \"reason\": \"\",\n \"start_at\": \"\",\n \"end_at\": \"\",\n \"start_time\": \"\",\n \"end_time\": \"\",\n \"room\": {\n \"id\": \"\",\n \"name\": \"\",\n \"code\": \"\"\n }\n }\n ],\n \"opening_time\": \"\",\n \"slot_length\": \"\",\n \"timezone\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -8020,7 +8020,7 @@ "description": "", "item": [ { - "id": "b12a0fd6-9205-455e-8f26-23fd43ab7ad4", + "id": "c15eaf28-4f67-45e6-b22a-ed2f69d924be", "name": "Calculate booking price", "request": { "name": "Calculate booking price", @@ -8063,7 +8063,7 @@ }, "response": [ { - "id": "a7ee820d-7c35-45cd-9568-3eff3ed5ad2d", + "id": "df7d0d90-951c-4867-a1bb-15fb09cca395", "name": "Price breakdown", "originalRequest": { "url": { @@ -8123,7 +8123,7 @@ "description": "", "item": [ { - "id": "d769865b-87d1-4c27-9833-697e04dd8f37", + "id": "83455325-101f-490b-a749-1be28eeb7103", "name": "Project time slot", "request": { "name": "Project time slot", @@ -8166,7 +8166,7 @@ }, "response": [ { - "id": "2c723088-2332-4d59-9d32-a8bb6b3e74a8", + "id": "aab19a49-f63e-4794-b7a9-e277877df368", "name": "Slot projection", "originalRequest": { "url": { @@ -8226,7 +8226,7 @@ "description": "", "item": [ { - "id": "d60c75ce-3201-444d-af91-33078a06ddd4", + "id": "f3aad404-1a13-4e0c-9386-3751fdec2d09", "name": "List extras", "request": { "name": "List extras", @@ -8256,7 +8256,7 @@ }, "response": [ { - "id": "611028e7-5b5d-48b0-802a-749cc211e8a5", + "id": "253abea0-9d9c-49c0-929c-cdcedfe30e4d", "name": "Extras list", "originalRequest": { "url": { @@ -8301,7 +8301,7 @@ "description": "", "item": [ { - "id": "4733d77b-8587-424a-a483-4a4d44f71d48", + "id": "ec2b73eb-982c-4326-bd81-a3e5a19b9b3e", "name": "Show extra", "request": { "name": "Show extra", @@ -8343,7 +8343,7 @@ }, "response": [ { - "id": "380cb151-5914-4492-b397-19b086e822d8", + "id": "3a3e55f1-121f-4727-ad73-ffe51b861e85", "name": "Extra detail", "originalRequest": { "url": { @@ -8408,7 +8408,7 @@ "description": "", "item": [ { - "id": "fdf47166-d891-427f-9ed5-34906910c0f7", + "id": "dbd9df34-126d-4d69-9592-cbed42ba79a2", "name": "Show room", "request": { "name": "Show room", @@ -8450,7 +8450,7 @@ }, "response": [ { - "id": "50734589-664c-4f24-9c43-8795df2d3081", + "id": "30846f1c-b2d2-4a99-8d23-087918b569ff", "name": "Room detail", "originalRequest": { "url": { @@ -8492,7 +8492,7 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"\",\n \"code\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"space_for\": \"\",\n \"order\": \"\",\n \"twenty_four_hour_booking\": \"\",\n \"space_type\": \"\",\n \"hex_colour\": \"\",\n \"active\": \"\",\n \"prices_set\": \"\",\n \"price_to\": \"\",\n \"price_from\": \"\",\n \"images\": [\n {\n \"original\": \"\"\n },\n {\n \"original\": \"\"\n }\n ],\n \"data\": {}\n}", + "body": "{\n \"id\": \"\",\n \"code\": \"\",\n \"name\": \"\",\n \"description\": \"\",\n \"space_for\": \"\",\n \"order\": \"\",\n \"twenty_four_hour_booking\": \"\",\n \"space_type\": \"\",\n \"hex_colour\": \"\",\n \"active\": \"\",\n \"prices_set\": \"\",\n \"price_to\": \"\",\n \"price_from\": \"\",\n \"images\": [\n {\n \"original\": \"\"\n },\n {\n \"original\": \"\"\n }\n ],\n \"data\": {}\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -8511,7 +8511,7 @@ "description": "", "item": [ { - "id": "ac55e7da-cc64-4287-a219-b304691df830", + "id": "eba230e1-baee-40d5-a766-ae47ed658226", "name": "List notifications", "request": { "name": "List notifications", @@ -8541,7 +8541,7 @@ }, "response": [ { - "id": "4c6340fd-b975-42d9-8c87-aadca65dc994", + "id": "0da57159-dcf4-4c15-9735-4fe218040db4", "name": "Notifications", "originalRequest": { "url": { @@ -8571,7 +8571,7 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"\",\n \"title\": \"\",\n \"body\": \"\",\n \"severity\": \"normal\",\n \"label\": \"\",\n \"read\": \"\",\n \"created_at\": \"\",\n \"read_at\": \"\"\n },\n {\n \"id\": \"\",\n \"title\": \"\",\n \"body\": \"\",\n \"severity\": \"normal\",\n \"label\": \"\",\n \"read\": \"\",\n \"created_at\": \"\",\n \"read_at\": \"\"\n }\n]", + "body": "[\n {\n \"id\": \"\",\n \"title\": \"\",\n \"body\": \"\",\n \"severity\": \"high\",\n \"label\": \"\",\n \"read\": \"\",\n \"created_at\": \"\",\n \"read_at\": \"\"\n },\n {\n \"id\": \"\",\n \"title\": \"\",\n \"body\": \"\",\n \"severity\": \"high\",\n \"label\": \"\",\n \"read\": \"\",\n \"created_at\": \"\",\n \"read_at\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" } @@ -8590,7 +8590,7 @@ "description": "", "item": [ { - "id": "6272cdc7-161b-4041-b692-d9170768fd8d", + "id": "ca2c5e22-0da9-4183-8bf8-45f3f611f3f2", "name": "Mark as read", "request": { "name": "Mark as read", @@ -8630,7 +8630,7 @@ }, "response": [ { - "id": "c993b960-d2c1-4a06-9be2-28bbeff60195", + "id": "597ad1b0-5986-4fce-aef8-48cc3cbdc6f9", "name": "Marked as read", "originalRequest": { "url": { @@ -8673,7 +8673,7 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"ok\",\n \"message\": \"\"\n}", + "body": "{\n \"status\": \"error\",\n \"message\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -8690,7 +8690,7 @@ "description": "", "item": [ { - "id": "ff7414d3-35df-495c-84aa-ec5115eb2280", + "id": "1580a8f2-72d9-44d5-864c-c23c1c797ec9", "name": "Archive notification", "request": { "name": "Archive notification", @@ -8730,7 +8730,7 @@ }, "response": [ { - "id": "a5e200b4-c9c9-4986-8a7a-7a94093fdff6", + "id": "1a5b6ad9-5d55-4b17-9d44-ccff055f346d", "name": "Archived", "originalRequest": { "url": { @@ -8773,7 +8773,7 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"ok\",\n \"message\": \"\"\n}", + "body": "{\n \"status\": \"error\",\n \"message\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -8792,7 +8792,7 @@ "description": "", "item": [ { - "id": "27ddb36e-b961-4623-8e7a-ca523a751c8b", + "id": "d19fa43e-38d4-4dd6-961b-dab2fd4c48a7", "name": "Clear all notifications", "request": { "name": "Clear all notifications", @@ -8820,7 +8820,7 @@ }, "response": [ { - "id": "ff515fb8-13c3-490a-80ae-143e0bff5b4b", + "id": "9b2c33e6-8cd3-4292-9364-d74caba2035f", "name": "All notifications cleared", "originalRequest": { "url": { @@ -8851,7 +8851,7 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"ok\",\n \"message\": \"\"\n}", + "body": "{\n \"status\": \"error\",\n \"message\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -8870,7 +8870,7 @@ "description": "", "item": [ { - "id": "35048216-ed38-43c8-b91c-230352a5b9c2", + "id": "1393a48a-e242-4a6a-9970-4853b2557ef9", "name": "List blocked times", "request": { "name": "List blocked times", @@ -8900,7 +8900,7 @@ }, "response": [ { - "id": "b83103f4-cf83-41b2-9bd6-1c651a9be217", + "id": "2092d97a-a4c5-4a2e-8900-19fd9b2f0885", "name": "Blocked times", "originalRequest": { "url": { @@ -8941,7 +8941,7 @@ } }, { - "id": "35ae26a7-2683-4e5d-8e37-847997f7a357", + "id": "d7848408-5ab7-401a-8019-1822e39da470", "name": "Create blocked time", "request": { "name": "Create blocked time", @@ -8984,7 +8984,7 @@ }, "response": [ { - "id": "7e1416ca-0727-4f64-8b24-146a102d2f98", + "id": "f4c6f53e-a62a-4cf7-a825-0e5ccc4bb541", "name": "Blocked time created", "originalRequest": { "url": { @@ -9042,7 +9042,7 @@ "description": "", "item": [ { - "id": "c5a43d09-8c63-450e-85df-becc842d41e6", + "id": "b1498c37-91e9-4d1f-a084-35a969598595", "name": "Update blocked time", "request": { "name": "Update blocked time", @@ -9094,7 +9094,7 @@ }, "response": [ { - "id": "2964ac46-703d-4394-9f0d-e90c464d89d6", + "id": "1b53f32c-c37e-4cd1-a373-60a702457208", "name": "Blocked time updated", "originalRequest": { "url": { @@ -9160,7 +9160,7 @@ } }, { - "id": "98761943-9b55-48f0-8b08-df50ee615937", + "id": "5fdb95f5-3766-4115-bf72-69c855e7933d", "name": "Delete blocked time", "request": { "name": "Delete blocked time", @@ -9199,7 +9199,7 @@ }, "response": [ { - "id": "7153233c-1614-4f7a-8f04-7f537e7763d0", + "id": "ca1b02f9-d082-4c45-8cd0-66c9297acaa5", "name": "Blocked time deleted", "originalRequest": { "url": { @@ -9241,7 +9241,7 @@ "value": "application/json" } ], - "body": "{\n \"status\": \"ok\",\n \"message\": \"\"\n}", + "body": "{\n \"status\": \"error\",\n \"message\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -9260,7 +9260,7 @@ "description": "", "item": [ { - "id": "e2625ad2-8114-4a0a-be67-60c099926f71", + "id": "9651b8fe-4e8b-4a1b-add4-7a31ef2bca7a", "name": "Recent transactions", "request": { "name": "Recent transactions", @@ -9290,7 +9290,7 @@ }, "response": [ { - "id": "12040a29-d9e2-4a5e-aaee-788c9266997a", + "id": "5d1515eb-64be-4cb9-969e-b9634c172550", "name": "Transaction summaries", "originalRequest": { "url": { @@ -9337,7 +9337,7 @@ "description": "", "item": [ { - "id": "b2a8a0ec-0f20-4b09-8fd3-f47b2dd81039", + "id": "2d525ece-9d4b-48ea-87e4-f3e99000a2f0", "name": "Money ledger", "request": { "name": "Money ledger", @@ -9395,7 +9395,7 @@ }, "response": [ { - "id": "af262cab-53da-4c63-bc04-0dcebafd2c12", + "id": "648db5df-bca3-412d-8e73-7dc8c3c4819b", "name": "Money logs", "originalRequest": { "url": { @@ -9482,7 +9482,7 @@ } ], "info": { - "_postman_id": "5ef92c33-6726-43b4-a0a1-75d58c77d56d", + "_postman_id": "24aeda1c-047a-486a-8f3c-65f9b85f9f74", "name": "Jammed Bookings API", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "description": {