Webhook
Setting up the Integration
- To set up your Webhook integration, simply add the link to which Instabug should forward your reports. You can also choose which details get forwarded as well.

- Select the products that you would like to integrate with, whether Bugs & Crashes or APM, and test your integration so that we're sure everything is working smoothly.

- All done! Your integration is now set up and ready to go. From this final page, you can allow automatic forwarding (don't worry though, this can be reconfigured at any time!)

Below, you can find more details about the JSON payload that you will receive.
Crashes' JSON model:
{
"Exception": "String",
"Number": "Number",
"URL": "String",
"Status": "String",
"Email": "",
"Reported At": "String",
"Location": "String",
"Device": "String",
"Memory": "String",
"Storage": "String",
"Connectivity": "string",
"Battery": "string",
"App Version": "string",
"Duration": "number",
"User Data": "String",
"Console Log": "Text",
"Instabug Log": "Text",
"User Steps": "Text",
"User Attributes": {},
"Current View": "String",
"Locale": "en_US",
"Orientation": "landscape",
"Screen Size": "String",
"Density": "string",
"Image Attachments": []
}
Bugs' JSON model:
{
"Title":"String",
"Number":"number",
"URL":"String",
"Status":"String",
"Email":"String",
"Reported At":"Date",
"Location":"String",
"Device":"String",
"Memory":"String",
"Storage":"String",
"Connectivity":"String",
"Battery":"String",
"App Version":"String",
"Duration":"Number",
"User Attributes":{
},
"Current View":"String",
"Tags":"String",
"Image Attachments":[
]
}
APMs' JSON model:
{
"title": "String",
"trace": "String",
"trigger": "String",
"trigger_operator": "String",
"test_value": "Number",
"duration": "String",
"conditions": [
{
"key": "String",
"operator": "String",
"value": "String"
}
],
"current_value": "String",
"metric": "String",
"application": "String",
"platform": "String",
"url": "String"
}
Updated 3 months ago