Hi. I have a script that allows me to post directly using the API, but this doesn't seem to natively support tags that are nested inside another. For example, this code works
'relationships' => array(
'tags' => array(
'data' => array(
array(
'type' => 'tags',
'id' => "18",
),
In this case, ID 18 is a primary tag, and not nested anywhere. However, if I try to target the ID of the tag directly underneath, which would be 19, I get
{"errors":[{"status":"422","code":"validation_error","detail":"The tag count primary must be between 1 and 3.","source":{"pointer":"\/data\/relationships\/tags"}}]}
Is there any way around this ?