UploadSiteHostedPictures
Use this call to upload a picture to eBay Picture Services (EPS). You can either include a binary attachment, or supply a URL in the ExternalPictureURL field to the location of the picture on an external web server.
Unlike what the call name implies, you can upload only one picture per call. To upload multiple pictures, call UploadSiteHostedPictures once for each picture you want to upload. EPS pictures must be used within 30 days, as pictures not associated with an active listing are automatically deleted from the server after this period.
UploadSiteHostedPictures supports only the XML Trading API (the SOAP Trading API is not supported). You can test this call in the Sandbox environment.
If the call is successful, UploadSiteHostedPictures returns the EPS URL of the picture in SiteHostedPictureDetails.FullURL, the original external picture URL in SiteHostedPictureDetails.ExternalPictureURL (if used), and the URLs for the variously sized images that were generated in SiteHostedPictureDetails.PictureSetMember.MemberURL.
If you need to retrieve the self-hosted and associated EPS URLs, use the GetItem call. The URLs are returned in ExtendedPictureDetails.PictureURLs.eBayPictureURL and ExtendedPictureDetails.PictureURLs.ExternalPictureURL.
Image Requirements
Note: All images must comply with eBay's picture requirements (for more information, see Add pictures in the Trading API User Guide).If a dimension or file size limit is exceeded, the errors returned will include the applicable limits. Image processing issues, such as thumbnail or gallery image generation, can result.
Error 21916604 is returned if the height + width dimension limit is exceeded. For example, if the maximum image dimension limit is 15,000 pixels (height + width), an 800 x 800 image is acceptable (800 + 800 = 1600, which is less than 15,000), but an 8000 x 8000 image is not (8000 + 8000 = 16,000, which is greater than 15,000).
Error 2191448 is returned if the image file size is larger than the maximum file size allowed. For example, if the maximum original file size is 12 MB, images with a file size greater than this are not acceptable.
eBay Picture Services (EPS) supports the uploading of image data in JPG, GIF, PNG, BMP, and TIF formats. An error is generated if you upload images in another format (such as PSD). EPS stores successfully processed images at sizes and compression settings designed to provide the best trade-off between image quality and page-load times.
EPS downscales and compresses the picture and stores it at the different sizes in the image set. If the dimensions of an uploaded picture are less than a size that is stored in EPS, the upload will be accepted, and the stored picture will be the same dimensions as the uploaded picture. In this case, image quality of the stored picture is likely to be degraded.
Uploading Binary Images
If you are uploading a binary image (instead of providing an external picture URL), you must include the picture as a binary MIME attachment after the XML input in the same POST request. Use XML version 1.0.
Example: Uploading a binary image
POST /ws/api.dll HTTP/1.1 Host: api.ebay.com X-EBAY-API-CALL-NAME: UploadSiteHostedPictures X-EBAY-API-SITEID: 0 X-EBAY-API-RESPONSE-ENCODING: XML X-EBAY-API-COMPATIBILITY-LEVEL: 967 X-EBAY-API-DETAIL-LEVEL: 0 Cache-Control: no-cache Postman-Token: d0ddd0cf-6132-afd0-0e30-c286a4616da3 Content-Type: multipart/form-data; boundary=----FormBoundary7MA4YWxkTrZu0gW ------FormBoundary7MA4YWxkTrZu0gW Content-Disposition: form-data; name="XML Payload" <?xml version="1.0" encoding="utf-8"?> <UploadSiteHostedPicturesRequest xmlns="urn:ebay:apis:eBLBaseComponents"> <RequesterCredentials> <ebl:eBayAuthToken xmlns:ebl="urn:ebay:apis:eBLBaseComponents">TOKEN</ebl:eBayAuthToken> </RequesterCredentials> <PictureName>Gall-Peters projection map</PictureName> <PictureSet>Standard</PictureSet> <ExtensionInDays>20</ExtensionInDays> </UploadSiteHostedPicturesRequest> ------FormBoundary7MA4YWxkTrZu0gW Content-Disposition: form-data; name="Gall-Peters Projection"; filename="Gall-Peters_projection_SW.jpg" Content-Type: image/jpeg <<<< BINARY PICTURE DATA >>>> ------FormBoundary7MA4YWxkTrZu0gW--
Usage Details
For more information about eBay Picture Services, see FAQs on eBayPictureServices (EPS) and the UploadSiteHostedPictures API call.
Related Information
See:
Add pictures
Include pictures for variations
Output Detail Controls Samples Change History |
Input
See also Samples.
The box below lists all fields that could be included in the call request. To learn more about an individual field or its type, click its name in the box (or scroll down to find it in the table below the box).
See also the Deprecated Objects link above. Fields presented in this color are deprecated, and fields presented in this color are (or soon will be) non-operational.
The XML prototype does not include requester credentials. This is a documentation limitation only (see Standard Requester Credentials for Making Calls).
<?xml version="1.0" encoding="utf-8"?> <UploadSiteHostedPicturesRequest xmlns="urn:ebay:apis:eBLBaseComponents"> <!-- Call-specific Input Fields --> <ExtensionInDays> int </ExtensionInDays> <ExternalPictureURL> anyURI </ExternalPictureURL> <PictureData contentType="string"> Base64BinaryType (base64Binary) </PictureData> <PictureName> string </PictureName> <PictureSet> PictureSetCodeType </PictureSet> <PictureSystemVersion> int </PictureSystemVersion> <PictureUploadPolicy> PictureUploadPolicyCodeType </PictureUploadPolicy> <!-- Standard Input Fields --> <ErrorLanguage> string </ErrorLanguage> <MessageID> string </MessageID> <Version> string </Version> <WarningLevel> WarningLevelCodeType </WarningLevel> </UploadSiteHostedPicturesRequest>
Argument | Type | Occurrence | Meaning |
---|
Call-specific Input Fields [Jump to standard fields] |
ExtensionInDays | int | Optional |
By default, an unpublished picture will be hosted on the EPS server for five days before being purged. However, the seller has the option of using this field to set an expiration date further into the future (up to 30 days). Similarly, when a listing ends or expires, the images associated with the listing remain on the EPS server for an additional 90 days. The value in this field will add on to those 90 days. Note: This field is restricted to applications that have been granted permission. Contact the eBay Developers Program to request permission. Min: 1. Max: 30. Default: 5. |
ExternalPictureURL | anyURI | Conditional |
This field is used if the seller wishes to upload a picture to the EPS server that is currently on another external site. The URL of the picture you want to upload is passed in this field. Only https:// servers are supported. You can include only one ExternalPictureURL field per call. The eBay server uses the information in this field to retrieve a picture from an external web server. Once retrieved, the picture will be copied to eBay Picture Services and retained for 30 days if not associated with a listing. When associated with a listing, the duration is the length of the listing plus 90 days. Max length: 1024. |
PictureData | Base64BinaryType (base64Binary) | Optional |
An optional reference ID to the binary attachment. The PictureData field does not contain the binary attachment. The binary attachment is image data, including the headers, from a JPG, GIF, PNG, BMP, or TIF format image file. The binary attachment must be sent as a MIME attachment, in your POST request, after the XML input. |
PictureData [ attribute contentType ] |
string | Optional |
An optional reference ID to the binary attachment. The PictureData field does not contain the binary attachment. The binary attachment is image data, including the headers, from a JPG, GIF, PNG, BMP, or TIF format image file. The binary attachment must be sent as a MIME attachment, in your POST request, after the XML input. |
PictureName | string | Optional | A seller-defined name for the picture. This field is optional, but can make it easier for a seller to track than an arbitrary, eBay-assigned URL. |
PictureSet | PictureSetCodeType | Optional |
This enumeration value indicates the size of the picture that will be generated. IMPORTANT: To get the standard website image sizing with Zoom, set this field to Supersize. Default: Standard. Applicable values: (Not all values in PictureSetCodeType apply to this field.) |
PictureSystemVersion | int | Optional |
Specifies the picture system version. Only version 2 is valid. Available to support future changes in the picture system version. Default: 2. |
PictureUploadPolicy | PictureUploadPolicyCodeType | Optional |
Determines if the uploaded picture is to replace all the pictures or to be added to the pictures currently available to a seller on the eBay site. The picture is available to the seller on the My Picture Uploads tab within the Sell Your Item pages. The picture you upload (and its URL) is stored for a period of time on the EPS server. If, within that time, the picture is associated with an item, then the picture persists on the eBay site for the same time length as other pictures uploaded using the UploadSiteHostedPictures call. The expiration date of the picture is returned in the SiteHostedPictureDetails.UseByDate field in the response. Applicable values: |
Standard Input Fields |
ErrorLanguage | string | Optional |
Use ErrorLanguage to return error strings for the call in a different language from the language commonly associated with the site that the requesting user is registered with. Below are some examples from different countries.
|
||||||||||||||||||||||||||||||||||||||||
MessageID | string | Optional |
Most Trading API calls support a MessageID element in the request and a CorrelationID element in the response. If you pass in a MessageID in a request, the same value will be returned in the CorrelationID field in the response. Pairing these values can help you track and confirm that a response is returned for every request and to match specific responses to specific requests. If you do not pass a MessageID value in the request, CorrelationID is not returned. Note: GetCategories is designed to retrieve very large sets of metadata that change once a day or less often. To improve performance, these calls return cached responses when you request all available data (with no filters). When this occurs, the MessageID and CorrelationID fields aren't applicable. However, if you specify an input filter to reduce the amount of data returned, the calls retrieve the latest data (not cached). When this occurs, MessageID and CorrelationID are applicable. |
||||||||||||||||||||||||||||||||||||||||
Version | string | Conditional |
The version number of the API code that you are programming against (e.g., 1149). The version you specify for a call has these basic effects:
For the SOAP API: If you are using the SOAP API, this field is required. Specify the version of the WSDL your application is using. For the XML API: If you are using the XML API, this field has no effect. Instead, specify the version in the X-EBAY-API-COMPATIBILITY-LEVEL HTTP header. (If you specify Version in the body of an XML API request and it is different from the value in the HTTP header, eBay returns an informational warning that the value in the HTTP header was used instead.) See:
|
||||||||||||||||||||||||||||||||||||||||
WarningLevel | WarningLevelCodeType | Optional |
Controls whether or not to return warnings when the application passes unrecognized or deprecated elements in a request. An unrecognized element is one that is not defined in any supported version of the schema. Schema element names are case-sensitive, so using WarningLevel can also help you remove any potential hidden bugs within your application due to incorrect case or spelling in field names before you put your application into the Production environment. WarningLevel only validates elements; it doesn't validate XML attributes. It also doesn't control warnings related to user-entered strings or numbers, or warnings for logical errors. We recommend that you only use this during development and debugging. Do not use this in requests performed in the Production environment. Applicable values: High if the user wishes to receive warnings when the application passes unrecognized or deprecated elements in an API call request. Setting the WarningLevel value to High is not recommended in a production environment. Instead, it should only be used during the development/debugging stage.Low if the user does not wish to receive warnings when the application passes unrecognized or deprecated elements in an API call request. This is the default value if WarningLevel is not specified in the call request.See Warning Level. |
Input Detail Controls Samples Change History |
Output
See also Samples.
The box below lists all fields that might be returned in the response. To learn more about an individual field or its type, click its name in the box (or scroll down to find it in the table below the box).
See also the Deprecated Objects link above. Fields presented in this color are deprecated, and fields presented in this color are not returned (or soon will not be returned) or are not operational (or soon will be non-operational).
<?xml version="1.0" encoding="utf-8"?> <UploadSiteHostedPicturesResponse xmlns="urn:ebay:apis:eBLBaseComponents"> <!-- Call-specific Output Fields --> <PictureSystemVersion> int </PictureSystemVersion> <SiteHostedPictureDetails> SiteHostedPictureDetailsType <BaseURL> anyURI </BaseURL> <ExternalPictureURL> anyURI </ExternalPictureURL> <FullURL> anyURI </FullURL> <PictureFormat> PictureFormatCodeType </PictureFormat> <PictureName> string </PictureName> <PictureSet> PictureSetCodeType </PictureSet> <PictureSetMember> PictureSetMemberType <MemberURL> anyURI </MemberURL> <PictureHeight> int </PictureHeight> <PictureWidth> int </PictureWidth> </PictureSetMember> <!-- ... more PictureSetMember nodes allowed here ... --> <UseByDate> dateTime </UseByDate> </SiteHostedPictureDetails> <!-- Standard Output Fields --> <Ack> AckCodeType </Ack> <Build> string </Build> <CorrelationID> string </CorrelationID> <Errors> ErrorType <ErrorClassification> ErrorClassificationCodeType </ErrorClassification> <ErrorCode> token </ErrorCode> <ErrorParameters ParamID="string"> ErrorParameterType <Value> string </Value> </ErrorParameters> <!-- ... more ErrorParameters nodes allowed here ... --> <LongMessage> string </LongMessage> <SeverityCode> SeverityCodeType </SeverityCode> <ShortMessage> string </ShortMessage> </Errors> <!-- ... more Errors nodes allowed here ... --> <HardExpirationWarning> string </HardExpirationWarning> <Timestamp> dateTime </Timestamp> <Version> string </Version> </UploadSiteHostedPicturesResponse>
Return Value | Type | Occurrence | Meaning |
---|
Call-specific Output Fields [Jump to standard fields] |
PictureSystemVersion | int | Always | Specifies the picture system version that was used to upload pictures. Only version 2 is valid. |
SiteHostedPictureDetails | SiteHostedPictureDetailsType | Always | The information about an UploadSiteHostedPictures upload, including the URL of the uploaded picture. |
SiteHostedPictureDetails .BaseURL |
anyURI | Always | This is the truncated version of the full URL. |
SiteHostedPictureDetails .ExternalPictureURL |
anyURI | Conditionally |
The URL of the external Web site hosting the uploaded photo. This field is returned if an ExternalPictureURL is provided in the call request. Max length: 500. |
SiteHostedPictureDetails .FullURL |
anyURI | Always | This is the full URL for the uploaded picture on the EPS server. This value should be stored by the seller, as this URL will be needed when create, revise, or relist an item and add this image to the listing. This URL will also be needed for unpublished pictures whose expiration date must be extended through an ExtendSiteHostedPictures call. |
SiteHostedPictureDetails .PictureFormat |
PictureFormatCodeType | Always |
This enumeration value indicates the image format of the generated image, such as JPG, GIF, or PNG.
Applicable values: Code so that your app gracefully handles any future changes to this list. |
SiteHostedPictureDetails .PictureName |
string | Conditionally | The seller-defined name for the picture. This field is only returned if a PictureName value was specified in the request. A name for a picture can make it easier to track than an arbitrary, eBay-assigned URL. |
SiteHostedPictureDetails .PictureSet |
PictureSetCodeType | Always |
This enumeration value indicates the size of the generated picture. This value may differ from the one specified in the request (e.g. if a Supersize image cannot be generated).
Applicable values: Code so that your app gracefully handles any future changes to this list. |
SiteHostedPictureDetails .PictureSetMember |
PictureSetMemberType | Always,
repeatable: [1..*] |
The URL and size information for each generated image. |
SiteHostedPictureDetails .PictureSetMember.MemberURL |
anyURI | Always | URL for the picture. |
SiteHostedPictureDetails .PictureSetMember .PictureHeight |
int | Always | Height of the picture in pixels. |
SiteHostedPictureDetails .PictureSetMember.PictureWidth |
int | Always | Width of the picture in pixels. |
SiteHostedPictureDetails .UseByDate |
dateTime | Always |
This timestamp indicates when the picture must be uploaded with an eBay listing before it is purged from the EPS server. By default, unpublished pictures (not associated with an active eBay listing) are kept on the EPS server for five days, but a seller can use the ExtensionInDays field in the request to make the expiration date further into the future (a maximum of 30 days). The seller can also use the ExtendSiteHostedPictures to extend the expiration date of the picture. |
Standard Output Fields |
Ack | AckCodeType | Always |
A token representing the application-level acknowledgement code that indicates the response status (e.g., success). The AckCodeType list specifies the possible values for the Ack field.
Applicable values: (Not all values in AckCodeType apply to this field.) Code so that your app gracefully handles any future changes to this list. |
Build | string | Always | This refers to the specific software build that eBay used when processing the request and generating the response. This includes the version number plus additional information. eBay Developer Support may request the build information when helping you resolve technical issues. |
CorrelationID | string | Conditionally |
Most Trading API calls support a MessageID element in the request and a CorrelationID element in the response. If you pass in a MessageID in a request, the same value will be returned in the CorrelationID field in the response. Pairing these values can help you track and confirm that a response is returned for every request and to match specific responses to specific requests. If you do not pass a MessageID value in the request, CorrelationID is not returned. Note: GetCategories is designed to retrieve very large sets of metadata that change once a day or less often. To improve performance, these calls return cached responses when you request all available data (with no filters). When this occurs, the MessageID and CorrelationID fields aren't applicable. However, if you specify an input filter to reduce the amount of data returned, the calls retrieve the latest data (not cached). When this occurs, MessageID and CorrelationID are applicable. |
Errors | ErrorType | Conditionally,
repeatable: [0..*] |
A list of application-level errors (if any) that occurred when eBay processed the request. |
Errors.ErrorClassification | ErrorClassificationCodeType | Conditionally |
API errors are divided between two classes: system errors and request errors.
Applicable values: Code so that your app gracefully handles any future changes to this list. |
Errors.ErrorCode | token | Conditionally |
A unique code that identifies the particular error condition that occurred. Your application can use error codes as identifiers in your customized error-handling algorithms.
See Errors By Number. |
Errors.ErrorParameters | ErrorParameterType | Conditionally,
repeatable: [0..*] |
This optional element carries a list of context-specific error variables that indicate details about the error condition. These are useful when multiple instances of ErrorType are returned. |
Errors.ErrorParameters [ attribute ParamID ] |
string | Conditionally | This optional element carries a list of context-specific error variables that indicate details about the error condition. These are useful when multiple instances of ErrorType are returned. |
Errors.ErrorParameters.Value | string | Conditionally | This is the value of the request parameter noted in the ParamID attribute. So, if the ParamID value was ItemID, the value in this field would be the actual value of that ItemID. |
Errors.LongMessage | string | Conditionally | A more detailed description of the condition that raised the error. |
Errors.SeverityCode | SeverityCodeType | Conditionally |
Indicates whether the error is a severe error (causing the request to fail) or an informational error (a warning) that should be communicated to the user.
Applicable values: If the source of the problem is within the application (such as a missing required element), change the application before you retry the request.
See the Error handling section of the Making a Trading API call guide for more information. When a warning occurs, the error is returned in addition to the business data. In this case, you do not need to retry the request (as the original request was successful). However, depending on the cause or nature of the warning, you might need to contact either the end user or eBay to effect a long term solution to the problem to prevent it from reoccurring in the future. Code so that your app gracefully handles any future changes to this list. |
Errors.ShortMessage | string | Conditionally | A brief description of the condition that raised the error. |
HardExpirationWarning | string | Conditionally | Expiration date of the user's authentication token. Only returned within the 7-day period prior to a token's expiration. To ensure that user authentication tokens are secure and to help avoid a user's token being compromised, tokens have a limited life span. A token is only valid for a period of time (set by eBay). After this amount of time has passed, the token expires and must be replaced with a new token. |
Timestamp | dateTime | Always |
This value represents the date and time when eBay processed the request. The time zone of this value is GMT and the format is the ISO 8601 date and time format (YYYY-MM-DDTHH:MM:SS.SSSZ). See the Time Values section in the eBay Features Guide for information about this time format and converting to and from the GMT time zone. Note: GetCategories and other Trading API calls are designed to retrieve very large sets of metadata that change once a day or less often. To improve performance, these calls return cached responses when you request all available data (with no filters). When this occurs, this time value reflects the time the cached response was created. Thus, this value is not necessarily when the request was processed. However, if you specify an input filter to reduce the amount of data returned, the calls retrieve the latest data (not cached). When this occurs, this time value does reflect when the request was processed. |
Version | string | Always | The version of the response payload schema. Indicates the version of the schema that eBay used to process the request. See the Standard Data for All Calls section in the eBay Features Guide for information on using the response version when troubleshooting CustomCode values that appear in the response. |
Input Output Samples Change History |
Detail Controls
DetailLevel
This call does not support varying Detail Levels. You do not need to pass DetailLevel in the request.
Input Output Detail Controls Change History |
Samples
New to making API calls? Please see Making a Call.
Note: Some item IDs, user IDs, or other data in these samples might no longer be active on eBay. If necessary, you can substitute current eBay data in your requests.
Uploads an image using a URL.
Description
Seller m***************r is going to list a Harry Potter book and she wants to upload an image of the book. Note: To ensure there are no copyright issues, we are using an image from the eBay Developers Program site instead of an image of the book.
Input
This call uses the ExternalPictureURL field to point to a picture that is hosted on a remote web server.
XML format.
<?xml version="1.0" encoding="utf-8"?>
<UploadSiteHostedPicturesRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<RequesterCredentials>
<eBayAuthToken>A*******3</eBayAuthToken>
</RequesterCredentials>
<WarningLevel>High</WarningLevel>
<ExternalPictureURL>https://**.*********.****.com/*****/*******/*****/******/****.jpg</ExternalPictureURL>
<PictureName>Developer Page Banner</PictureName>
</UploadSiteHostedPicturesRequest>
Output
This image is uploaded to the eBay Picture Service. The response contains the EPS URLs to the variously sized images that were created, as well as the URL that was passed in with the request.
XML format.
<?xml version="1.0" encoding="UTF-8"?>
<UploadSiteHostedPicturesResponse xmlns="urn:ebay:apis:eBLBaseComponents">
<Timestamp>2019-11-07T18:44:10.323Z</Timestamp>
<Ack>Success</Ack>
<Version>4</Version>
<Build>mediasvcs-4.4.14_20190831081631969</Build>
<PictureSystemVersion>2</PictureSystemVersion>
<SiteHostedPictureDetails>
<PictureName>Developer Page Banner</PictureName>
<PictureSet>Standard</PictureSet>
<PictureFormat>JPG</PictureFormat>
<FullURL>http://*.*******.***/**/*/***********=/*/***************8/$_*.***?****************7</FullURL>
<BaseURL>http://*.*******.***/**/*/***********=/*/***************8/$_</BaseURL>
<PictureSetMember>
<MemberURL>http://**************************************************/$_0.JPG</MemberURL>
<PictureHeight>24</PictureHeight>
<PictureWidth>96</PictureWidth>
</PictureSetMember>
<PictureSetMember>
<MemberURL>http://**************************************************/$_1.JPG</MemberURL>
<PictureHeight>100</PictureHeight>
<PictureWidth>400</PictureWidth>
</PictureSetMember>
<PictureSetMember>
<MemberURL>http://**************************************************/$_2.JPG</MemberURL>
<PictureHeight>50</PictureHeight>
<PictureWidth>200</PictureWidth>
</PictureSetMember>
<PictureSetMember>
<MemberURL>http://**************************************************/$_*2.JPG</MemberURL>
<PictureHeight>125</PictureHeight>
<PictureWidth>500</PictureWidth>
</PictureSetMember>
<PictureSetMember>
<MemberURL>http://**************************************************/$_*4.JPG</MemberURL>
<PictureHeight>16</PictureHeight>
<PictureWidth>64</PictureWidth>
</PictureSetMember>
<PictureSetMember>
<MemberURL>http://**************************************************/$_*5.JPG</MemberURL>
<PictureHeight>75</PictureHeight>
<PictureWidth>300</PictureWidth>
</PictureSetMember>
<PictureSetMember>
<MemberURL>http://**************************************************/$_*9.JPG</MemberURL>
<PictureHeight>32</PictureHeight>
<PictureWidth>32</PictureWidth>
</PictureSetMember>
<ExternalPictureURL>https://**.*********.****.com/*****/*******/*****/******/****.jpg</ExternalPictureURL>
<UseByDate>2018-11-20T23:18:20.326Z</UseByDate>
</SiteHostedPictureDetails>
</UploadSiteHostedPicturesResponse>
Input Output Detail Controls Samples |
Change History
Change Date | Description |
---|---|
0997 2017-01-20 |
|
0923 2015-05-15 |
|
0837 2013-08-29 |
|
0801 2012-11-28 |
|
0657 2010-02-17 |
|
0631 2009-08-19 |
|
0605 2009-02-18 |
|
0533 2007-10-03 |
|
0531 2007-09-19 |
|
0513 2007-05-16 |
|