- IoT Overview
- 1. Getting Started
- 2. Creating an IoT Solution
- 2.1. Model the Device
- 2.2. Create an Instance of the Device from Template
- 2.3. Create Event Source and Threshold Policy for the Device
- 2.4. Create Event Stream for Device
- 2.5. Create Application
- 2.6. Create Event Stream for Application
- 2.7. Subscribe to Events
- 2.8. Configure the Device
- 2.9. Configure the Application
- 2.10. Send Event from Device
- 3. API Documentation
- Back to Learning Center
Create Application
In this IoT solution, create the rental car company’s application that will monitor vehicle health.
POST: CREATE APPLICATION
Create an application inside IoT solution. A unique applicationId for the application is returned.
SAMPLE REQUEST
{
"name": [{
"lang": "en_us",
"text": "Car Health Monitor App"
}],
"description": [{
"lang": "en_us",
"text": "An external partner application to monitor faults in car."
}]
}
SAMPLE RESPONSE
{
"id": "65eb9268-b0d1-4f75-a855-71eac716a351",
"version": "0",
"creation": 1441377362856,
"name": [{
"lang": "en_us",
"text": "Car Health Monitor App"
}],
"description": [{
"lang": "en_us",
"text": "An external partner application to monitor faults in car."
}]
}