Skip to main content
GET
/
resumes
/
{id}
/
pdf
Export resume as PDF
curl --request GET \
  --url http://localhost:3000/api/openapi/resumes/{id}/pdf \
  --header 'x-api-key: <api-key>'
{
  "url": "<string>"
}

Authorizations

x-api-key
string
header
required

The API key to authenticate requests.

Path Parameters

id
string
required

The unique identifier of the resume to export.

Response

200 - application/json

The PDF was generated successfully. Returns a URL to download the file.

url
string
required

The URL to download the generated PDF file.