
Now you can integrate Applivery with Slack and start receiving notifications in when the following events take place:
- A new Build has been uploaded.
- A new Feedback report has been received.
- A new Bug report has been received.
- A new Enrollment Token has been created.
- A new Device has been enrolled in your account.
Integrate Applivery in your Slack in your team is quite simple thanks to our Official App and the configuration will take you less than 1 minute. Just follow the next steps:
Getting started #
Slack integration can be enabled at both Workspace and App levels:
- Workspace: messages coming from all the Apps within your organization will be posted to an specific
#channel
or@user
- Apps: messages coming only from the selected App will be posted to an specific
#channel
or@user
Once you have decided which type do you prefer, go to your Apps (from the left side menu) and select one of your Apps or go the your Workspace Settings (from the top dropdown menu).
Then go to the Integrations and click “+ Create Integration” button and then click the “Webhook” option.

Type the URL that you want to receive the webhooks and select the events you want to receive from the list below. Then click “Save” to finish.
Manage webhook integrations #
You will be automatically redirected to your App or Organization Integrations section where the new Webhook integration should be listed, including all the details you have selected:
- Type: Webhook
- Configuration:
URL
to be notified - Events: list of events that will be notified

Update Webhook integration settings #
You can edit your current Slack Integrations at any time by going to the Integrations section of your Organization or App and then clicking one of your existing Webhook Integrations. A side panel will be opened allowing you to choose which events will be posted and the available events. You will be able to also delete the integration by clicking the “Delete notification” button.

Messages specification #
Depending on the type of event taking place in the Applivery platform, you will receive different notification messages in JSON
. You will be able to differentiate them based on the “action” field that will contain one of the following options:
- build_created: a new Build has been uploaded and queued but has not been processed yet.
- build_processed: a new
- build has been processed and is ready to install
- bug_created: a new Bug Report has been created
- feedback_created: a new Feedback Report has been created
- enrollment_token_created: a new MDM enrollment token has been created
- emm_device_created: a new MDM device has been successfully enrolled
You can check some examples below:
{
"action": "build_created",
"organization": {
"id": "5d4d1391cd523c15f50df235",
"name": "Applivery Test",
"url": "https://dashboard.applivery.io/test"
},
"application": {
"id": "5e790ce04faa50cac52e4676",
"name": "Awesome App",
"url": "https://dashboard.applivery.io/test/apps/awesome-app"
},
"build": {
"id": "5e79232e98d88ac68cf7d4bc",
"url": "https://dashboard.applivery.io/test/apps/awesome-app/builds?id=5e79232e98d88ac68cf7d4bc"
}
}
{
"action": "build_processed",
"organization": {
"id": "5d4d1391cd523c15f50df235",
"name": "Applivery Test",
"url": "https://dashboard.applivery.io/test"
},
"application": {
"id": "5e790ce04faa50cac52e4676",
"name": "Awesome App",
"url": "https://dashboard.applivery.io/test/apps/awesome-app"
},
"build": {
"id": "5e79232e98d88ac68cf7d4bc",
"os": "android",
"versionName": "",
"url": "https://dashboard.applivery.io/test/apps/awesome-app/builds?id=5e79232e98d88ac68cf7d4bc"
}
}
{
"action": "bug_created",
"organization": {
"id": "5c9921fbb9f3bb001cc5c9a9",
"name": "Applivery Dev",
"url": "https://dashboard.applivery.io/test"
},
"application": {
"id": "5cd19870cdecf8001bef50b7",
"name": "Awesome App",
"url": "https://dashboard.applivery.io/test/apps/awesome-app"
},
"report": {
"message": "This is a Bug message that will be included in the Report along with the technical information of the device",
"url": "https://dashboard.applivery.io/test/apps/awesome-app/reports?id=5e7923a976b4b0e9aa4aa6a9"
}
}
{
"action": "feedback_created",
"organization": {
"id": "5c9921fbb9f3bb001cc5c9a9",
"name": "Applivery Dev",
"url": "https://dashboard.applivery.io/test"
},
"application": {
"id": "5cd19870cdecf8001bef50b7",
"name": "Awesome App",
"url": "https://dashboard.applivery.io/test/apps/awesome-app"
},
"report": {
"message": "This is a Feedback message that will be included in the Report along with the technical information of the device",
"url": "https://dashboard.applivery.io/test/apps/awesome-app/reports?id=5e7923a976b4b0e9aa4aa6a9"
}
}
{
"action":"enrollment_token_created",
"sendEmail":true,
"enrollmentToken":{
"type":"Fully Managed"
},
"mdmUser":{
"id":{
"id":"5e9099ee4da32b180204770e",
"email":"[email protected]"
},
"email":"[email protected]",
"url":"https://dashboard.applivery.io/test/mdm/users/5e9099ee4da32r180204770e"
},
"organization":{
"id":"5d4d1391cd523c15f50df235",
"name":"Applivery Test",
"url":"https://dashboard.applivery.io/test"
}
}
{
"action":"emm_device_created",
"organization":{
"id":"5d4d1391cd523c15f50df235",
"name":"Applivery Test",
"url":"https://dashboard.applivery.io/test"
},
"emmDevice":{
"type":"Fully Managed",
"url":"https://dashboard.applivery.io/test/mdm/users/5e9099ee4da32b180204770e?id=5f634c11034824062256e38c"
},
"mdmUser":{
"id":"5e9099ee4da32b180204770e",
"email":"[email protected]",
"url":"https://dashboard.applivery.io/test/mdm/users/5e9099ee4da32b180204770e"
}
}
{
"action":"adm_device_created",
"organization":{
"id":"5d4d1391cd523c15f50df235",
"name":"Applivery Test",
"url":"https://dashboard.applivery.io/test"
},
"admDevice":{
"type":"Fully Managed",
"url":"https://dashboard.applivery.io/test/mdm/users/5e9099ee4da32b180204770e?id=5f634c11034824062256e38c"
},
"mdmUser":{
"id":"5e9099ee4da32b180204770e",
"email":"[email protected]",
"url":"https://dashboard.applivery.io/test/mdm/users/5e9099ee4da32b180204770e"
}
}