Jicoo Developer Potal
  1. Schedule
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 Booking
      • Cancel Booking
      • Reschedule Booking
      • Create Booking
      • Update Booking
      • Get Booking Contacts
    • Schedule
      • Update Schedule
        PATCH
      • Create Schedule
        POST
      • List Schedules
        GET
      • Delete Schedule
        DELETE
    • 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. Schedule

List Schedules

GET
/v1/schedules
Returns a your list of manual creation schedules.
This list does not include bookings made on the event type page.
The schedule is the same as the one created on the Jicoo calendar page below.
https://www.jicoo.com/dashboard/calendars

Request

Authorization
Add parameter in header
X-Jicoo-Api-Key
Example:
X-Jicoo-Api-Key: ********************
Query Params
page
number 
optional
Example:
1
perPage
number 
optional
Example:
20
Body Params application/json
object {0}
Example
{}

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/schedules?page=1&perPage=20' \
--header 'Content-Type: application/json' \
--header 'X-Jicoo-Api-Key;' \
--data-raw '{}'

Responses

🟢200Success
application/json
Body
data
array[object (Schedule) {25}] 
required
uid
string 
required
Unique ID of the schedule
name
string 
required
Name of the schedule
<= 64 characters
description
required
Description of the schedule
routine
required
Routine of the schedule
isRemind
boolean 
required
Reminder setting for the schedule
projectId
required
Project ID related to the schedule
phoneNumber
required
Phone number related to the schedule
access
required
Access information for the schedule
address
required
Address for the schedule
customLocation
required
Custom location for the schedule
attendees
array [object {4}] 
required
isAllDay
boolean 
required
If the schedule is for all day
timeZone
string 
required
Time zone of the schedule
startedAt
required
Start time of the schedule
endedAt
required
End time of the schedule
priority
required
Priority of the schedule
displayType
enum<string> 
required
Display type of the schedule
Allowed values:
privateteamPublicpublic
location
required
Location type of the schedule
transparency
enum<string> 
required
Transparency of the schedule
Allowed values:
opaquetransparent
behavior
enum<string> 
required
Behavior of the schedule
Allowed values:
eventwork
visibilityType
enum<string> 
required
Visibility type of the schedule
Allowed values:
defaultbusy
status
enum<string> 
required
Status of the schedule
Allowed values:
opencancel
url
string  | null 
required
URL related to the schedule
updatedAt
string <date-time>
required
Last update time of the schedule
createdAt
string <date-time>
required
Creation time of the schedule
totalCount
integer 
required
total count
count
integer 
required
current count
currentPage
integer 
required
current page
nextPage
integer 
optional
next page
numberOfPages
integer 
required
number of pages
Example
{
  "data": [
    {
      "uid": "occaecat dolore et",
      "name": "dolores soluta iure",
      "status": "cancel",
      "startedAt": "2024-03-01T10:30:19.322Z",
      "endedAt": "2024-03-01T09:25:03.445Z",
      "address": "amet",
      "url": "http://emotional-comptroller.name",
      "phoneNumber": "1-532-936-2524",
      "customLocation": null,
      "description": "Animi sunt cupiditate ex quae dolor natus. Incidunt placeat optio consequuntur maxime. Velit beatae perferendis.",
      "isRoutine": false,
      "routine": null,
      "isRemind": false,
      "projectId": null,
      "access": "sint ea",
      "attendees": [
        {
          "userId": "qui id velit",
          "email": "Lorenz_Erdman@yahoo.com",
          "role": "in est",
          "userType": "magna Duis"
        }
      ],
      "isAllDay": true,
      "timeZone": "Pacific/Pago_Pago",
      "priority": "middle",
      "displayType": "private",
      "location": "custom",
      "transparency": "transparent",
      "behavior": "event",
      "visibilityType": "default",
      "createdAt": "2024-03-01T05:48:39.000Z",
      "updatedAt": "2024-03-01T05:48:39.000Z"
    }
  ],
  "totalCount": 2,
  "count": 1,
  "currentPage": 1,
  "nextPage": 2,
  "numberOfPages": 2
}
Previous
Create Schedule
Next
Delete Schedule
Built with