Back to Matching & Tailoring
Tailoring
Tailors a resume to a given job by rewriting relevant sections (summary, experience, skills) to align with the job description.
Request Details
path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | The unique identifier of the resume |
Sample Request & Response
POST
/v1/resumes/{id}/tailorSample Request
Headers:
{
"Authorization": "Bearer <YOUR_API_KEY>"
}Path Parameters:
{
"id": "string (required) - The unique identifier of the resume"
}Body:
{
"job": {
"text": "Job description text or jobId",
"jobId": "(optional) If already parsed"
}
}Sample Response (200)
{
"$ref": "TailoredResume"
}