PUT
/
v1
/
applications
/
{uid}
curl --request PUT \
  --url https://api.siit.io/v1/applications/{uid} \
  --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>",
    "renewal_date": "2023-12-25",
    "total_annual_cost": 0,
    "status": "discovered",
    "updated_at": "2023-11-07T05:31:56Z",
    "created_at": "2023-11-07T05:31:56Z"
  }
}

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
name
string
about
string
app_owner_uid
string

must reference an existing user.

renewal_date
string
total_annual_cost
integer

Response

200
application/json
Application updated
result
object