Skip to main content
GET
/
application
/
{applicationid}
Get application by ID
curl --request GET \
  --url https://jobaffinity.fr/restapi/v1/application/{applicationid} \
  --header 'Authorization: Basic <encoded-value>'
{
  "_self": "<string>",
  "_schema": "<string>",
  "_status": "OK",
  "id": 123,
  "date": "2023-11-07T05:31:56Z",
  "route": "<string>",
  "latest_cv_url": "<string>",
  "candidate": {
    "id": 123,
    "_self": "<string>",
    "applications": {
      "_self": "<string>"
    },
    "title": "MR",
    "first_name": "<string>",
    "last_name": "<string>",
    "email": "jsmith@example.com"
  },
  "source": {
    "id": 123,
    "name": "<string>",
    "posting_service": {
      "id": 123,
      "name": "<string>"
    }
  },
  "job": {
    "_self": "<string>",
    "id": 123,
    "title": "<string>",
    "status": "OPEN",
    "applications": {
      "_self": "<string>"
    }
  },
  "step": {
    "id": 123,
    "name": "<string>",
    "status": "START",
    "date": "2023-12-25"
  },
  "steps": {
    "items": [
      {
        "id": 123,
        "name": "<string>",
        "status": "START",
        "date": "2023-12-25",
        "user": {
          "id": 123,
          "first_name": "<string>",
          "last_name": "<string>",
          "email": "jsmith@example.com"
        }
      }
    ],
    "latest_cv_url": "<string>"
  },
  "notes": {
    "_self": "<string>"
  }
}

Authorizations

Authorization
string
header
required

HTTP Basic Authentication with API credentials

Path Parameters

applicationid
integer
required

Application ID

Response

Application details

_self
string<uri>

URL of the application resource

_schema
string<uri>
_status
enum<string>
Available options:
OK,
INVALID
id
integer

Application identifier

date
string<date-time>

Application submission date

route
string

Application route (how the candidate applied)

latest_cv_url
string<uri> | null

URL to download the latest CV (may redirect)

candidate
object

Inline candidate summary

source
object

Source of the application

job
object

Inline job summary

step
object

Current step of the application

steps
object

Full step history of the application (available in application detail, not in collection listings)

notes
object