Skip to main content
GET
/
process
/
{processid}
Get process by ID
curl --request GET \
  --url https://jobaffinity.fr/restapi/v1/process/{processid} \
  --header 'Authorization: Basic <encoded-value>'
{
  "_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

Path Parameters

processid
integer
required

Process ID

Response

Process details

_self
string<uri>

URL of the resource

_schema
string<uri>

URL to the schema

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

Process identifier

name
string

Process name

organisations
object
steps
object