resumes / #197
- userId
-
Ari Howe @ari.howe73
- title
- General Resume
- summary
- Truculenter odio maiores talio. Quam ventito repudiandae pel. Sto amor quidem totidem ullam.
- isDefault
- true
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/resumes/197" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/resumes/197"
);
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/197"
);
const resume = (await res.json()) as Resume;import requests
res = requests.get(
"https://example-data.com/api/v1/resumes/197"
)
resume = res.json() {
"id": 197,
"userId": 167,
"title": "General Resume",
"summary": "Truculenter odio maiores talio. Quam ventito repudiandae pel. Sto amor quidem totidem ullam.",
"isDefault": true,
"createdAt": "2023-10-20T08:08:43.293Z",
"updatedAt": "2025-07-11T02:34:08.715Z"
}