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.

Create¶

POST is used to send data to the server to create/update a resource.

The data sent to the server with POST is stored in the request body of the HTTP request.

POST /clientprojects

POST /api/clientprojects HTTP/1.1
clientname: <Client Name>
authorization: <Token> 

Request Body

{                     
    "Name": "My Project",
    "Latitude": 57,
    "Longitude": 13,
    "OwnerOrganization": {
        "Id": "bb601d80-0c8d-4a4d-bece-230ad4b12d9c"
    },
    "LeadOrganization": {
        "Id": "bb601d80-0c8d-4a4d-bece-230ad4b12d9c"
    },
    "Location": {
        "Id": "af9d605a-fae6-4ed4-b123-d37dea32f0c3"        
    }
}

Response

The response will have Status Code 200 (OK) if the resource successfully created. Response body will have {Id} of the created resource.