List apps

Apps

The returned app(s) will display only explicitly set parameters, with all other values defaulting to the organization or Appetize defaults.

Get All Apps - Paginated

get

Retrieves information about all apps int he account, with associated metadata.

Recommended approach for retrieving all apps.

Authorizations
X-API-KEYstringRequired

Use an API token for authentication via X-API-KEY header

Query parameters
nextKeystringOptional

If results are truncated due to too many apps, response will include hasMore:true and a nextKey to retrieve the next page. Pass the nextKey value as query parameter into the GET request to retrieve the next batch of apps.

Example: xyz
Responses
200

OK

application/json
get
/apps
200

OK

Get All Apps - Not Paginated

get

Retrieves information about all apps in the account, with associated metadata.

NOTE: No pagination is performed so this query might be slow. It is recommended to use the paginated version of this query if possible.

Authorizations
X-API-KEYstringRequired

Use an API token for authentication via X-API-KEY header

Responses
200

OK

application/json
get
/apps/all
200

OK

Get a Single App

get

Retrieves information about a single app.

Authorizations
X-API-KEYstringRequired

Use an API token for authentication via X-API-KEY header

Path parameters
publicKeystringRequired

The publicKey for the app.

Example: p7nww3n6ubq73r1nh9jtauqy8w
Responses
200

OK

application/json
get
/apps/{app_publicKey}
200

OK

App Groups

Get an App Group

get

Retrieves information about an app group and all the apps associated with it.

Authorizations
X-API-KEYstringRequired

Use an API token for authentication via X-API-KEY header

Path parameters
publicKeystringRequired

The publicKey for the app group (starts with ag_).

Example: ag_{publicKey}
Responses
200

OK

application/json
get
/apps/{appgroup_publicKey}
200

OK

Last updated