CV Import
May 28th, 2025
  • api to upload a cv for ai parsing.
mutation CreatePersonCVImport($cv: ImageInput!) {
  createPersonCvImport(cv: $cv) {
    id
  }
}
  • use the id in response of mutation to send query for status of cv import.
query PersonCVImport {
  personCvImport(id: "2") {
    id
    completed_at
    cv {
      url
      filename
    }
    failed_at
    failure_reason
    status
    person {
      id
      email
    }
  }
}
  • if status is completed that means cv import was succesfull.
X
Crafted by