You can get a list of all applications for your HelpCrunch account. Application can be a Website Widgets, an Android app or an iOS app.
➡️ Request
URL | https://api.helpcrunch.com/v1/applications |
Method | GET |
Headers | Authorization: Bearer <your_api_key> |
Read more about authorization header here.
✅ Successful Response
If your request has succeeded, you'll get a 200 OK success status code together with the following response body.
{
"data": [
{
"id": 78,
"name": "Demo iOS App",
"active": true,
"type": "ios"
},
{
"id": 7067,
"name": "Demo Web App",
"active": false,
"type": "web"
},
{
"id": 2543,
"name": "Demo Android App",
"active": true,
"type": "android"
}
]
}
You can get details on every Application Object field in the Application model article.
🛑 Error Responses
You may get one of the following error status codes and responses. More info on the errors is available here.
401 Unauthorized
{
"errors": [
{
"code": "invalid_token",
"message": "Invalid token"
}
]
}
429 Too Many Requests
{
"errors": [
{
"code": "too_many_requests",
"message": "You have exceeded your requests limit"
}
]
}
If you have any questions regarding the REST API, feel free to chat us any time.
👩💻 Happy Coding! 👨💻