Class CreateFacebookChannelResult
The configuration for a Facebook channel.
Inherited Members
Namespace: Oci.OdaService.Models
Assembly: OCI.DotNetSDK.Oda.dll
Syntax
public class CreateFacebookChannelResult : CreateChannelResult
Properties
BotId
Declaration
[JsonProperty(PropertyName = "botId")]
public string BotId { get; set; }
Property Value
Type | Description |
---|---|
string | The ID of the Skill or Digital Assistant that the Channel is routed to. |
VerifyToken
Declaration
[Required(ErrorMessage = "VerifyToken is required.")]
[JsonProperty(PropertyName = "verifyToken")]
public string VerifyToken { get; set; }
Property Value
Type | Description |
---|---|
string | The Facebook verify token. This is used by Facebook when verifying the webhook channel. This is only returned this once. If it is lost the keys will need to be rotated to generate a new verify token. |
Remarks
Required
WebhookUrl
Declaration
[Required(ErrorMessage = "WebhookUrl is required.")]
[JsonProperty(PropertyName = "webhookUrl")]
public string WebhookUrl { get; set; }
Property Value
Type | Description |
---|---|
string | The URL to use to send messages to this channel. This will be generally be used to configure a webhook in a 3rd party messaging system to send messages to this channel. |
Remarks
Required