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

# Retentar uma entrega

> Reenfileira manualmente uma entrega com status `FAILED` ou `RETRYING`. Somente entregas nesses status podem ser reprocessadas. O status volta para `PENDING` e uma nova tentativa é agendada imediatamente.



## OpenAPI

````yaml https://api.jurichat.com/docs/client/openapi.json post /webhooks/deliveries/{deliveryId}/retry
openapi: 3.1.0
info:
  title: JuriChat API — Documentação para Integradores
  description: ''
  version: 1.0.0
servers:
  - url: https://api.jurichat.com
    description: Production server
security:
  - apiKeyAuth: []
tags: []
paths:
  /webhooks/deliveries/{deliveryId}/retry:
    post:
      tags:
        - Webhooks
      summary: Retentar uma entrega
      description: >-
        Reenfileira manualmente uma entrega com status `FAILED` ou `RETRYING`.
        Somente entregas nesses status podem ser reprocessadas. O status volta
        para `PENDING` e uma nova tentativa é agendada imediatamente.
      parameters:
        - schema:
            type: string
          in: path
          name: deliveryId
          required: true
          description: ID único da tentativa de entrega a ser retentada.
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  deliveryId:
                    type: string
                    description: ID da tentativa de entrega que foi reenfileirada.
                  message:
                    type: string
                    description: Mensagem de confirmação.
                required:
                  - deliveryId
                  - message
                additionalProperties: false
        '400':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                  statusCode:
                    type: number
                  details: {}
                required:
                  - message
                  - statusCode
                additionalProperties: false
        '404':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                  statusCode:
                    type: number
                  details: {}
                required:
                  - message
                  - statusCode
                additionalProperties: false
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-jurichat-api-key
      description: >-
        Chave de API do escritório (criada no painel). Envie o valor no header
        x-jurichat-api-key.

````