Get Started
Application
Equipment
Request
User
Create Application
Create an Application
POST
/
v1
/
applications
curl --request POST \
--url https://api.siit.io/v1/applications \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"about": "<string>",
"app_link": "<string>",
"app_owner_uid": "<string>",
"renewal_date": "2023-12-25",
"total_annual_cost": 123
}'
{
"result": {
"uid": "<string>",
"name": "<string>",
"about": "<string>",
"app_link": "<string>",
"app_owner_uid": "<string>",
"status": "discovered",
"lifecycle": "evaluating",
"renewal_date": "2023-12-25",
"total_annual_cost": 0,
"users_count": 123,
"currency": "<string>",
"source": "discovered",
"discovered_at": "2023-12-25",
"updated_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z"
}
}
Usage
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
201
application/json
Application created
The response is of type object
.
curl --request POST \
--url https://api.siit.io/v1/applications \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"about": "<string>",
"app_link": "<string>",
"app_owner_uid": "<string>",
"renewal_date": "2023-12-25",
"total_annual_cost": 123
}'
{
"result": {
"uid": "<string>",
"name": "<string>",
"about": "<string>",
"app_link": "<string>",
"app_owner_uid": "<string>",
"status": "discovered",
"lifecycle": "evaluating",
"renewal_date": "2023-12-25",
"total_annual_cost": 0,
"users_count": 123,
"currency": "<string>",
"source": "discovered",
"discovered_at": "2023-12-25",
"updated_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z"
}
}