Jicoo Developer Potal
  1. Event Types
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
      • 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
        GET
      • List Event Types
        GET
      • List Event Type Hosts
        GET
      • Get Event Type Available Schedules
        GET
      • Account Integration
        POST
      • Update Event Type Host
        PATCH
      • Delete Event Type Host
        DELETE
      • Create Event Type Host
        POST
  1. Event Types

Account Integration

POST
/v1/teams/{teamId}/event_types/{eventTypeId}/validate
The Account Linking API is a function that allows you to generate a URL for a EventType page that displays the guest's name and email address as uneditable fields on the EventType page you manage.
This endpoint requires an Enterprise plan.

Request

Authorization
Add parameter in header
X-Jicoo-Api-Key
Example:
X-Jicoo-Api-Key: ********************
Path Params
teamId
string 
required
Example:
exampleteam
eventTypeId
string 
required
Example:
XXXXXXXXX
Header Params
Accept
string 
required
Example:
application/json
Content-Type
string 
required
Example:
application/json

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 POST '/v1/teams/exampleteam/event_types/XXXXXXXXX/validate' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'X-Jicoo-Api-Key;'

Responses

🟢201OK
application/json
Body
data
object 
required
url
string <uri>
required
errors
object  | null 
required
Example
{
  "data": {
    "url": "https://www.jicoo.com/t/exampleteam/e/XXXXXXXXX?guestSessionId=bDOWire0m8MYpG%2BAxYd4QDTnSzVCMKKQZGCNM2YC1d8SlGme1UTZ7G48cIhLMwrsoA%3D%d3D--GxzqKgenL%2F4lMvn1--36vOPaLGI2PKgTBIs8hlGA%3D%3D"
  },
  "errors": {}
}
🟠400Bad request
🟠404Not found
Previous
Get Event Type Available Schedules
Next
Update Event Type Host
Built with