Skip to main content
POST
/
resumes
Create a new resume
curl --request POST \
  --url http://localhost:3000/api/openapi/resumes \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "name": "<string>",
  "slug": "<string>",
  "tags": [
    "<string>"
  ],
  "withSampleData": false
}
'
"<string>"

Authorizations

x-api-key
string
header
required

The API key to authenticate requests.

Body

application/json
name
string
required

The name of the resume.

Required string length: 1 - 64
slug
string
required

The slug of the resume.

Required string length: 1 - 64
tags
string[]
required

The tags of the resume.

withSampleData
boolean
default:false

Response

The ID of the newly created resume.

The ID of the created resume.