webhooks
getConfigs
Search Webhook Client Configs
get/v1/webhooks/configs
Query parameters
eventNamestring
Filter configurations by event Name
Response
Success - configs loaded with success. Empty array if org has configs.
Example response
[
{
"eventName": "CustomerRequest_Created",
"url": "https://my-partner-service.api.com",
"httpMethod": "POST",
"enabled": true,
"auth": {
"authType": "BASIC",
"basicAuthConfig": {
"username": "secretUsername",
"password": "secret7825@!"
}
},
"filter": {
"keyToFilter": "customer_request.productId",
"supportedValues": [
"2324245",
"5253642"
]
}
}
]