resumes / #98
- userId
-
Mateo Gerlach @mateo.gerlach
- title
- Operations Resume
- summary
- Sponte absens explicabo appello expedita caput speciosus cilicium. Soluta fugiat bardus atqui tondeo amplexus ante callide. Universe angustus calculus alter tergum cernuus studio celer quis solio.
- isDefault
- true
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/resumes/98" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/resumes/98"
);
const resume = await res.json();import type { Resume } from "https://example-data.com/types/resumes.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/resumes/98"
);
const resume = (await res.json()) as Resume;import requests
res = requests.get(
"https://example-data.com/api/v1/resumes/98"
)
resume = res.json() {
"id": 98,
"userId": 81,
"title": "Operations Resume",
"summary": "Sponte absens explicabo appello expedita caput speciosus cilicium. Soluta fugiat bardus atqui tondeo amplexus ante callide. Universe angustus calculus alter tergum cernuus studio celer quis solio.",
"isDefault": true,
"createdAt": "2025-11-23T14:17:17.772Z",
"updatedAt": "2026-03-07T01:22:43.501Z"
}