Activity #100
User #66 applied (rejected) Job #208
12/7/2024, 4:33:57 PM
Overview
applications / #100
User #66 applied (rejected) Job #208
12/7/2024, 4:33:57 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/100" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/100" ); 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/100"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/100"
)
application = res.json() Response
{
"id": 100,
"userId": 66,
"jobId": 208,
"status": "rejected",
"coverLetter": "Sonitus aestus spes deserunt recusandae crustulum congregatio decumbo tot. Appono paulatim agnitio trans adaugeo vestigium varius. Celebrer cibus tondeo contra conspergo.\n\nUniverse velociter arbitro amaritudo arbitro culpa. Ara super truculenter veritas trucido bibo deludo unus tenetur sponte. Ullam torrens ademptio atrox universe adstringo curtus.",
"appliedAt": "2024-12-07T16:33:57.107Z",
"lastUpdatedAt": "2025-01-21T09:55:40.153Z"
}