Developer docsSocial Gateway API reference Postman العربية

Webhooks

Add a subscription under Webhooks: URL, events and authentication. Before activation we send webhook.verification and your endpoint must answer 2xx.

Events

social.connection.updatedConnection or permissions changed
social.connection.expiringConnection is about to expire
social.post.publishedPublished on an account
social.post.partially_publishedPublished on some accounts, failed on others
social.post.failedPublishing failed
social.comment.createdNew comment
social.comment.updatedComment edited or hidden
social.comment.deletedComment deleted
social.comment.repliedReplied through the platform

Envelope

POST /your/endpoint
Content-Type: application/json
X-Webhook-Id: evt_0192f0c4...
X-Webhook-Timestamp: 1790426650
X-Webhook-Signature: sha256=5d41402abc4b2a76b9719d911017c592...
X-Webhook-Version: 1.0
X-Webhook-Event: social.comment.created
X-Correlation-Id: CRM-REQUEST-773

{
  "id": "evt_0192f0c4...",
  "type": "social.comment.created",
  "version": "1.0",
  "occurredAt": "2026-09-26T10:15:02Z",
  "tenantId": "0192...",
  "correlationId": "CRM-REQUEST-773",
  "externalReference": null,
  "data": { "comment": { ... }, "socialAccount": { ... }, "postId": "0192..." }
}

Delivery