/
Update an app
Security
x-api-key
Update an app's approval status, sensitivity level, and/or notes.
The desired approval status for the app. If null, the current approval status will be unset.
Enum:"APPROVED""NOT_APPROVED""UNDER_REVIEW"
Example:"APPROVED"
The desired sensitivity level for the app. If null, the current sensitivity level will be unset.
Enum:"HIGH""MEDIUM""LOW"
Example:"HIGH"
The desired notes for the app. If null, any existing notes will be deleted.
Example:"Last security audit: 16 January 2024"
PATCH
curl -i -X PATCH \
'https://api.pushsecurity.com/v1/apps/{id}' \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{}'OK
Approval status of the app, null if not set
| Enum Value | Description |
|---|---|
| UNDER_REVIEW | The app is under review |
| APPROVED | The app has been approved |
| NOT_APPROVED | The app has not been approved |
The sensitivity level of the app, null if not set
| Enum Value | Description |
|---|---|
| HIGH | The sensitivity of the app is high |
| MEDIUM | The sensitivity of the app is medium |
| LOW | The sensitivity of the app is low |
Identifier of the employee who is the owner of this platform
Example:"87569da6-fb7a-4df7-8ce2-246c14044911"
Description of the app's purpose
Example:"Zapier is a cloud-based automation tool that enables users to integrate and automate various web applications without requiring extensive coding know
Response
{ "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 }