GET
/
unified
/
ats
/
applications
/
{id}
/
changes
curl --request GET \
  --url https://api.stackone.com/unified/ats/applications/{id}/changes \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'x-account-id: <x-account-id>'
{
  "next": "<string>",
  "data": [
    {
      "id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
      "remote_id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
      "created_at": "2024-01-15T10:30:00Z",
      "effective_at": "2024-01-15T10:30:00Z",
      "actor": {
        "id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
        "remote_id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3"
      },
      "change_type": {
        "value": "application_status",
        "source_value": "StatusChange"
      },
      "new_values": {
        "interview_stage_id": "18bcbb1b-3cbc-4198-a999-460861d19480",
        "rejected_reason_ids": [
          "f223d7f6-908b-48f0-9237-b201c307f609"
        ],
        "application_status": {
          "value": "hired",
          "source_value": "Hired"
        }
      }
    }
  ],
  "raw": [
    {
      "method": "<string>",
      "url": "<string>",
      "body": "<string>",
      "response": {}
    }
  ]
}

This endpoint is currently in beta and subject to change before full release.

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Headers

x-account-id
string
required

The account identifier

Path Parameters

id
string
required

Query Parameters

raw
boolean | null

Indicates that the raw request result should be returned in addition to the mapped result (default value is false)

proxy
object | null

Query parameters that can be used to pass through parameters to the underlying provider request by surrounding them with 'proxy' key

fields
string | null

The comma separated list of fields that will be returned in the response (if empty, all fields are returned)

Example:

"event_id,remote_event_id,created_at,effective_at,change_type,actor,new_values"

page_size
string | null

The number of results per page (default value is 25)

next
string | null

The unified cursor

filter
object | null

Filter parameters for application changes (supports created_after and change_type)

Response

200
application/json

The changes related to the application with the given identifier was retrieved.

The response is of type object.