> ## 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.

# Acknowledge a Greenhouse response-processing error



## OpenAPI

````yaml /specs/openapi/greenhouse-v1.openapi.yaml post /api/apps/greenhouse/v1/assessment/response_error
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/response_error:
    post:
      summary: Acknowledge a Greenhouse response-processing error
      operationId: reportGreenhouseAssessmentResponseError
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GreenhouseResponseError'
            example:
              error: invalid_response
      responses:
        '200':
          description: Error notification acknowledged.
          content:
            text/plain:
              schema:
                type: string
              example: OK
        '400':
          description: Request body is not a valid JSON object.
          content:
            text/plain:
              schema:
                type: string
              example: Request body must be a JSON object
        '401':
          description: Invalid assessment API key.
        '413':
          description: Request exceeds one MiB.
          content:
            text/plain:
              schema:
                type: string
              example: Request body is too large
        '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
      security:
        - GreenhouseAssessmentBasic: []
components:
  schemas:
    GreenhouseResponseError:
      type: object
      properties:
        error:
          type: string
          maxLength: 64
        code:
          type: string
          maxLength: 64
      anyOf:
        - required:
            - error
        - required:
            - code
      additionalProperties: true
  securitySchemes:
    GreenhouseAssessmentBasic:
      type: http
      scheme: basic
      description: >-
        Installation-specific Greenhouse assessment API key via HTTP Basic
        authentication.

````