02-01-2023 04:50 PM
02-01-2023 04:56 PM - edited 02-01-2023 05:00 PM
02-13-2023 12:11 PM
@huich68wrote:
Is there any ebay RESTful API SDKs and where to get the pathFYI: https://api.ebay.com/sell/account/v2/rate_table/{rate_table_id}
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.
02-14-2023 04:19 AM
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;
}
}