My Company
Use the installed application query to test your unique token that you received from Attentive. Make sure to save your token because all API requests are authenticated using bearer tokens. The response should include information specific to your company.
Example Query
POST https://api-devel.attentivemobile.com/v1/graphql
query {
viewer {
installedApplication {
installerCompany {
id
name
}
}
}
}
Example Response
{
"data": {
"viewer": {
"installedApplication": {
"installerCompany": {
"id": "someCompanyId",
"name": "Company Name"
}
}
}
},
"extensions": {
"traceId": "659137016"
}
}