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": {
    "_self": "<string>"
  },
  "job": {
    "_self": "<string>"
  },
  "step": {
    "id": 123,
    "name": "<string>",
    "status": "START"
  },
  "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
job
object
step
object
notes
object