example-data.com
Menu
Browse docs and collections

Overview

resumes / #173

Operations Resume

userId
Hershel Smitham @hershel.smitham
title
Operations Resume
summary
Apostolus suppono vestrum iste defungo temperantia. Adficio surgo conor speciosus tredecim reprehenderit ex tracto bonus aegre. Absens ratione accedo harum talus clamo ut vociferor.
isDefault
true
createdAt
updatedAt

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/resumes/173" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/resumes/173"
);
const resume = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/resumes.d.ts https://example-data.com/types/resumes.d.ts
import type { Resume } from "./types/resumes";

const res = await fetch(
  "https://example-data.com/api/v1/resumes/173"
);
const resume = (await res.json()) as Resume;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/resumes/173"
)
resume = res.json()

Response

{
  "id": 173,
  "userId": 147,
  "title": "Operations Resume",
  "summary": "Apostolus suppono vestrum iste defungo temperantia. Adficio surgo conor speciosus tredecim reprehenderit ex tracto bonus aegre. Absens ratione accedo harum talus clamo ut vociferor.",
  "isDefault": true,
  "createdAt": "2024-07-09T13:01:21.515Z",
  "updatedAt": "2025-05-01T08:19:23.634Z"
}