GET
/
v1
/
applications
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.

Authorizations

Authorization
string
header
required

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

Query Parameters

status_in[]
enum<string>[]

Filter by Application's status.

Available options:
discovered,
approved,
restricted
created_after
string

Filter Application created after a DateTime (ISO 8601).

created_before
string

Filter Application created before a DateTime (ISO 8601).

updated_after
string

Filter Application updated after a DateTime (ISO 8601).

updated_before
string

Filter Application updated before a DateTime (ISO 8601).

page
integer

The current page

per_page
integer

Number of results retrieved per page.

Response

200
application/json
successful
meta
object
results
object[]