Replies: 1 comment
-
|
hi, did you solve this problem? Thank you so much for replying. |
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
Uh oh!
There was an error while loading. Please reload this page.
-
I am adding some HOME product types, first I submit the parent object and store the SKU parent object has these 3 values
` if (!attrs.ContainsKey("parentage_level")) {
attrs.Add("parentage_level", new object[] {
new {
language_tag = "en_CA",
value = "parent",
marketplace_id = FikaAmazonAPI.Utils.MarketPlace.Canada.ID
}
});
}
Then I create a child that has the Color or Size etc and submit it with these
`if (!attrs.ContainsKey("parentage_level")) {
attrs.Add("parentage_level", new object[] {
new {
language_tag = "en_CA",
value = "child",
marketplace_id = FikaAmazonAPI.Utils.MarketPlace.Canada.ID
}
});
}
The issue is now I see my parents in the inventory section like this
it shows incomplete and when I click them to see what is incomplete i get "This SKU has an inconsistent product classification with the ASIN. Please submit a feed to update this SKU to match the ASIN product classification. "
In the complete your drafts I see all the children items like this
in the Edit it shows
I am not sure how to fix this as I have included the color into the json and confirmed the child is getting a color selected
Any help?
@TechyChap
@abuzuhri
@ElonMusk
@jeffbezos
Beta Was this translation helpful? Give feedback.
All reactions