Description

This route returns information about the App which was referenced as App ID by the API request.

Schema

{
    "description":"Object of App information",
    "type":"object",
    "additionalProperties": false,
    "properties":{
        "appId":{
            "description":"The App ID of the used App",
            "type":"string",
            "required":true
        },
        "name":{
            "description":"Human readable name of the App",
            "type":"string",
            "required":true
        },
        "description":{
            "description":"Description of the App",
            "type":"string",
            "required":true
        }
    }
}

GET /

Example result:

{
    appId: "118045195027156",
    name: "My blog",
    description: "App used for my drupal blog"
}