SDK Apps > Webhooks
Authorize the API call with your API token in the Authorization header with the value: Token your-api-token.
If you don't have an API token yet, please refer to the "Authentication" section to learn how to create one.
Successful response
GET /api/v2/sdk/apps/{SDK_appName}/webhooks HTTP/1.1
Host: eu1.make.com
Authorization: YOUR_API_KEY
Accept: */*
Successful response
{
"appWebhooks": [
{
"name": "postman-test-app-6-1",
"label": "Test Connection",
"type": "web",
"parameters": {},
"app_version": 1
},
{
"name": "aaaa",
"label": "Test Connection",
"type": "web",
"parameters": {},
"app_version": 1
},
{
"name": "postman-test-app-6-12",
"label": "Test Connection",
"type": "web",
"parameters": {},
"app_version": 1
},
{
"name": "postman-test-app-6-13",
"label": "Test Connection",
"type": "web",
"parameters": {},
"app_version": 1
}
]
}Authorize the API call with your API token in the Authorization header with the value: Token your-api-token.
If you don't have an API token yet, please refer to the "Authentication" section to learn how to create one.
application/jsonSuccessful response
POST /api/v2/sdk/apps/{SDK_appName}/webhooks HTTP/1.1
Host: eu1.make.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 66
{
"type": "web",
"label": "Watch Events",
"connection": "my-connection"
}Successful response
{
"appWebhook": {
"name": "my-app-1",
"label": "Watch Events",
"type": "web"
}
}Authorize the API call with your API token in the Authorization header with the value: Token your-api-token.
If you don't have an API token yet, please refer to the "Authentication" section to learn how to create one.
Successful response
GET /api/v2/sdk/apps/webhooks/{SDK_webhookName} HTTP/1.1
Host: eu1.make.com
Authorization: YOUR_API_KEY
Accept: */*
Successful response
{
"appWebhook": {
"appName": "custom-app",
"appVersion": 1,
"name": "custom-app-12",
"label": "Watch Events",
"type": "web",
"connection": "custom-app-1",
"altConnection": null,
"api": {},
"parameters": {},
"attach": {},
"detach": {},
"update": {},
"scope": {},
"changes": {},
"aliasTo": null,
"endpoint": "https://hook.integromat.com/app/custom-app-12/...",
"shieldEndpoint": "https://shield.integromat.com/app/custom-app-12/..."
}
}Authorize the API call with your API token in the Authorization header with the value: Token your-api-token.
If you don't have an API token yet, please refer to the "Authentication" section to learn how to create one.
Successful response
DELETE /api/v2/sdk/apps/webhooks/{SDK_webhookName} HTTP/1.1
Host: eu1.make.com
Authorization: YOUR_API_KEY
Accept: */*
Successful response
{
"appWebhook": "custom-app-12"
}Authorize the API call with your API token in the Authorization header with the value: Token your-api-token.
If you don't have an API token yet, please refer to the "Authentication" section to learn how to create one.
application/jsonSuccessful response
PATCH /api/v2/sdk/apps/webhooks/{SDK_webhookName} HTTP/1.1
Host: eu1.make.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 74
{
"label": "Test Renamed",
"connection": "my-connection",
"altConnection": null
}Successful response
{
"appWebhook": {
"name": "charlie-1",
"label": "Test Renamed",
"type": "web",
"connection": null,
"altConnection": null
}
}Authorize the API call with your API token in the Authorization header with the value: Token your-api-token.
If you don't have an API token yet, please refer to the "Authentication" section to learn how to create one.
Successful response
GET /api/v2/sdk/apps/webhooks/{SDK_webhookName}/{SDK_webhookSection} HTTP/1.1
Host: eu1.make.com
Authorization: YOUR_API_KEY
Accept: */*
Successful response
{
"output": "{{body}}"
}Authorize the API call with your API token in the Authorization header with the value: Token your-api-token.
If you don't have an API token yet, please refer to the "Authentication" section to learn how to create one.
application/jsoncSuccessful response
PUT /api/v2/sdk/apps/webhooks/{SDK_webhookName}/{SDK_webhookSection} HTTP/1.1
Host: eu1.make.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 33
{
"output": "{{body}}",
"test": true
}Successful response
{
"change": {}
}Last updated

