- 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
Update Event Type Host
PATCH
/v1/event_types/{eventTypeId}/hosts/{uid}
Request
Authorization
Add parameter in header
X-Jicoo-Api-Key
Example:
X-Jicoo-Api-Key: ********************
Path Params
eventTypeId
string
required
uid
string
required
Body Params application/json
priority
integer
optional
>= 0<= 3
Example
{
"priority": 0
}
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 PATCH '/v1/event_types//hosts/' \
--header 'Content-Type: application/json' \
--header 'X-Jicoo-Api-Key;' \
--data-raw ''
Responses
🟢200Success
application/json
Body
data
object (Host)
required
uid
string
required
name
string
required
email
string <email>
required
profileImage
string | null
required
role
enum<string>
required
Allowed values:
admineditorviewer
priority
integer
required
>= 0<= 3
userType
enum<string>
required
Allowed values:
hostnotifyHost
sort
integer
required
>= 0
Example
{
"data": {
"uid": "xxxxxxxxxxxxxxxxxx",
"name": "Hope Barton",
"email": "Cielo32@example.com",
"profileImage": "https://example.com/400/400?lock=7579415894002067",
"role": "editor",
"priority": 3,
"userType": "notifyHost",
"sort": 1
}
}
Modified at 2025-03-31 11:46:50