List application connection information

Retrieve the connection information for all the connected applications that have been granted access to this server. This data may include any number of properties, but its primary purpose is to associate API tokens and public/private key pairs and similar resources with a specific connected application.

SecurityBasicAuth
Responses
200

HTTP Request was successful.

Response Schema: application/json
object
object
post/list_connected_applications
Request samples
whmapi1 --output=jsonpretty \
  list_connected_applications
Response samples
application/json
{
  • "data": {
    • "list": [
      • {
        • "jwt": {},
        • "name": "application-1",
        • "private_key": "FEF6253E6A122532430D",
        • "public_key": "AAF6253E6A1225324305623EE",
        • "token_name": "Application 1 API Token",
        • "property1": null,
        • "property2": null
        }
      ]
    },
  • "metadata": {
    • "command": "list_connected_applications",
    • "reason": "OK",
    • "result": 1,
    • "version": 1
    }
}