Issues webhook
Issues webhooks are triggered when a member of your organization clicks Send to Jira or Send to Slack in the Smartlook player.
Setting up Issues webhooks
To set up an Issues webhook:
POST /api/v1/webhooks
BODY: {
"url": "https://some-url.com",
"type": "issues",
"secret": "some-secret" //optional
}
An example response:
{
"type": "issues.created",
"timestamp": Date,
"project": {
"id": String,
"name": String
},
"organization": {
"id": String,
"name": String
},
"data": {
"author": {
"name": String,
"email": String
},
"visitor": {
"id": String
},
"session": {
"id": String,
"url": String
},
"summary": String,
"text": String,
"time": Number,
"createdAt": Date
}
}
Updated over 1 year ago