Hi,
I have been making API Calls successfully to retrieve my active listings details but since Tuesday 5/10/21 they have stopped working. Below is a section of my php script that has been working for years.
$endpoint = 'https://open.api.ebay.com/shopping';
$apicall = "$endpoint?callname=GetSingleItem&version=863&siteid=3"
. "&appid=MyAppID"
. "&ItemID=$SafeItemID"
. "&responseencoding=$responseEncoding"
. "&descriptionSearch=true"
. "&DetailLevel=ReturnAll"
. "&IncludeSelector=Details, Description, TextDescription,ItemSpecifics,Variations,FeedbackHistory";
I retrieve the info I require by using:
$description= $resp['Item_Description'];
But I get the php error: Notice: Undefined index: Item_Description
So I am not sure if the GetSingleItem APICALL requires new / additional changes as I can't find anything relevant in the Developers API Documentation.
Any help would be greatly appreciated please to point me in the right direction to fix this.
Thank you.