Skip to main content

GetApplicationsAndDatastores

Get the application list and datastore list

Description

Obtains a list of applications (including datastores) under the specified workspace.

Method

GET

Request URL Format

/api/v0/workspaces/:workspace-id/applications

URL Params

workspace-id    : WorkspaceID

Request URL Sample

GET https://api.xxx.com/api/v0/workspaces/582b26d7fb90a15e0c24ad80/applications

Response Sample

[
{
"application_id": "59bf424c0e247918255de008",
"name": "Application1",
"display_id": "App1",
"datastores": [
{
"datastore_id": "59bf42550e2479186a6c6c70",
"name": "Datastore1"
}
]
},
{
"application_id": "59bf424c0e247918255de008",
"name": "Application2",
"display_id": "App2",
"datastores": [
{
"datastore_id": "59bf42550e2479186a6c6c70",
"name": "Datastore2"
},
{
"datastore_id": "59bf42550e2479186a6c6c70",
"name": "Datastore3"
}
]
}
]