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.
truetrue1Successful response
GET /api/v2/sdk/apps/{SDK_appName}/webhooks HTTP/1.1
Host: eu1.make.com
Authorization: YOUR_API_KEY
Accept: */*
Successful response
{
"webhooks": [
{
"name": "postman-test-app-6-1",
"label": "Test Connection",
"type": "web"
},
{
"name": "aaaa",
"label": "Test Connection",
"type": "web"
},
{
"name": "postman-test-app-6-12",
"label": "Test Connection",
"type": "web"
},
{
"name": "postman-test-app-6-13",
"label": "Test Connection",
"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.
truetrue1application/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: 37
{
"type": "web",
"label": "Watch Events"
}Successful response
{
"appWebhook": {
"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.
truetrue1Successful response
GET /api/v2/sdk/apps/webhooks/{SDK_webhookName} HTTP/1.1
Host: eu1.make.com
Authorization: YOUR_API_KEY
Accept: */*
Successful response
{
"appWebhook": {
"name": "custom-app-12",
"label": "Watch Events",
"type": "web",
"connection": "custom-app-1",
"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.
truetrue1Successful 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.
truetrue1application/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: 24
{
"label": "Test Renamed"
}Successful response
{
"appWebhook": {
"name": "charlie-1",
"label": "Test Renamed",
"type": "web",
"connection": null,
"altConnection": null
}
}Available sections are: api, parameters, attach, detach, scope
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.
truetrue1Successful 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}}"
}Available sections are: api, parameters, attach, detach, scope
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.
truetrue1application/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

