resumes / #121
- userId
-
Whitney O'Reilly @whitney.oreilly
- title
- Marketing Resume
- summary
- Deporto desidero adnuo adaugeo textor acidus vehemens aqua. Attonbitus iusto thymbra assumenda solitudo tum sono ultio acerbitas curis. Comis abscido taceo.
- isDefault
- true
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/resumes/121" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/resumes/121"
);
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/121"
);
const resume = (await res.json()) as Resume;import requests
res = requests.get(
"https://example-data.com/api/v1/resumes/121"
)
resume = res.json() {
"id": 121,
"userId": 99,
"title": "Marketing Resume",
"summary": "Deporto desidero adnuo adaugeo textor acidus vehemens aqua. Attonbitus iusto thymbra assumenda solitudo tum sono ultio acerbitas curis. Comis abscido taceo.",
"isDefault": true,
"createdAt": "2025-05-21T22:06:25.867Z",
"updatedAt": "2026-04-22T07:34:43.418Z"
}