The chat responses are generated using Generative AI technology for intuitive search and may not be entirely accurate. They are not intended as professional advice. For full details, including our use rights, privacy practices and potential export control restrictions, please refer to our Generative AI Service Terms of Use and Generative AI Service Privacy Information. As this is a test version, please let us know if something irritating comes up. Like you get recommended a chocolate fudge ice cream instead of an energy managing application. If that occurs, please use the feedback button in our contact form!
Skip to content
Lifecycle Twin API

Create and manage various objects in the Lifecycle Twin.

Authentication¶

Lifecycle Twin API is using Json Web Token (JWT) for authentication. The tokens are created by the server, signed with a secret key and passed over to the client, which is using this token for authentication.

Call the api/token endpoint to obtain the token

The token endpoint is found at: {{ApiUrl}}/token The following parameter must be include to the Body:

ParameterDescription
client_id(mandatory) The client ID provided by Lifecycle Twin Support
client_secret(mandatory) The client secret key provided by Lifecycle Twin Support
grant_type(mandatory) password
username(mandatory) Your Lifecycle Twin username
password(mandatory) Your Lifecycle Twin password

Response sample:

{
    "access_token": "I-Iy4rCh2zTVQlk.....vMKExs-9tjjF4zgvKm9IunuAg",
    "token_type": "bearer",
    "expires_in": 604799,
    "refresh_token": "254120b05398496689d3de9754def62a781be8028d9d40549d4d46e310d4132f",
    "user_sid": "87fbd0ac-3230-4839-a5a8-3eb9f96acdea"
}