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

Authorizations

Authorization
string
header
required

HTTP Basic Authentication with API credentials

Query Parameters

limit
integer
default:20

Maximum number of items to return per page

Required range: 1 <= x <= 100
since
integer

Return items created or modified since this ID

Required range: x >= 0
candidate_email
string<email>

Filter by candidate email

job_reference
string

Filter by job reference

step_status
enum<string>

Filter by step status

Available options:
START,
CURRENT,
END
step_name
string

Filter by step name

Response

Paginated list of step changes

_self
string<uri>
_schema
string<uri>
_status
enum<string>
Available options:
OK,
INVALID
_next
string<uri> | null
items
object[]