Skip to main content
GET
/
process
List all processes
curl --request GET \
  --url https://jobaffinity.fr/restapi/v1/process/ \
  --header 'Authorization: Basic <encoded-value>'
{
  "_self": "<string>",
  "_schema": "<string>",
  "_status": "OK",
  "items": [
    {
      "_self": "<string>",
      "_schema": "<string>",
      "_status": "OK",
      "id": 123,
      "name": "<string>",
      "organisations": {
        "items": [
          {
            "id": 123,
            "name": "<string>"
          }
        ]
      },
      "steps": {
        "items": [
          {
            "id": 123,
            "name": "<string>",
            "status": "START"
          }
        ]
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

HTTP Basic Authentication with API credentials

Query Parameters

organisation_id
integer

Filter by organisation ID

step_status
enum<string>

Filter by step status

Available options:
START,
CURRENT,
END
step_name
string

Filter by step name

Response

List of processes

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