Get a list of all webhook subscriptions
GET
/subscriptionsLast modified: 23 days ago
Request
Header Params
X-Integration-Name
string
required
Integration name
Example:
API Documentation
X-Integration-Provider
string
required
Integration provider
Example:
cobra GmbH
X-Cobra-TenantId
string
required
Tenant ID
Example:
12e39e53-ece1-4d8d-8958-e782de1dbef0
X-Integration-Contact
string
optional
Integration contact
Example:
info@cobra.de
Request samples
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
No schema defined
Example
{
"data": [
{
"id": "7c7d719f-3cb6-41b0-8531-534f5f8c6365",
"dateCreate": "2024-10-09T07:00:39.0619111+00:00",
"dateModified": "2024-10-09T07:00:39.0625181+00:00",
"caption": "Event created",
"webhookId": "80f48afa-4927-43de-9d0d-24cf4aba53cf",
"method": "POST",
"url": "https://www.mytesturl.de",
"errorEmail": "error@cobra.de",
"payload": "{\"firstName\": \"John\",\"lastName\": \"doe\",\"EventNumber\": \"<EventNumber>\"}",
"headers": {
"MyHeader1": "HeaderValue1",
"MyHeader2": "HeaderValue2"
}
},
{
"id": "9c3d9800-53cf-4cff-9178-326447e1f72b",
"dateCreate": "2024-10-09T07:00:39.0625701+00:00",
"dateModified": "2024-10-09T07:00:39.0625705+00:00",
"caption": "Person created",
"webhookId": "c029543e-1321-4e40-9172-9e76bbd296e8",
"method": "GET",
"url": "https://www.mytesturl2.de",
"errorEmail": "error@cobra.de",
"payload": "{\"firstName\": \"John\",\"lastName\": \"doe\",\"EventNumber\": \"<Lastname>\"}",
"headers": {
"MyHeader1": "HeaderValue1",
"MyHeader2": "HeaderValue2"
}
}
],
"message": "",
"metaData": null,
"statusCode": 200
}
Last modified: 23 days ago