# Fetch application connection information Retrieve the connection information related to a application that has 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. Endpoint: POST /fetch_connected_application Version: 11.134.0.5 Security: BasicAuth ## Query parameters: - `name` (string, required) The name of the connected application. Example: "application-1" ## Response 200 fields (application/json): - `data` (object) - `data.data` (object) Data associated with the connected application. There are a few predefined elements, but any additional data may be stored here as well. - `data.data.jwt` (object) The contents of a JSON Web Token used during registration, or updates. Example: {"callback_url":"https://application-1.com/api/si/servers/registrations/callback,","challenge":"ddd13a92-d55e-4818-a960-9776ede6cd74,","email":"john.doe@email.example,","exp":"1401912171,","ips":["1.1.1.1","2.2.2.2"],"iss":"https://application-1.com","iss_desc":"Sample application","name":"John Doe,","redirect_url":"https://application-1/redirect,","scope":["admin:users,","admin:resellers","admin:domains"],"state":"xyz"} - `data.data.private_key` (string) The name of the private key, if any, used by encryption, signing, or other security schemes used when communicating with this connected application. Example: "FEF6253E6A122532430D" - `data.data.privileges_granted` (array) The actual privileges granted by the user. Example: ["list-accts","list-resellers","create-user-session","acct-summary","connected-applications"] - `data.data.public_key` (string) The name of the public key, if any, sent to the connected application during registration. Example: "AAF6253E6A1225324305623EE" - `data.data.token_name` (string) The name of the API token, if any, sent to the connected application to allow that application to make API calls on this server. Example: "Application 1 API Token" - `data.name` (string) The name of the connected application. Example: "application-1" - `metadata` (object) - `metadata.command` (string) The method name called. Example: "fetch_connected_application" - `metadata.reason` (string) The reason the API function failed when the field is . This field may display a success message when a function succeeds. Example: "OK" - `metadata.result` (integer) * — Success. * — Failed. Check the field for more details. Enum: 0, 1 - `metadata.version` (integer) The version of the API function. Example: 1