Skip to content

Core Endpoints

Jay edited this page Oct 22, 2020 · 5 revisions

Below are the currently supported core endpoints.

Brands

GET /core/brand

$brands = $api->getBrands();

You can filter the results as shown below. For a full list of supported filtering options, see https://api.supportpal.com/api.html#core-brand-get

$brands = $api->getBrands(['enabled' => 1]);

GET /core/brand/{id}

$brands = $api->getBrand($id);

General Settings

GET /core/settings

$settings = $api->getCoreSettings();