FlashApply API Docs
Need help?
Back to Matching & Tailoring

Actions

Returns a list of AI-generated improvements with priority levels, explanations, and suggested rewrites.

Sample Request & Response

POST
/v1/resumes/{id}/tailor/actions
Sample Request

Headers:

{
  "Authorization": "Bearer <YOUR_API_KEY>"
}

Body:

{
  "job": {
    "text": "Job description text or jobId"
  }
}
Sample Response (200)
{
  "actions": [
    {
      "priority": "high",
      "field": "summary",
      "reason": "Missing key technologies",
      "suggestion": "Mention Docker, Kubernetes"
    }
  ]
}