GET
/
apps
List
curl --request GET \
  --url https://apimgmt.cometchat.io/apps \
  --header 'key: <key>' \
  --header 'secret: <secret>'
{
  "data": {
    "id": "<APP_ID>",
    "name": "<App Name>",
    "plan": "trial",
    "trialEndsAt": 1588887393,
    "state": "active",
    "owner": 1656,
    "region": "us",
    "createdAt": 1586295393,
    "appOwner": {
      "id": "1656",
      "name": "<OWNER_NAME>",
      "email": "youremail@domain.com"
    },
    "appRegion": {
      "id": "us",
      "name": "USA",
      "description": "The USA region has serverslocated at Ohio."
    },
    "accessKey": "<API_KEY>",
    "apiKeys": {
      "<API_KEY1>": {
        "apiKey": "<API_KEY1>",
        "name": "Rest API Key",
        "scope": "fullAccess",
        "createdBy": "app_system"
      },
      "<API_KEY2>": {
        "apiKey": "<API_KEY2>",
        "name": "Auth Key",
        "scope": "authOnly",
        "createdBy": "app_system"
      }
    }
  }
}

Headers

key
string
required

Authorization Key

secret
string
required

Authorization Secret

Query Parameters

searchKey
string

The "searchKey" query parameter allows filtering results based on either the ID or name properties of the apps.

perPage
integer

The "perPage" property specifies the total number of records to be fetched in a single request. It determines the maximum number of items returned per page.

page
integer

The "page" property is utilized for navigating through the available pages of results. It indicates the specific page of results that is being retrieved or accessed.

Response

200 - application/json

List Apps

The response is of type object.