d4-core/server/documentation
Terrtia 15bb67a086
chg: [api] add£: register sensor endpoint
2019-08-14 16:42:15 +02:00
..
Database.md chg: [api] add£: register sensor endpoint 2019-08-14 16:42:15 +02:00
README.md chg: [api] add£: register sensor endpoint 2019-08-14 16:42:15 +02:00

README.md

API DOCUMENTATION

General

Automation key

The authentication of the automation is performed via a secure key available in the D4 UI interface. Make sure you keep that key secret. It gives access to the entire database! The API key is available in the Server Management menu under My Profile.

The authorization is performed by using the following header:

Authorization: YOUR_API_KEY

Accept and Content-Type headers

When submitting data in a POST, PUT or DELETE operation you need to specify in what content-type you encoded the payload. This is done by setting the below Content-Type headers:

Content-Type: application/json

Example:

curl --header "Authorization: YOUR_API_KEY" --header "Content-Type: application/json" https://AIL_URL/

Item management

Get item: api/v1/get/item/default

Description

Get item default info.

Method : POST

Parameters

  • uuid

    • sensor uuid
    • uuid4
    • mandatory
  • hmac_key

    • sensor secret key
    • binary
    • mandatory
  • description

    • sensor description
    • str

JSON response

  • uuid
    • sensor uuid
    • uuid4

Example

curl https://127.0.0.1:7000/api/v1/add/sensor/register --header "Authorization: iHc1_ChZxj1aXmiFiF1mkxxQkzawwriEaZpPqyTQj " -H "Content-Type: application/json" --data @input.json -X POST

input.json Example

  {
    "uuid": "",
    "hmac_key": ""
  }

Expected Success Response

HTTP Status Code : 200

  {
    "uuid": "",
  }

Expected Fail Response

HTTP Status Code : 400

  {"status": "error", "reason": "Mandatory parameter(s) not provided"}