Properties
| Name | Type | Description |
|---|---|---|
| company | object | The company account that the webhook is configured for. Only present for company-level webhooks. |
| generateHmac | object | Generate an HMAC key. |
| merchant | object | The merchant account that the webhook is configured for. Only present for merchant-level webhooks. |
| self | object | Link to the resource itself. |
| testWebhook | object | Test the webhook setup. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/WebhookLinks",
"title": "WebhookLinks",
"properties": {
"company": {
"description": "The company account that the webhook is configured for. Only present for company-level webhooks.",
"$ref": "#/components/schemas/LinksElement"
},
"generateHmac": {
"description": "Generate an HMAC key.",
"$ref": "#/components/schemas/LinksElement"
},
"merchant": {
"description": "The merchant account that the webhook is configured for. Only present for merchant-level webhooks.",
"$ref": "#/components/schemas/LinksElement"
},
"self": {
"description": "Link to the resource itself.",
"$ref": "#/components/schemas/LinksElement"
},
"testWebhook": {
"description": "Test the webhook setup.",
"$ref": "#/components/schemas/LinksElement"
}
},
"required": [
"self",
"testWebhook",
"generateHmac"
],
"type": "object"
}