All URIs are relative to https://openapi.etsy.com
Method | HTTP request | Description |
---|---|---|
getListingOffering | GET /v3/application/listings/{listing_id}/products/{product_id}/offerings/{product_offering_id} |
\Swagger\Client\Model\ListingInventoryProductOffering getListingOffering($listing_id, $product_id, $product_offering_id)
General ReleaseReport bug
This endpoint is ready for production use.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('x-api-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('x-api-key', 'Bearer');
$apiInstance = new Swagger\Client\Api\ShopListingOfferingApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$listing_id = 56; // int |
$product_id = 56; // int |
$product_offering_id = 56; // int |
try {
$result = $apiInstance->getListingOffering($listing_id, $product_id, $product_offering_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ShopListingOfferingApi->getListingOffering: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
listing_id | int | ||
product_id | int | ||
product_offering_id | int |
\Swagger\Client\Model\ListingInventoryProductOffering
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]