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 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

RESTful API for creating and managing various objects in the Lifecycle Twin.

Authentication

The Lifecycle Twin API uses JSON Web Tokens (JWT) for authentication. The server creates a token, signs it with a secret key, and returns it to you. Include this token in all subsequent API requests.

Call the api/token endpoint to obtain a token.

The token endpoint is located at: {{ApiUrl}}/token Include the following parameters in 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"
}