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

# List active Jointl hiring Flows as assessment tests



## OpenAPI

````yaml /specs/openapi/greenhouse-v1.openapi.yaml get /api/apps/greenhouse/v1/assessment/list_tests
openapi: 3.1.2
info:
  title: Jointl Greenhouse Integration API
  version: 1.0.0
  description: >-
    Jointl endpoints used by Greenhouse Recruiting webhooks and the
    assessment-partner integration.
  contact:
    name: Jointl Support
    url: https://join.tl
servers:
  - url: https://api.join.tl
    description: Jointl production API
security: []
externalDocs:
  description: Greenhouse Harvest API documentation for upstream dependencies
  url: https://developers.greenhouse.io/harvest.html
paths:
  /api/apps/greenhouse/v1/assessment/list_tests:
    get:
      summary: List active Jointl hiring Flows as assessment tests
      operationId: listGreenhouseAssessmentTests
      responses:
        '200':
          description: Available tests.
          content:
            application/json:
              schema:
                type: array
                maxItems: 1000
                items:
                  $ref: '#/components/schemas/GreenhouseTest'
              example:
                - partner_test_id: flow_example_01
                  partner_test_name: Example Hiring Flow
        '401':
          description: Invalid assessment API key.
        '429':
          description: Rate limited.
          headers:
            Retry-After:
              schema:
                type: integer
        '500':
          description: The request could not be processed.
          content:
            text/plain:
              schema:
                type: string
              example: Greenhouse request could not be processed
        '503':
          description: The test list is temporarily unavailable.
          content:
            text/plain:
              schema:
                type: string
              example: OK
      security:
        - GreenhouseAssessmentBasic: []
components:
  schemas:
    GreenhouseTest:
      type: object
      properties:
        partner_test_id:
          type: string
        partner_test_name:
          type: string
      required:
        - partner_test_id
        - partner_test_name
      additionalProperties: false
  securitySchemes:
    GreenhouseAssessmentBasic:
      type: http
      scheme: basic
      description: >-
        Installation-specific Greenhouse assessment API key via HTTP Basic
        authentication.

````