Get Product Pricing Sync Profile
GET/api/v2/products/:product/pricing-sync-profile
The product's own pricing sync profile and, for every listing of the product, the profile that actually governs it on that channel. A listing's own profile wins over the product's, which wins over the channel default; a channel with no profile at any level pushes with its inline settings.
products:readGrant this scope to your token under Settings → Developer → Personal Access Tokens.
Authentication: Requires Bearer token.
Requires the products:read scope for API tokens.
Response data:
- pricing_sync_profile_id (integer|null): the product-level profile
- profile (object|null): that profile as
{id, name} - channels (array): one entry per listing of the product —
- integration_instance_id, channel_name (the channel as named in SKU.io, e.g.
AMZ partusa), integration_name (the integration the channel runs on, e.g.Amazon), product_listing_id, listing_sku - effective_profile (object|null):
{id, name}of the profile in force, null for inline settings - source (string): where it came from —
listing,product,channelorinline - not_priced (boolean): no level in the governing sequence has a price for this product, so nothing is sent for that listing
- note (string|null): the explanation when not_priced is true
- integration_instance_id, channel_name (the channel as named in SKU.io, e.g.
Request
Responses
- 200
- 401
- 403
- 404
- 429
OK
Response Headers
Unauthenticated — the bearer token is missing, revoked, expired, or malformed. Never retry automatically; fix the credential. See the Errors guide.
Forbidden — the token lacks a required scope, the endpoint is not available to API tokens, or the user behind the token lacks the permission. A human must adjust the token scopes or user permissions; do not retry.
Not found — no record with the given identifier (or the route does not exist). Verify the ID before retrying.
Rate limited — platform limit is 1,000 requests/min; individual tokens may carry lower limits. Honor the Retry-After header before retrying. See the Rate Limits guide.