- Create powerful apps with Jicoo's API
- Quick start
- Authentication
- Errors
- Versioning
- Types
- API Reference Overview
- Guide
- Guide(Japanese)
- API Reference
- Jicoo API
- Webhook Schema
- Booking
- Schedule
- Availability
- Oraganization
- Event Types
Get Booking
GET
/v1/bookings/{uid}
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/' \
--header 'X-Jicoo-Api-Key;'
Responses
🟢200Success
application/json
Body
data
object (Booking)
required
uid
string
required
eventTypeId
string | null
required
name
string
required
description
string | null
required
status
enum<string>
required
Allowed values:
requestopencancel
startedAt
string <date-time>
required
endedAt
string <date-time>
required
locationId
required
url
string | null
required
phoneNumber
string | null
required
address
string | null
required
customLocation
string | null
required
access
string | null
required
timeZone
string
required
priority
required
cancelReason
string | null
required
cancelledAt
required
cancelledBy
required
hosts
array [object {2}]
required
createdAt
string <date-time>
required
updatedAt
string <date-time>
required
errors
object
required
Example
{
"data": {
"uid": "string",
"eventTypeId": "string",
"name": "string",
"description": "string",
"status": "request",
"startedAt": "2019-08-24T14:15:22Z",
"endedAt": "2019-08-24T14:15:22Z",
"locationId": "inPerson",
"url": "string",
"phoneNumber": "string",
"address": "string",
"customLocation": "string",
"access": "string",
"timeZone": "string",
"priority": "low",
"cancelReason": "string",
"cancelledAt": "2019-08-24T14:15:22Z",
"cancelledBy": "host",
"hosts": [
{
"userId": "string",
"role": "admin"
}
],
"createdAt": "2019-08-24T14:15:22Z",
"updatedAt": "2019-08-24T14:15:22Z"
},
"errors": {}
}
Modified at 2024-08-28 09:20:10