> ## Documentation Index
> Fetch the complete documentation index at: https://api.jobaffinity.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get process by ID

> Returns details of a specific recruitment process



## OpenAPI

````yaml /api-reference/openapi.json get /process/{processid}
openapi: 3.0.3
info:
  title: JobAffinity REST API
  version: '1.12'
  description: >
    JobAffinity REST API for managing jobs, candidates, applications, and
    recruitment processes.


    ## Authentication

    All endpoints require HTTP Basic Authentication.


    ## Versioning

    Current version: 1.12


    See `/restapi/changelog` for version history and changes.
  contact:
    name: JobAffinity API Support
servers:
  - url: https://jobaffinity.fr/restapi/v1
    description: REST API v1
  - url: https://jobaffinity.fr/restapi
    description: REST API root (for changelog)
security:
  - basicAuth: []
tags:
  - name: API Info
    description: API metadata and changelog
  - name: Jobs
    description: Job listings and details
  - name: Candidates
    description: Candidate information
  - name: Applications
    description: Job applications
  - name: Processes
    description: Recruitment processes and steps
  - name: Notes
    description: Candidate notes
  - name: Questionnaires
    description: Questionnaire answers
  - name: Webhooks
    description: Webhook tasks
  - name: Job Application Submission
    description: >-
      Submit candidate applications to a job posting via the apply URL provided
      in the job feed. The authentication token is embedded in the URL — no
      additional credentials are required.
paths:
  /process/{processid}:
    get:
      tags:
        - Processes
      summary: Get process by ID
      description: Returns details of a specific recruitment process
      operationId: getProcess
      parameters:
        - name: processid
          in: path
          required: true
          description: Process ID
          schema:
            type: integer
      responses:
        '200':
          description: Process details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Process'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '404':
          $ref: '#/components/responses/NotFoundError'
components:
  schemas:
    Process:
      type: object
      properties:
        _self:
          type: string
          format: uri
          description: URL of the resource
        _schema:
          type: string
          format: uri
          description: URL to the schema
        _status:
          type: string
          enum:
            - OK
            - INVALID
        id:
          type: integer
          description: Process identifier
        name:
          type: string
          description: Process name
        organisations:
          type: object
          properties:
            items:
              type: array
              items:
                $ref: '#/components/schemas/Organisation'
        steps:
          type: object
          properties:
            items:
              type: array
              items:
                $ref: '#/components/schemas/ProcessStep'
    Organisation:
      type: object
      properties:
        id:
          type: integer
          description: Organisation identifier
        name:
          type: string
          description: Name of the organisation
    ProcessStep:
      type: object
      properties:
        id:
          type: integer
          description: Step identifier
        name:
          type: string
          description: Step name
        status:
          type: string
          enum:
            - START
            - CURRENT
            - END
          description: Step status in the process
  responses:
    UnauthorizedError:
      description: Authentication information is missing or invalid
      headers:
        WWW-Authenticate:
          schema:
            type: string
    NotFoundError:
      description: The specified resource was not found
      content:
        application/json:
          schema:
            type: object
            properties:
              _status:
                type: string
                enum:
                  - INVALID
              error:
                type: string
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: HTTP Basic Authentication with API credentials

````