Hi
New to this....I've got an API issue... I'm trying to upload some data but getting stumped with the format.
I can GET data and authorisation works with no problem... I can even upload certain fields at the basic level, but getting stuck using the Download Tool Payload where the required attribute is a lower 'subset'.
The URL requires PATCH to upload the data and this works:

I believe this is the same as :
{
"sku": "R0412GRY10L",
"description": "6204.69.2810"
}
This worked with no errors.

However, I want to be able to upload the following:
{
"sku": "R0412GRY10L",
"description": "6204.69.2810",
"classifications":[{"codes": ["6204.69.2810"],"region": "US"}]
}
I cant get the 'region' & 'codes' to work... my error is saying 400 "Unknown Attributes"
I've tried naming the attributes in different ways see here:



Is there a specific way to reach the "Classifications" sublevel? Should I be doing it on a separate URL?
Thanks