getList

Prev Next

Available in VPC

Get the list of all apps in a Data Forest account.

Request

This section describes the request format. The method and URI are as follows:

Method URI
POST /api/v2/apps/getList

Request headers

For information about the headers common to all Data Forest APIs, see Data Forest request headers.

Request body

You can include the following data in the body of your request:

Field Type Required Description
search Object Required Query condition information
search.accountId String Required Account's unique identifier
  • 0-22 characters
  • UUID converted to Base62 format
  • See getList of Accounts.

Request example

The request example is as follows:

curl --location --request POST 'https://df.apigw.ntruss.com/api/v2/apps/getList' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}' \
--data '{
    "search": {
        "accountId": "***FQJ88q0be79VRB2e***"
    }
}'

Response

This section describes the response format.

Response body

See GetAppListResponse for the response body.

Response status codes

For response status codes common to all Data Forest APIs, see Data Forest response status codes.

Response example

The response example is as follows:

{
    "success": true,
    "total": 1,
    "contents": [
         {
            "id": "***ziexhg0FcWx5eGUA***",
            "name": "app001",
            "state": "RUNNING",
            "queueName": "longlived",
            "accountId": "***FQJ88q0be79VRB2e***",
            "accountName": "df001",
            "startedAt": "2025-02-25T15:49:07+09:00",
            "lifetimeMillis": 604800,
            "disabled": false
        }
    ]
}