Table of Contents

Class CallbackStatus

Namespace
Meraki.Api.Data
Assembly
Meraki.Api.dll

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

string

CreatedBy

Information around who initiated the callback

[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "createdBy")]
public CallbackStatusCreatedBy CreatedBy { get; set; }

Property Value

CallbackStatusCreatedBy

Errors

The errors returned by the callback

[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "errors")]
public List<string> Errors { get; set; }

Property Value

List<string>

Status

The status of the callback

[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "status")]
public string Status { get; set; }

Property Value

string

Webhook

The webhook receiver used by the callback to send results

[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "webhook")]
public CallbackStatusWebhook? Webhook { get; set; }

Property Value

CallbackStatusWebhook