Jicoo Developer Potal
    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
        • 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
        • Delete Event Type Host Assign Rule
        • Update Event Type Host Assign Rule
        • Create Event Type Host Assign Rule
        • List Event Type Host Assign Rules
    • Schemas
      • webhook schema
      • Booking
      • OrganizationUser
      • OrganizationInvitation
      • UserAvailabilityCalendar
      • OrganizationTeam
      • EventType
      • Host
      • Pagination
      • AvailableSchedule
      • Schedule
      • Booking Contact
      • HostAssignRule

    webhook schema

    WebhookのPostされる情報のスキーマ

    {
        "event": "guest_booked",
        "createdAt": "2019-08-24T10:02:02.000Z",
        "object": {
            "uid": "string",
            "eventTypeUid": "string",
            "status": "open",
            "timeZone": "Asia/Tokyo",
            "createdAt": "2019-08-24T10:01:01.000Z",
            "updatedAt": "2019-08-24T10:02:02.000Z",
            "startedAt": "2019-08-24T14:00:00.000Z",
            "endedAt": "2019-08-24T15:00:00.000Z",
            "cancelReason": "Another meeting scheduled",
            "cancelledAt": "2019-08-294T14:01:01.000Z",
            "cancelledBy": "guest",
            "contact": {
                "email": "example@example.com",
                "name": "Taro Yamada"
            },
            "answers": [
                {
                    "question": "How did you find out?",
                    "content": [
                        "SNS"
                    ]
                }
            ],
            "tracking": {
                "utm_campaign": "winter_campaign",
                "utm_source": "twitter",
                "utm_medium": "owned_media",
                "utm_content": "jicoo-how-to",
                "utm_term": "howto"
            }
        }
    }
    Built with