cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

List of eBay APIs SDK

Where can I find list of eBay APIs SDK?

Message 1 of 4
latest reply
3 REPLIES 3

List of eBay APIs SDK

List of eBay APIs SDK

 

@huich68wrote:
Is there any ebay RESTful API SDKs and where to get the path

FYI: https://api.ebay.com/sell/account/v2/rate_table/{rate_table_id}


@huich68 

eBay's list of SDKs can be found here:

https://developer.ebay.com/develop/ebay-sdks

 

But I suspect what you may need is a list of endpoints for various calls.

Use the API Explorer to help find all of your endpoints.

Read the API Explorer instructions here:

https://developer.ebay.com/api-docs/static/gs_use-the-api-explorer-to-try.html

where you will find a link to:

Go to API Explorer.

 

After logging in, you can select Sandbox/Production, eBay site, and the API in the left column. The endpoint will be shown on the right, providing an opportunity to test your call to that endpoint.

 

ShipScript has been an eBay Community volunteer since 2003, specializing in HTML, CSS, Scripts, Photos, Active Content, Technical Solutions, and online Seller Tools.
Message 3 of 4
latest reply

List of eBay APIs SDK

 

 

Is there any ebay RESTful API SDKs and where to get the path

FYI:


package
com.ebay.sell.account.policies.models;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import java.util.LinkedList;
import java.util.List;

@JsonIgnoreProperties(ignoreUnknown = true)
public class FulfillmentPolicy {
private String name;

private String marketplaceId;

private List<PolicyCategoryType> categoryTypes = new LinkedList<>();

private String fulfillmentPolicyId;

public String getName() {
return this.name;
}

public void setName(String name) {
this.name = name;
}

public String getMarketplaceId() {
return this.marketplaceId;
}

public void setMarketplaceId(String marketplaceId) {
this.marketplaceId = marketplaceId;
}

public List<PolicyCategoryType> getCategoryTypes() {
return this.categoryTypes;
}

public void setCategoryTypes(List<PolicyCategoryType> categoryTypes) {
this.categoryTypes = categoryTypes;
}

public String getFulfillmentPolicyId() {
return this.fulfillmentPolicyId;
}

public void setFulfillmentPolicyId(String fulfillmentPolicyId) {
this.fulfillmentPolicyId = fulfillmentPolicyId;
}
}
Message 4 of 4
latest reply