Skip to main content
PUT
/
v1
/
applications
/
{uid}
Update an Application
curl --request PUT \
  --url https://api.siit.io/v1/applications/{uid} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "about": "<string>",
  "app_link": "<string>",
  "app_owner": "<string>",
  "app_owner_uid": "<string>",
  "currency": "<string>",
  "discovered_at": "2023-12-25",
  "lifecycle": "active",
  "name": "<string>",
  "renewal_date": "2023-12-25",
  "status": "discovered",
  "total_annual_cost": 0
}
'
{
  "result": {
    "uid": "<string>",
    "about": "<string>",
    "app_link": "<string>",
    "app_owner": "<string>",
    "app_owner_uid": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "currency": "<string>",
    "discovered_at": "2023-12-25",
    "lifecycle": "active",
    "name": "<string>",
    "renewal_date": "2023-12-25",
    "status": "discovered",
    "total_annual_cost": 0,
    "updated_at": "2023-11-07T05:31:56Z",
    "users_count": 123
  }
}

Usage

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

uid
string
required

The UID of the Application

Body

application/json
about
string | null

A short description of the Application

The URL to the Application

app_owner

The App owner. Can only be a User for now but this might evolve. Pass ?expand[]=field_name for full object.

app_owner_uid
string | null
deprecated

DEPRECATED: Use app_owner instead. The UID of app owner.

currency
string | null
discovered_at
string<date>

date formatted as ISO 8601 (e.g. "2020-12-15")

lifecycle
enum<string> | null

Empty when status is not "approved"

Available options:
active,
cost_optimization,
deprecated,
evaluating,
security_assessment
name
string

The Application name

renewal_date
string<date> | null

date formatted as ISO 8601 (e.g. "2020-12-15")

status
enum<string>
default:discovered

The status of the Application

Available options:
approved,
discovered,
restricted
total_annual_cost
integer | null
default:0

Application's annual cost.

Response

Application updated

result
object