get webhook config
GET
/api/v1/notification/webhook/{type}Controller:
github.com/raghavyuva/nixopus-api/internal/features/notification/controller.(*NotificationController).GetWebhookConfig
Middlewares:
github.com/go-fuego/fuego.defaultLogger.middleware
github.com/raghavyuva/nixopus-api/internal.(*Router).Routes.func1
github.com/raghavyuva/nixopus-api/internal.(*Router).Routes.func2
github.com/raghavyuva/nixopus-api/internal.(*Router).Routes.func6
Parameters
Header Parameters
Accept
Typestring
Path Parameters
type*
Typestring
RequiredResponses
OK
JSON
{
"data": null,
"error": "string",
"message": "string",
"status": "string"
}
Samples
cURL
curl -X GET http://localhost:8080/api/v1/api/v1/notification/webhook/{type}
JavaScript
fetch("http://localhost:8080/api/v1/api/v1/notification/webhook/{type}")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("http://localhost:8080/api/v1/api/v1/notification/webhook/{type}");
Python
import requests
response = requests.get("http://localhost:8080/api/v1/api/v1/notification/webhook/{type}")
print(response.json())