Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
September 5, 2020 09:14 pm GMT

How I Applied to a Tech Job Using a POST Request

I recently tweeted about a job application experience where I had to send my application using a POST request.

It gained a lot of attention and bewilderment, so I'm going to use this post to ~demystify~ the process.

The Job Posting

The job I applied to was for a Technical Support Engineer position at Plaid. They provide two ways to apply: through a typical form or sending an API request. I chose to do the latter!

How I Did It

Gathering the Info

The job application provided a sample POST request body and the API endpoint, as shown below:

Alt Text

Now, all I had to do was gather my application information for the POST request and then send the request!

Using Insomnia to Send the Request

There are numerous API tools out on the market. I chose to use Insomnia, an open-source API client application, to send my request. Luckily, Insomnia was easy-to-use and quickly walked me through the steps of creating an API request:

  1. After opening Insomnia, click on New Request.

    Alt Text

  2. In the window that pops up:

    Alt Text

    • Type in a name for your request under Name.

    • Click the drop-down menu and choose POST. A new drop-down list will appear next to POST that will ask you if there is a body to your request. Choose JSON, which was specified in the API instructions given in the job posting.

    • Click the Create button.

  3. Paste the raw JSON request body with your application information into the field under POST.

    Alt Text

    Make sure to remove the optional comments within the request body.

  4. Paste the API endpoint that was provided in the job application next to POST in the top right corner.

    Alt Text

  5. Click the Send button!

Results

After clicking Send, you should receive a HTTP response. If it all is well, you will see a 200 OK HTTP Response with a message saying "We got your application and we'll get back to you shortly!"

Alt Text

Tada! There you have it! You should have been able to send a simple POST request to an API endpoint that contains your job application.


Original Link: https://dev.to/maggiecodes_/how-i-applied-to-a-tech-job-using-a-post-request-193d

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To