Skip to content

API Proxy Service

A service to manage API Proxies, currently we only support getting all API Proxies.

Usage

php
use \Lordjoo\Apigee\Facades\Apigee;
$apis = Apigee::edge()->apiProxy()->get();
use \Lordjoo\Apigee\Facades\Apigee;
$apis = Apigee::edge()->apiProxy()->get();

$apis is a Laravel Collection of ApiProxy objects.

Entity Properties

PropertyTypeDescription
namestringName of the API Proxy
metaDataarrayMeta data of the API Proxy

MetaData Array Structure

PropertyTypeDescription
lastModifiedBystringEmail address of developer that last modified the API proxy.
lastModifiedAtintTime when the API proxy was last modified in milliseconds since epoch.
createdAtintTime when the API proxy was created in milliseconds since epoch.
createdBystringEmail address of developer that created the API proxy.

Released under the MIT License.