WebhookCallResponseDto
DTO representing a webhook call attempt and its details.
companyNamestringnullable
The name of the company.
tenantIdstringrequired
The unique identifier of the tenant.
correlationIduuidrequired
The correlation ID associated with the webhook call.
webhookIduuidrequired
The unique identifier of the webhook.
webhookRequestIduuidrequired
The unique identifier of the webhook request.
webhookUrlstringrequired
The URL of the webhook.
eventTypestringrequired
The type of event that triggered the webhook.
calledAtdate-timerequired
The timestamp when the webhook was called.
attemptNumberint32
The attempt number of the webhook call.
responseTimeMillisecondsint32
The response time of the webhook call in milliseconds.
httpResponseStatusCodeint32nullable
The HTTP response status code returned by the webhook.
errorMessagestringnullable
The error message returned by the webhook, if any.
isSuccessboolean
Indicates whether the webhook call was successful.
WebhookCallResponseDto
{
"companyName": "string",
"tenantId": "string",
"correlationId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"webhookId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"webhookRequestId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"webhookUrl": "string",
"eventType": "string",
"calledAt": "2024-07-29T15:51:28.071Z",
"attemptNumber": 0,
"responseTimeMilliseconds": 0,
"httpResponseStatusCode": 0,
"errorMessage": "string",
"isSuccess": true
}