Class CallbackStatus
The status of an API callback
[DataContract]
public class CallbackStatus
- Inheritance
-
CallbackStatus
- Inherited Members
Properties
CallbackId
The ID of the callback
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "callbackId")]
public string CallbackId { get; set; }
Property Value
CreatedBy
Information around who initiated the callback
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "createdBy")]
public CallbackStatusCreatedBy CreatedBy { get; set; }
Property Value
Errors
The errors returned by the callback
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "errors")]
public List<string> Errors { get; set; }
Property Value
Status
The status of the callback
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "status")]
public string Status { get; set; }
Property Value
Webhook
The webhook receiver used by the callback to send results
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "webhook")]
public CallbackStatusWebhook? Webhook { get; set; }