resumes / #220
- userId
-
Sammy Schmidt @sammy.schmidt
- title
- Product Resume
- summary
- Calamitas desipio verto capio aro ars defessus ter conventus aggredior. Triumphus in solium vero textor repellat asperiores peior decumbo tertius. Tabula pax nostrum thymum aureus.
- isDefault
- false
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/resumes/220" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/resumes/220"
);
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/220"
);
const resume = (await res.json()) as Resume;import requests
res = requests.get(
"https://example-data.com/api/v1/resumes/220"
)
resume = res.json() {
"id": 220,
"userId": 186,
"title": "Product Resume",
"summary": "Calamitas desipio verto capio aro ars defessus ter conventus aggredior. Triumphus in solium vero textor repellat asperiores peior decumbo tertius. Tabula pax nostrum thymum aureus.",
"isDefault": false,
"createdAt": "2024-03-15T06:08:18.397Z",
"updatedAt": "2024-06-15T23:50:48.016Z"
}