Skip to content

Core Endpoints

Kieran edited this page Nov 1, 2020 · 5 revisions

Below are the currently supported core endpoints.

Brands

GET /core/brand

$brands = $api->getCoreApi()->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->getCoreApi()->getBrands(['enabled' => 1]);

GET /core/brand/{id}

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

General Settings

GET /core/settings

$settings = $api->getCoreApi()->getSettings();