Skip to content

Apps

These objects represent the apps that have been found in your organization.

List apps

Request

Security
x-api-key
Query
creationTimestampAfterinteger

Filter by when the app was first observed - start time. This is a UNIX timestamp (in seconds).

creationTimestampBeforeinteger

Filter by when the app was first observed - end time. This is a UNIX timestamp (in seconds).

limitinteger, [ 1 .. 500 ]

Used for pagination. Number of objects to return.

Default:500
offsetintegerdeprecated

Used for pagination. Number of objects to skip. Cannot be set when nextToken is also set.

nextTokenstring

Used for pagination. Token to be used for the next request. Cannot be set when offset is also set.

GET
/v1/apps
curl -i -X GET \
  https://api.pushsecurity.com/v1/apps \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

OK

Bodyapplication/json
resultArray of objects(App)
pagingobject
Response
{ "result": [ { "id": "2a2197de-ad2c-47e4-8dcb-fb0f04cf83e0", "type": "ZAPIER", "approvalStatus": "UNDER_REVIEW", "sensitivityLevel": "HIGH", "ownerId": "87569da6-fb7a-4df7-8ce2-246c14044911", "notes": "Last security audit: 16 January 2023", "website": "https://zapier.com/", "description": "Zapier is a cloud-based automation tool that enables users to integrate and automate various web applications without requiring extensive coding knowledge, potentially streamlining workflows and processes.", "friendlyName": "Zapier", "labels": [ "GenAI", "marketing" ], "categories": [ { "code": 83, "name": "AI/ML Applications", "group": "Technology" } ], "creationTimestamp": 1698064423 } ], "paging": { "moreResults": true, "next": "501", "nextToken": "0b9972aa-fe8d-4095-82d3-2e13cf3cfd43" } }