Overview

Call this endpoint as a GET request to retry processing of failed webhook events using the URL that is provided below.

Endpoint

Method URL
GET https://api.everlytic.net/transactional/email/v1/webhooks/failed/reprocess

Properties

200 OK

Property

Description

Parameters

status

The success state of the delete request

  • true

401 Unauthorized

Property

Description

Data Type

Expected Parameters

code

The HTTP response status code

integer
  • 401
  • 400

message

The reason for the failure

string

Valid string

error

Array containing errors field

JSON

  • errors

errors

Array containing the failure details

JSON

  • domain
  • reason
  • message
  • locationType
  • location

domain

The classification of the type of error

string

  •    global

reason

Keyword used to describe the error

string

  •    required

message

Text describing the reason for the failure

string

Valid string

locationType

The location where the failure occurred

string

  •    request

location

The type of validation that failed

string

  • authorization
  • default

Requests

Example Request
curl --location 'https://api.everlytic.net/transactional/email/v1/webhooks/failed/reprocess'

Responses

Status Code Explanation
200 OK Failed webhooks were successfully queued for re-processing
401 Unauthorized The provided authorization credentials are incorrect

200 OK

{
"status": true
}

401 Unauthorized

{
"code": 401,
"message": "Login Required",
"error": {
"errors": [
{
"domain": "global",
"reason": "required",
"message": "Login Required",
"locationType": "request",
"location": "authorization"
}
]
}
}