Category Filter
Update Web App
Update a web app present in the Hexnode app repository.
Argument | Type | Description |
---|---|---|
name | String | Required. Name of the app. |
app_type | String | Required. Use web. |
webapp_url | String | Required. URL for the web app. |
category | String | Required. Category for the app. For example, entertainment |
icon | String | Required. URL or base64 encoded data of the icon |
curl
HTTP Request:
1 2 3 4 5 6 7 8 9 10 11 12 |
PUT https://.hexnodemdm.com/api/v1/applications/{app_id}/ headers:- Authorization: Content-Type: application/json Sample Post Data:- [{ "name":"Hexnode", "app_type":"web", "webapp_url":" https://www.hexnode.com/", "category":"Marketing", "icon":" data:image/jpeg;base64..... ", }] |
Shell Command
1 2 3 4 5 6 7 8 |
curl -X PUT -H 'Authorization: <your API key>' -H 'Content-Type: application/json' -d '{ "name":"Hexnode", "app_type":"web", "webapp_url":" https://www.hexnode.com/", "icon":"data:image/jpeg;base64..... ", "category":"Marketing", }' https://.hexnodemdm.com/api/v1/applications/{app_id}/ |
HTTP Response:
1 2 3 |
{ HTTP/1.1 201 Created } |