First I fetch all the data of product from GetItem API.
$netoDataAll = $this->loader->neto('GetItem', $options);
Now I want to fetch categories data from the product.
$options = [
'Filter' => [
'ID' => $id,
'OutputSelector' => [
]
]
];
$netoData = $this->loader->neto('GetCategory', $options);
But when I run this, I am getting below error.
"CurrentTime" => "2024-03-26 04:18:34"
"Ack" => "Error"
"Messages" => array:1 [
"Error" => array:3 [
"Message" => "Request Error"
"SeverityCode" => "Error"
"Description" => "Internal server error."
]
]