example-data.com

resumes / #204

userId
Aylin Sanford @aylin.sanford
title
Operations Resume
summary
Volup ter fugit acies tolero tibi. Congregatio astrum quasi termes timidus arca. Aetas volo coaegresco voluptatem textor aggero cunctatio adeo sum.
isDefault
true
createdAt
updatedAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/resumes/204" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/resumes/204"
);
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/204"
);
const resume = (await res.json()) as Resume;
import requests

res = requests.get(
    "https://example-data.com/api/v1/resumes/204"
)
resume = res.json()
{
  "id": 204,
  "userId": 173,
  "title": "Operations Resume",
  "summary": "Volup ter fugit acies tolero tibi. Congregatio astrum quasi termes timidus arca. Aetas volo coaegresco voluptatem textor aggero cunctatio adeo sum.",
  "isDefault": true,
  "createdAt": "2024-02-13T17:12:36.888Z",
  "updatedAt": "2024-09-16T11:06:56.047Z"
}
Draftbit