GET/ad_campaign/{campaign_id}/ad/{ad_id}
This method retrieves the specified ad from the specified campaign.
In the request, supply the campaign_id and ad_id as path parameters.
Call getCampaigns to retrieve a list of the seller's current campaign IDs and call getAds to retrieve their current ad IDs.
Input
Resource URI
This method is supported in Sandbox environment. To access the endpoint, just replace the api.ebay.com
root URI with api.sandbox.ebay.com
URI parameters
Parameter | Type | Description |
---|---|---|
campaign_id | string | This path parameter specifies the unique eBay-assigned identifier of the ad campaign associated with the ad being retrieved. Use the getCampaigns method to retrieve campaign IDs. Occurrence: Required |
ad_id | string | This path parameter specifies the unique identifier of the ad being retrieved. Use the getAds method to retrieve ad IDs. Occurrence: Required |
HTTP request headers
All requests made to eBay REST operations require you to provide the Authorization
HTTP header for authentication authorization.
All other standard RESTful request headers are optional. For more information on standard RESTful request headers, see the HTTP request headers- opens rest request components page table.
OAuth scope
This request requires an access token created with the authorization code grant flow, using one or more scopes from the following list (please check your Application Keys page for a list of OAuth scopes available to your application):
https://api.ebay.com/oauth/api_scope/sell.marketing.readonly
https://api.ebay.com/oauth/api_scope/sell.marketing
See OAuth access tokens for more information.
Request payload
This call has no payload.
Request fields
This call has no field definitions.
Output
HTTP response headers
This call has no response headers.
Response payload
Response fields
Output container/field | Type | Description |
---|---|---|
adGroupId | string | A unique eBay-assigned ID for an ad group in a campaign that uses the Cost Per Click (CPC) funding model. This ID is created after a successful createAdGroup call, and all ad groups must be associated with a CPC campaign. Occurrence: Conditional |
adId | string | A unique eBay-assigned ID that is generated when the ad is created. Occurrence: Always |
adStatus | AdStatusEnum | The current status of the CPC ad.
Occurrence: Conditional |
alerts | array of Alert | An array containing alert messages for the ad. Occurrence: Conditional |
alerts.alertType | AlertTypeEnum | The type of alert message. For example, an invalid bid percentage. Occurrence: Conditional |
alerts.details | array of AlertDetails | A description of the alert including dimensions and aspects. Occurrence: Conditional |
alerts.details.dimension | AlertDimension | The dimension information of the alert including keys and values. Occurrence: Conditional |
alerts.details.dimension.key | DimensionKeyEnum | The key field of the applied dimension. For example, the marketplace Id. Occurrence: Conditional |
alerts.details.dimension.value | string | The value field of the applied dimension. For example, if the key is a Occurrence: Conditional |
alerts.details.aspect | Aspect | The aspect information of the alert including keys and values. Occurrence: Conditional |
alerts.details.aspect.key | AspectKeyEnum | The type of the aspect. For example, Occurrence: Conditional |
alerts.details.aspect.value | string | The value of the aspect. For example, if the aspect is a percentage, a value of '2.0' would equal 2%. Occurrence: Conditional |
bidPercentage | string | The user-defined bid percentage (also known as the ad rate) sets the level that eBay increases the visibility in search results for the associated listing. The higher the bidPercentage value, the more eBay promotes the listing.
If a bid percentage is not provided for an ad, eBay uses the default bid percentage of the associated campaign. Note:This field will always be returned for campaigns that use the Cost Per Sale (CPS) funding model. It will not be returned for campaigns that use the Cost Per Click (CPC) funding model. Note: This field has a minimum value of 2.0 and a maximum value of 100.0 . Occurrence: Conditional |
inventoryReferenceId | string | An ID that identifies a single-item listing or multiple-variation listing that is managed with the Inventory API. The inventory reference ID is a seller-defined value that can be either an SKU for a single-item listing or an inventoryItemGroupKey for a multiple-value listing. An inventoryItemGroupKey is a value that the seller defines to indicate a listing that's the parent of an inventory item group (a multiple-variation listing, such as a listing for a shirt that's available in multiple sizes and colors). This field is only returned if the ad is associated with a SKU or an inventory item group value. Occurrence: Always |
inventoryReferenceType | InventoryReferenceTypeEnum | The enumeration value returned here indicates the type of listing the inventoryReferenceId references. The value returned here will be This field is only returned if the ad is associated with a SKU or an inventory item group value. Occurrence: Always |
listingId | string | A unique eBay-assigned ID that is generated when a listing is created. Occurrence: Always |
HTTP status codes
This call can return one of the following HTTP status codes. For an overview of the status codes, see HTTP status codes in Using eBay RESTful APIs.
Status | Meaning |
---|---|
200 | Success |
400 | Bad Request |
404 | Not Found |
409 | Business error |
500 | Internal Server error |
Error codes
For more on errors, plus the codes of other common errors, see Handling errors.
Code | Domain | Category | Meaning |
---|---|---|---|
35001 | API_MARKETING | APPLICATION | There was a problem with an eBay internal system or process. Contact eBay Developer Technical Support for assistance. |
35002 | API_MARKETING | APPLICATION | Internal error. Please wait a few minutes and try the call again. |
35035 | API_MARKETING | REQUEST | The campaign with campaign id {campaign_id} has ended. |
35044 | API_MARKETING | REQUEST | No Ad found for 'ad_id' {ad_id}. Please correct the 'ad_id' and try again. |
35045 | API_MARKETING | REQUEST | No campaign found for campaign id {campaign_id}. |
Warnings
This call has no warnings.
Samples
New to making API calls? Please see Making a Call.
Note: Identifiers, such as order IDs or user IDs, and personal data in these samples might be anonymized or may no longer be active on eBay. If necessary, substitute current, relevant eBay data in your requests.
Sample 1: Retrieve Specific Ad
This sample retrieves the information of the ad based on its campaign and ad IDs.
Input
The inputs for this sample are the campaign_id and the adId, which are URI parameters.
GEThttps://api.ebay.com/sell/marketing/v1/ad_campaign/1********4/ad/1********4
Output
The output for this sample are the adId, bidPercentage, and listingId of the specified ad.