Replies: 2 comments
-
@PhenomEY You can use the Product Type Definitions API to get the JSON Schemas describing the attributes and their requirements for a given product type: https://developer-docs.amazon.com/sp-api/docs/product-type-api-use-case-guide A
|
Beta Was this translation helpful? Give feedback.
0 replies
-
This helped me with below: If you want to update {
"messageId": 1,
"sku": "${SKU}",
"operationType": "PATCH",
"productType": "${PRODUCT_TYPE}",
"patches": [
{
"op": "replace",
"path": "/attributes/merchant_release_date",
"value": [
{
"value": "${YYYY_MM_DD}"
}
]
}
]
} https://developer-docs.amazon.com/sp-api/docs/feed-type-values |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello 😊
im trying to update the merchant_release_date with the patchListingsItem Operation. I cant find any documentation on the required value for the attribute, can someone help me out?
Beta Was this translation helpful? Give feedback.
All reactions