Skip to content

Traditional / eBay Stores eBay Docs

This Call Reference describes the elements and attributes for each eBay Stores call below.

GetStore eBay Docs

Retrieves configuration information for the eBay store owned by the specified UserID, or by the caller.

php
use Rat\eBaySDK\API\TraditionalAPI\Stores\GetStore;
use Rat\eBaySDK\Client;

$client = app(Client::class);
$request = new GetStore(
    payload: (mixed) $payload = null
);
$response = $client->execute($request);

GetStoreCategoryUpdateStatus eBay Docs

Returns the status of the processing for category-structure changes specified with a call to SetStoreCategories.

php
use Rat\eBaySDK\API\TraditionalAPI\Stores\GetStoreCategoryUpdateStatus;
use Rat\eBaySDK\Client;

$client = app(Client::class);
$request = new GetStoreCategoryUpdateStatus(
    payload: (mixed) $payload = null
);
$response = $client->execute($request);

SetStoreCategories eBay Docs

Changes the category structure of an eBay store.

php
use Rat\eBaySDK\API\TraditionalAPI\Stores\SetStoreCategories;
use Rat\eBaySDK\Client;

$client = app(Client::class);
$request = new SetStoreCategories(
    payload: (mixed) $payload = null
);
$response = $client->execute($request);

This software is not an official eBay product and is not associated with, sponsored by, or endorsed by eBay Inc.