Template examples for generic outbound webhooks
These are some examples you can use with other services to power up your generic outbound webhooks. Copy and paste these into your own Cydarm instance, making sure to replace any generic templates with your own information.
Microsoft Teams - notification of new case
URL format
https://xxxxx.webhook.office.com/xxxxxxxxx
Payload format
{ "text": "New case added: - " }
Mattermost notification - notification of new case
URL format
https://orgname.cloud.mattermost.com/hooks/hook-secret
Payload format
{ "text": "New case added: - " }
Google Chat - notification of new case
URL format
https://chat.googleapis.com/v1/spaces/xxxxxxxxxxxx/messages?key=xxx&token=xxx
Payload format
{ "text": "New case added: - " }
Discord notification - notification of new case
URL format
https://discord.com/api/webhooks/xxxxx/xxxxxxxxxxxxxxx
Payload format
{ "routing_key": "", "event_action": "trigger", "payload": { "summary": "New case added: - ", "source": "Cydarm", "severity": "info" } }
PagerDuty - notification of new case
URL format
https://events.pagerduty.com/v2/enqueue
Payload format
{ "routing_key": "", "event_action": "trigger", "payload": { "summary": "New case added: - ", "source": "Cydarm", "severity": "info" } }
Tines - kicking off an automation
URL format
https://xxxx-xxxx-xxxx.tines.com/webhook/xxxxxxxxxx/xxxxxxxxxx
Payload format
{
"case_acl_uuid": "",
"case_description": "",
"case_locator": "",
"case_member_uuids": "",
"case_severity_name": "",
"case_status_name": "",
"case_tag_values": "",
"case_uuid": "",
"case_data_acl_uuid": "",
"case_data_created_datetime": "",
"case_data_data_stub_uuid": "",
"case_data_encryption_key": "",
"case_data_file_last_mod_datetime": "",
"case_data_file_name": "",
"case_data_is_hidden": "",
"case_data_mime_type": "",
"case_data_significance": "",
"case_data_uuid": "",
"case_data_creator_acl_uuid": "",
"case_data_creator_email": "",
"case_data_creator_family_name": "",
"case_data_creator_given_name": "",
"case_data_creator_is_deleted": "",
"case_data_creator_is_human": "",
"case_data_creator_org_uuid": "",
"case_data_creator_phone": "",
"case_data_creator_username": "",
"case_data_creator_uuid": "",
"case_data_stub_acl_uuid": "",
"case_data_stub_case_uuid": "",
"case_data_stub_created_datetime": "",
"case_data_stub_creator_uuid": "",
"case_data_stub_data_location": "",
"case_data_stub_data_location_type": "",
"case_data_stub_data_size": "",
"case_data_stub_data_source": "",
"case_data_stub_editor_uuid": "",
"case_data_stub_file_name": "",
"case_data_stub_is_audit": "",
"case_data_stub_is_deleted": "",
"case_data_stub_is_edited": "",
"case_data_stub_is_hidden": "",
"case_data_stub_last_modified_datetime": "",
"case_data_stub_location": "",
"case_data_stub_mime_type": "",
"case_data_stub_parent_uuid": "",
"case_data_stub_significance": "",
"case_data_stub_uuid": "",
"case_data_stub_version": ""
}
Zapier - kicking off an automation
URL format
https://hooks.zapier.com/hooks/catch/xxxxxxxxx/xxxxxxxxx/
Payload format
{
"case_acl_uuid": "",
"case_description": "",
"case_locator": "",
"case_member_uuids": "",
"case_severity_name": "",
"case_status_name": "",
"case_tag_values": "",
"case_uuid": "",
"case_data_acl_uuid": "",
"case_data_created_datetime": "",
"case_data_data_stub_uuid": "",
"case_data_encryption_key": "",
"case_data_file_last_mod_datetime": "",
"case_data_file_name": "",
"case_data_is_hidden": "",
"case_data_mime_type": "",
"case_data_significance": "",
"case_data_uuid": "",
"case_data_creator_acl_uuid": "",
"case_data_creator_email": "",
"case_data_creator_family_name": "",
"case_data_creator_given_name": "",
"case_data_creator_is_deleted": "",
"case_data_creator_is_human": "",
"case_data_creator_org_uuid": "",
"case_data_creator_phone": "",
"case_data_creator_username": "",
"case_data_creator_uuid": "",
"case_data_stub_acl_uuid": "",
"case_data_stub_case_uuid": "",
"case_data_stub_created_datetime": "",
"case_data_stub_creator_uuid": "",
"case_data_stub_data_location": "",
"case_data_stub_data_location_type": "",
"case_data_stub_data_size": "",
"case_data_stub_data_source": "",
"case_data_stub_editor_uuid": "",
"case_data_stub_file_name": "",
"case_data_stub_is_audit": "",
"case_data_stub_is_deleted": "",
"case_data_stub_is_edited": "",
"case_data_stub_is_hidden": "",
"case_data_stub_last_modified_datetime": "",
"case_data_stub_location": "",
"case_data_stub_mime_type": "",
"case_data_stub_parent_uuid": "",
"case_data_stub_significance": "",
"case_data_stub_uuid": "",
"case_data_stub_version": ""
}
Related articles
Cydarm API documentation
Cydarm API examples