resumes / #64
- userId
-
Samson Stroman @samson_stroman
- title
- Product Resume
- summary
- Titulus spoliatio aspernatur tondeo cubo textor urbanus decet ascit tonsor. Colligo patrocinor asporto. Appello conculco pecus.
- isDefault
- true
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/resumes/64" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/resumes/64"
);
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/64"
);
const resume = (await res.json()) as Resume;import requests
res = requests.get(
"https://example-data.com/api/v1/resumes/64"
)
resume = res.json() {
"id": 64,
"userId": 52,
"title": "Product Resume",
"summary": "Titulus spoliatio aspernatur tondeo cubo textor urbanus decet ascit tonsor. Colligo patrocinor asporto. Appello conculco pecus.",
"isDefault": true,
"createdAt": "2024-07-18T16:15:11.983Z",
"updatedAt": "2026-01-25T13:49:22.643Z"
}