Skip to main content
Version: 1.0.0

Get webhook

Information

This API allow you to get one webhook by id.

Link to swagger
This endpoint is synchronous
The role admin is needed in order to use this endpoint
Endpoints

GET/v1/config/webhook/:webhookId

Path parameters
webhookIdstring (uuid) - Required

Request

200 OK

{
"webhookId": "My webhook configuration with client credentials auth",
"label": "My webhook configuration with client credentials auth",
"adapterCode": "standardAdapter",
"interopData": {
"endpoints": {
"status": {
"callbackUrl": "https://myenpoint.com/status"
},
"invoice": {
"callbackUrl": "https://myenpoint.com/invoice"
},
"authentication": {
"oauth2ClientCredentials": {
"callbackUrl": "https://myauthorizationServer.com/auth",
"clientId": "myClientId",
"clientSecret": "myClientSecret"
}
}
}
}
}