List webhook configurations
Retrieves a list of all configured webhooks for the Tenant, including detailed information about each webhook and its subscribed events.
Retrieves a list of all configured webhooks for the Tenant, including detailed information about each webhook and its subscribed events.
Authorization
M2MBearerToken AuthorizationBearer <token>
M2M Token for authentication
In: header
Response Body
application/json
application/json
application/json
application/json
curl -X GET "https://api.loginradius.com/v2/manage/webhooks"{
"Data": [
{
"Id": "wh_001",
"TargetUrl": "https://example.com/webhook",
"Event": "Login",
"CreatedDate": "2025-04-08T12:00:00Z",
"LastModifiedDate": "2025-04-08T12:30:00Z",
"SecretName": "webhook-secret",
"Name": "TestSecret",
"IsIntegrationWebhook": true,
"Headers": {
"X-Custom-Header": "CustomValue",
"Authorization": "Bearer abc123"
},
"QueryParams": {
"token": "xyz987",
"mode": "sync"
},
"Authentication": {
"AuthType": "Basic",
"BasicAuth": {
"Username": "admin",
"Password": "password123"
},
"BearerToken": {
"Token": "1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
}
}
}
]
}{
"Message": "Access Unauthorized",
"Description": "Access Unauthorized, please use valid authorization to access this endpoint.",
"ErrorCode": 6002
}{
"Message": "WebHook configuration not found",
"Description": "WebHook configuration not found or the resource does not exist.",
"ErrorCode": 7986
}{
"Message": "Operation failed due to an internal error.",
"Description": "An unknown internal error occurred, please try again in a few minutes or contact your system administrator.",
"ErrorCode": 7909
}Update Permission PUT
Updates a specific Permission. Note: The Name field cannot be modified for non-B2B apps. If a different Name value is provided, the API will return an error.
Create webhook configuration POST
Creates a new webhook configuration for the Tenant, allowing registration of a webhook with details such as the Target URL and subscribed events.