# resend webhook

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /webhook/resend/APIKEY:
    get:
      summary: resend webhook
      deprecated: false
      description: >-
        ### Retrieve Webhook Resend Response


        This API endpoint is used to resend all pending messages to the webhook.


        #### Response


        The response for this request is a JSON object with the following
        schema:


        ``` json

        {
            "pending": integer,
            "apiKey": string,
            "message": string,
            "url": string
        }

         ```

        - `pending`: (integer) The count of pending messages.

        - `apiKey`: (string) The API key of your service.

        - `message`: (string) A message, A description of how many messages were
        resent.
            
        - `url`: (string) The URL associated with the webhook.
      tags:
        - Webhook
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  pending:
                    type: integer
                  apiKey:
                    type: string
                  message:
                    type: string
                  url:
                    type: string
                required:
                  - pending
                  - apiKey
                  - message
                  - url
                x-apidog-orders:
                  - pending
                  - apiKey
                  - message
                  - url
              example:
                pending: 4
                apiKey: APIKEY
                message: >-
                  Resend 4 messages to
                  https://webhook.site/6a61d7c8-43bf-4e5b-b554-9aa727f9a00e
                url: https://webhook.site/6a61d7c8-43bf-4e5b-b554-9aa727f9a00e
          headers: {}
          x-apidog-name: resend webhook
      security: []
      x-apidog-folder: Webhook
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/545232/apis/api-7458068-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://api.whatsiplus.com
    description: WhatsApp API - WhatsiPlus Documentation
security: []

```
