curl --request GET \
--url https://api.mixpeek.com/v1/organizations/webhooks/{identifier}
{
"webhook_id": "<string>",
"webhook_name": "<string>",
"event_types": [
"object.created"
],
"channels": [
{
"channel": "email",
"configs": {
"to_addresses": [
"<string>"
],
"subject_template": "<string>",
"body_template": "<string>",
"content_type": "html",
"cc_addresses": [
"<string>"
],
"bcc_addresses": [
"<string>"
]
}
}
],
"is_active": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
Get a single webhook by its ID.
curl --request GET \
--url https://api.mixpeek.com/v1/organizations/webhooks/{identifier}
{
"webhook_id": "<string>",
"webhook_name": "<string>",
"event_types": [
"object.created"
],
"channels": [
{
"channel": "email",
"configs": {
"to_addresses": [
"<string>"
],
"subject_template": "<string>",
"body_template": "<string>",
"content_type": "html",
"cc_addresses": [
"<string>"
],
"bcc_addresses": [
"<string>"
]
}
}
],
"is_active": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
Bearer token authentication using your API key. Format: 'Bearer your_api_key'. To get an API key, create an account at mixpeek.com/start and generate a key in your account settings. Example: 'Bearer sk_1234567890abcdef'
Successful Response
Represents a configured webhook for an organization.
Was this page helpful?