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

Body Params application/json

Example
{}

Request Code 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

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
}
Modified at 2024-08-02 12:55:09
Previous
Create Schedule
Next
Delete Schedule
Built with