Class WebhookRequest
Represents a pending webhook request that needs to be sent.
Inheritance
object
Namespace: Umbraco.Cms.Core.Models
Assembly: Umbraco.Core.dll
Syntax
public class WebhookRequest
Constructors
View SourceWebhookRequest()
Declaration
public WebhookRequest()
Properties
View SourceEventAlias
Gets or sets the alias of the event that triggered this webhook request.
Declaration
public string EventAlias { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Id
Gets or sets the unique identifier of the request.
Declaration
public int Id { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
RequestObject
Gets or sets the serialized request payload to send.
Declaration
public string? RequestObject { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
RetryCount
Gets or sets the number of retry attempts made for this request.
Declaration
public int RetryCount { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
WebhookKey
Gets or sets the unique key of the webhook this request belongs to.
Declaration
public Guid WebhookKey { get; set; }
Property Value
| Type | Description |
|---|---|
| Guid |