Skip to main content
POST
/
applications
/
import
Bulk import applications
curl --request POST \
  --url http://localhost:3000/api/openapi/applications/import \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "items": [
    {
      "company": "<string>",
      "role": "<string>",
      "location": "<string>",
      "salary": "<string>",
      "source": "<string>",
      "sourceUrl": "<string>",
      "jobDescription": "<string>",
      "notes": "<string>",
      "resumeFileUrl": "<string>",
      "resumeFileName": "<string>",
      "coverLetterUrl": "<string>",
      "coverLetterName": "<string>",
      "followUpAt": "2023-11-07T05:31:56Z",
      "followUpNote": "<string>",
      "contacts": [
        {
          "name": "<string>",
          "role": "",
          "type": ""
        }
      ],
      "resumeId": "<string>",
      "tags": [
        "<string>"
      ]
    }
  ]
}
'
{
  "imported": 123
}

Authorizations

x-api-key
string
header
required

The API key to authenticate requests.

Body

application/json
items
object[]
required
Required array length: 1 - 500 elements

Response

200 - application/json

The number of applications imported.

imported
number
required