For the complete documentation index, see llms.txt. This page is also available as Markdown.

Applications API

API calls for operating Application objects (Applications Available to Users).

Base path: /apps/

You can use this API in scenarios where control over the applications available to users is managed per client. If you control applications through permissions within template instances, this API does not need to be used.

Note: When registered, an application is by default set to INACTIVE. Use the activation call to enable the application after registration.


List Applications

Retrieves applications registered on the Autosky platform and linked to clients.

GET /apps/

Query Parameters (optional)

Parameter
Type
Description

cli_uuid

string

Client UUID for filtering

Response

Status: 200 OK

[
    {
        "app_uuid": "90476973-4729-4f2b-acee-3621cebd70e8",
        "nome": "Notepad",
        "estado": "INATIVO",
        "endereco_app": "",
        "parametro_app": "",
        "nome_exibicao": ""
    },
    {
        "app_uuid": "84104ec2-6914-4ed7-a359-04ff14316e74",
        "nome": "Calculadora",
        "estado": "ATIVO",
        "endereco_app": "",
        "parametro_app": "",
        "nome_exibicao": ""
    }
]

Get Application Data

Retrieves data for an application specified by its UUID.[cite: 2] In addition to the list fields, it also includes the client field.

Path Parameters

Parameter
Required
Description

app_uuid

Yes

Application UUID

Response

Status: 200 OK


Register Application

Registers a new application on the platform.

Request Body

Field
Type
Required
Description

nome

string

Yes

Application name

cli_uuid

string

Yes

Client UUID

estado

string

Yes

Application state: ATIVO or INATIVO[

endereco_app

string

No

Application path (e.g. C:\\Program Files\\MeuDir\\App.exe)

parametro_app

string

No

Application startup parameter

Sample Request

Response

Status: 200 OK


Edit Application

Edits an application on the platform.

Path Parameters

Parameter
Required
Description

app_uuid

Yes

Application UUID

Request Body

Field
Type
Required
Description

nome

string

Yes

Application name

cli_uuid

string

Yes

Client UUID

estado

string

No

Application state: ATIVO or INATIVO

endereco_app

string

Yes

Application path

parametro_app

string

No

Startup parameter

Sample Request

Response

Status: 200 OK

Returns the complete updated application object along with the cliente object.


Remove Application

Deletes an application from the platform.

Path Parameters

Parameter
Required
Description

app_uuid

Yes

Application UUID

Response

Status: 200 OK

Last updated

Was this helpful?