We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I cannot, for the life of me, figure out how to create a scheduled interview.
This is what my request looks like in Python:
requests.post( url="https://harvest.greenhouse.io/v2/scheduled_interviews", data={ "application_id": application_id, "interview_id": interview_id, "interviewers": [ {"user_id": user_id, "response_status": "accepted"} ], "start": "2022-12-12T13:15:00Z", "end": "2022-12-12T13:55:00Z", "external_event_id": "some_external_event_id" , }, headers = { "On-Behalf-Of": str(interviewer["id"]), "Content-Type": "application/json", "Authorization": "Basic ..." } )
But it fails with Bad Request for url: https://harvest.greenhouse.io/v1/scheduled_interviews, providing no info as to what's wrong with my request.
Bad Request for url: https://harvest.greenhouse.io/v1/scheduled_interviews
The text was updated successfully, but these errors were encountered:
Hi @spaugh, currently facing a similar issue. How were you able to resolve this? Thanks.
Sorry, something went wrong.
Got it now. Nvm. Was supposed to pass the dictionary as body parameters.
body parameters
No branches or pull requests
I cannot, for the life of me, figure out how to create a scheduled interview.
This is what my request looks like in Python:
But it fails with
Bad Request for url: https://harvest.greenhouse.io/v1/scheduled_interviews
, providing no info as to what's wrong with my request.The text was updated successfully, but these errors were encountered: