curl --request GET \
--url https://api.siit.io/v1/applications \
--header 'Authorization: Bearer <token>'
{
"meta": {
"count": 123,
"total": 123,
"current_page": 123,
"per_page": 20,
"next_page_link": "<string>",
"previous_page_link": "<string>"
},
"results": [
{
"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"
}
]
}
Introduction
Please note archived applications are NOT returned.
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Filter by Application's status.
Available options:
discovered
,
approved
,
restricted
Filter Application created after a DateTime (ISO 8601).
Filter Application created before a DateTime (ISO 8601).
Filter Application updated after a DateTime (ISO 8601).
Filter Application updated before a DateTime (ISO 8601).
Number of results retrieved per page.
The UID of the Application.
A short description of the Application.
The URL to the Application.
date formatted as ISO 8601 (e.g. "2020-12-15")
results.total_annual_cost
Application's annual cost.
results.status
enum<string>
default:discovered
The status of the Application.
Available options:
discovered
,
approved
,
restricted
datetime formatted as ISO 8601 (e.g. "2020-12-15T03:34:13.000Z")
datetime formatted as ISO 8601 (e.g. "2020-12-15T03:34:13.000Z")