FlashApply API Docs
Need help?
Back to Matching & Tailoring

Create Tailored Resume

Creates and saves a tailored version of the resume for a specific job. This stores the result separately from the original resume.

Request Details

path Parameters

FieldTypeRequiredDescription
id
string
YesThe unique identifier of the resume

Sample Request & Response

POST
/v1/resumes/{id}/tailored
Sample 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)"
  },
  "templateId": "(optional) ID of the resume template to apply"
}
Sample Response (201)
{
  "tailoredResumeId": "tr_456",
  "resumeId": "resume_123",
  "jobId": "job_789",
  "createdAt": "2025-08-04T18:00:00Z"
}