Jicoo Developer Potal
  1. Booking
Jicoo Developer Potal
  • Create powerful apps with Jicoo's API
  • Quick start
  • Authentication
  • Errors
  • Versioning
  • Types
  • API Reference Overview
  • Guide
    • How to use webhook
    • How to use Account integration
  • Guide(Japanese)
    • アカウント連携の使い方
    • Webhookの使い方
    • ホストの優先度を更新する方法
  • API Reference
    • Jicoo API
    • Webhook Schema
      • Webhook schema
      • event property
      • createdAt property
      • object property
      • contact property
      • answers property
      • answers items property
      • tracking property
    • Booking
      • List Bookings
        GET
      • Get Booking
        GET
      • Cancel Booking
        POST
      • Reschedule Booking
        POST
      • Create Booking
        POST
      • Update Booking
        PATCH
      • Get Booking Contacts
        GET
    • Schedule
      • Update Schedule
      • Create Schedule
      • List Schedules
      • Delete Schedule
    • Availability
      • List User Availability Calendars
      • Get User Availability Calendar
    • Oraganization
      • User
        • List Organization Users
        • Delete Organization User
        • Get Organization User
        • Update Organization User
      • Invitation
        • Create Organiztion Invitation
        • List Organization Invitations
        • Get Organization Invitation
        • Delete Organiztion Invitation
      • Get Organization Team
    • Event Types
      • Get Event Type
      • List Event Types
      • List Event Type Hosts
      • Get Event Type Available Schedules
      • Account Integration
      • Update Event Type Host
      • Delete Event Type Host
      • Create Event Type Host
  1. Booking

Get Booking Contacts

GET
/v1/bookings/{uid}/contacts
The GET Booking Contacts API retrieves a list of contacts associated with a specific booking. Each contact includes detailed information such as their name, email, phone number, company name, and any custom responses they provided during the booking process.

Request

Authorization
Add parameter in header
X-Jicoo-Api-Key
Example:
X-Jicoo-Api-Key: ********************
Path Params
uid
string 
required

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1/bookings//contacts' \
--header 'X-Jicoo-Api-Key;'

Responses

🟢200Success
application/json
Body
data
array[object (Booking Contact) {11}] 
required
name
string 
required
Name of the contact
email
required
The contact's email address
ccEmails
array[string <email>]
required
CC Emails of the contact
company
string  | null 
required
Company Name of the contact
phoneNumber
string  | null 
required
The contact's Phone number
message
string  | null 
required
Contact's message
textRemindNumber
string  | null 
required
The phone number to use when sending SMS remind numbers
textRemindCountryCode
string  | null 
required
The phone number code to use when sending SMS remind numbers
answers
array [object {2}] 
required
A collection of the Contact's responses to custom questions on the event booking confirmation page
createdAt
string <date-time>
required
The time this contact was created
updatedAt
string <date-time>
required
The time this contact was updated
errors
object 
required
Example
{
  "data": [
    {
      "name": "string",
      "email": "user@example.com",
      "ccEmails": [
        "user@example.com"
      ],
      "company": "string",
      "phoneNumber": "string",
      "message": "string",
      "textRemindNumber": "string",
      "textRemindCountryCode": "string",
      "answers": [
        {
          "question": "string",
          "content": [
            "string"
          ]
        }
      ],
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z"
    }
  ],
  "errors": {}
}
🟠404Record Not Found
Previous
Update Booking
Next
Update Schedule
Built with