Activity #95
User #63 applied (screening) Job #177
7/2/2024, 7:17:51 AM
Overview
applications / #95
User #63 applied (screening) Job #177
7/2/2024, 7:17:51 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/95" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/95" ); const application = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/applications.d.ts https://example-data.com/types/applications.d.ts
import type { Application } from "./types/applications";
const res = await fetch(
"https://example-data.com/api/v1/applications/95"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/95"
)
application = res.json() Response
{
"id": 95,
"userId": 63,
"jobId": 177,
"status": "screening",
"coverLetter": "Ad aduro denego eligendi viridis eum. Vivo ipsa adopto. Strenuus dedecor illum terror adeptio ceno cupiditas corrigo ver.",
"appliedAt": "2024-07-02T07:17:51.658Z",
"lastUpdatedAt": "2024-08-15T22:10:26.680Z"
}