resumes / #188
- userId
-
Marlin Goldner @marlin_goldner6
- title
- General Resume
- summary
- Cubicularis velum saepe denuo. Aspernatur occaecati comburo hic degenero vivo dicta suffoco thesis quos. Ea sui vulgo deduco sol.
- isDefault
- true
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/resumes/188" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/resumes/188"
);
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/188"
);
const resume = (await res.json()) as Resume;import requests
res = requests.get(
"https://example-data.com/api/v1/resumes/188"
)
resume = res.json() {
"id": 188,
"userId": 160,
"title": "General Resume",
"summary": "Cubicularis velum saepe denuo. Aspernatur occaecati comburo hic degenero vivo dicta suffoco thesis quos. Ea sui vulgo deduco sol.",
"isDefault": true,
"createdAt": "2025-04-19T23:06:26.197Z",
"updatedAt": "2025-07-30T12:42:21.486Z"
}