Obtain DreamFactory API Key Details
php
Description
A simple PHP script to obtain additional information regarding the API Key used such as the Keys name, active status, and more.
Code
$app_id = $platform['session']['app']['id'];
$url = 'system/app?ids=' . $app_id;
$api = $platform['api'];
$get = $api->get;
$result = $get($url);
return $result;