Skip to main content

scheduling an event is failing is 400 error

  • November 28, 2025
  • 1 reply
  • 149 views

  • Community Member

I am trying to create a scheduled event using oauth 2 API. I am not sure why the API is failing with 400 Bad Request error. Could you please help me to figure out the issue?

request url: //api-calendly-com.screenshare.banktechpr.app/invitees
request method: post

request headers included
authorization bearer <token>
content-type application/json

request payload

{
'event_type': '//api-calendly-com.screenshare.banktechpr.app/event_types/742a5393-093d-474b-abda-1ffdd446fb7e',
'start_time': '2025-12-01T19:27:04.0000Z',
'invitee': {
'email': 'user_001@test.com',
'name': 'Test User001',
'first_name': 'Test',
'last_name': 'User001',
'timezone': 'America/Los_Angeles'
},
'location': {
'kind': 'inbound_call'
}
}

response code: 400

response payload:

{"title":"Invalid Argument","message":"The supplied parameters are invalid."}

reponse headers:
x-request-id: 5e18b628-eb03-4771-8f56-96f9341e5261

1 reply

  • Employee
  • May 22, 2026

Hi there,

 

This event type needs a phone number to submit a successful event, see example below. 

{
   "event_type":"//api-calendly-com.screenshare.banktechpr.app/event_types/742a5393-093d-474b-abda-1ffdd446fb7e",
   "start_time":"2025-12-01T19:27:04.0000Z",
   "invitee":{
      "email":"user_001@test.com",
      "name":"Test User001",
      "first_name":"Test",
      "last_name":"User001",
      "timezone":"America/Los_Angeles"
   },
   "location": {
    "location": "+1 203-999-9999",
    "kind": "outbound_call"
  }
}

 

Please let me know if you have additional questions!