Skip to content

Traditional / Standard Listing eBay Docs

This Call Reference describes the elements and attributes for each Standard Listing call below.

AddFixedPriceItem eBay Docs

Defines and lists a new fixed-price item. This call supports multiple-variation listings.

php
use Rat\eBaySDK\API\TraditionalAPI\Listing\AddFixedPriceItem;
use Rat\eBaySDK\Client;

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

AddItem eBay Docs

Defines a single new item and lists it on a specified eBay site.

php
use Rat\eBaySDK\API\TraditionalAPI\Listing\AddItem;
use Rat\eBaySDK\Client;

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

AddItems eBay Docs

Defines from one to five items and lists them on a specified eBay site.

php
use Rat\eBaySDK\API\TraditionalAPI\Listing\AddItems;
use Rat\eBaySDK\Client;

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

AddToItemDescription eBay Docs

Appends a horizontal rule, then a message about what time the addition was made by the seller, and then the seller-specified text.

php
use Rat\eBaySDK\API\TraditionalAPI\Listing\AddToItemDescription;
use Rat\eBaySDK\Client;

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

EndFixedPriceItem eBay Docs

Ends the specified fixed-price listing before the date and time at which it would normally end per the listing duration.

php
use Rat\eBaySDK\API\TraditionalAPI\Listing\EndFixedPriceItem;
use Rat\eBaySDK\Client;

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

EndItem eBay Docs

Ends the specified eBay listing before the date and time at which it would normally end per the listing duration.

php
use Rat\eBaySDK\API\TraditionalAPI\Listing\EndItem;
use Rat\eBaySDK\Client;

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

EndItems eBay Docs

Ends up to 10 specified listings before the date and time at which the listings would normally end per the listing duration.

php
use Rat\eBaySDK\API\TraditionalAPI\Listing\EndItems;
use Rat\eBaySDK\Client;

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

GetBidderList eBay Docs

Retrieves all items the user is currently bidding on, and the ones they have won or purchased.

php
use Rat\eBaySDK\API\TraditionalAPI\Listing\GetBidderList;
use Rat\eBaySDK\Client;

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

GetItem eBay Docs

Returns full details on the listing, including title, description, price information, user information, shippinging, and so on, for the specified ItemID.

php
use Rat\eBaySDK\API\TraditionalAPI\Listing\GetItem;
use Rat\eBaySDK\Client;

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

GetSellerEvents eBay Docs

Retrieves price changes, item revisions, description revisions, and other changes that have occurred within the last 48 hours related to a seller's eBay listings.

php
use Rat\eBaySDK\API\TraditionalAPI\Listing\GetSellerEvents;
use Rat\eBaySDK\Client;

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

GetSellerList eBay Docs

Returns a list of the items posted by the authenticated user, including the related item data.

php
use Rat\eBaySDK\API\TraditionalAPI\Listing\GetSellerList;
use Rat\eBaySDK\Client;

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

RelistFixedPriceItem eBay Docs

Enables a seller to take a relist an eBay listing that has ended. This call supports multiple-variation listings.

php
use Rat\eBaySDK\API\TraditionalAPI\Listing\RelistFixedPriceItem;
use Rat\eBaySDK\Client;

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

RelistItem eBay Docs

Enables a seller to take a relist an eBay listing that has ended.

php
use Rat\eBaySDK\API\TraditionalAPI\Listing\RelistItem;
use Rat\eBaySDK\Client;

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

ReviseFixedPriceItem eBay Docs

Enables a seller to change the properties of an active, fixed-price listing. This call supports multiple-variation listings.

php
use Rat\eBaySDK\API\TraditionalAPI\Listing\ReviseFixedPriceItem;
use Rat\eBaySDK\Client;

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

ReviseInventoryStatus eBay Docs

Enables a seller to change the price and/or quantity of an active fixed-price listing.

php
use Rat\eBaySDK\API\TraditionalAPI\Listing\ReviseInventoryStatus;
use Rat\eBaySDK\Client;

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

ReviseItem eBay Docs

Enables a seller to change the properties of an active listing.

php
use Rat\eBaySDK\API\TraditionalAPI\Listing\ReviseItem;
use Rat\eBaySDK\Client;

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

VerifyAddFixedPriceItem eBay Docs

Enables a seller to verify that a newly created fixed-price listing is valid before actually publishing the listing. This call supports multiple-variation listings.

php
use Rat\eBaySDK\API\TraditionalAPI\Listing\VerifyAddFixedPriceItem;
use Rat\eBaySDK\Client;

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

VerifyAddItem eBay Docs

Enables a seller to verify that a newly created listing is valid before actually publishing the listing.

php
use Rat\eBaySDK\API\TraditionalAPI\Listing\VerifyAddItem;
use Rat\eBaySDK\Client;

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

VerifyRelistItem eBay Docs

Enables a seller to verify that a newly revised listing is valid before actually relisting the item. Expected listing fees will also be returned.

php
use Rat\eBaySDK\API\TraditionalAPI\Listing\VerifyRelistItem;
use Rat\eBaySDK\Client;

$client = app(Client::class);
$request = new VerifyRelistItem(
    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.