IdP API

The IdP API is used to validate issued access tokens with our IoT identity provider.

Introspection Endpoint

Use this endpoint to verify the access tokens issued by the IdP. This endpoint is mainly used by the IoT platform but may also be used by IoT devices to verify the received access token.

Introspect token

POST https://iot-idp.demo.apps.iothentix.io/idp/introspect

Validate the access token with the IdP.

Headers

Request Body

{
    "active": true,
    "sub": "test.device.01",
    "scope": "tenant.demo refresh.token temp",
    "iss": "https://iot-idp.demo.apps.iothentix.com/",
    "exp": 1658179642
}

Last updated