I imagine this is very easy, but I’m new and have been struggling with this for days. I can’t find any videos about this case. I SO appreciate any help!
How do I connect this type of API? It has a Basic Auth / HTTPS requirement, so I need something more than just a typical set up.
Your Authorization header should look like this:
Authorization: Basic YTcxODNlMWI3ZTlhYjA5YjhhNWNmYTg3ZDE5MzRjM2M6
Most HTTP clients will automatically use a given username and password to generate the required Authorization header. However, you may need to explicity set this header. The header has the following format:
Authorization: Basic <base64(“username:password”)>
Here’s the documentation:
https://developers.greenhouse.io/harvest.html?shell#authentication