I did some searching and haven't come across anything for what I am trying to accomplish. I am trying to apply for a new job and there is an option to apply by API. This is new to me so I thought I would give it a try and pick up some learning along the way. I have some understanding of front end development but no experience with JSON. The API instructions are quoted as saying "Simply submit a POST request to our careers endpoint with a raw JSON request body, as shown, and we’ll get back to you!"
POST https://contact.companyname.com/jobs
{
"name": "Jane Doe",
"email": "jane@hotmail.com",
"resume": "www.linktoresume.com",
"github": "github.com/jane", // optional
"twitter": "@jane", // optional
"website": "jane.com" // optional
}
For someone without any understanding of where to even start with this, is there a write up on how to start or accomplish this?