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

Authorizations

x-api-key
string
header
required

The API key to authenticate requests.

Path Parameters

id
string
required

The ID of the resume.

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.

Response

200 - application/json

The ID of the duplicated resume.

The ID of the duplicated resume.