https://www.youtube.com/watch?v=UD5piH5Bd20
Hello,
am writing simple power automate flow to pass JSON to hide lists in SP, it is from YT, but I am having this error in the code
Parsing JSON Light feeds or entries in requests without entity set is not supported. Pass in the entity set as a parameter to ODataMessageReader.CreateODataEntryReader or ODataMessageReader.CreateODataFeedReader method.
clientRequestId: 832b9be0-700b-4cf5-acd2-cd7754077380
Error:
{
"status": 400,
"message": "Parsing JSON Light feeds or entries in requests without entity set is not supported. Pass in the entity set as a parameter to ODataMessageReader.CreateODataEntryReader or ODataMessageReader.CreateODataFeedReader method.\r\nclientRequestId: 832b9be0-700b-4cf5-acd2-cd7754077380\r\nserviceRequestId: 1ad904a1-a087-e000-38b7-6fb9fba7ed9b",
"errors": [
"-1",
"Microsoft.Data.OData.ODataException"
]
}
The code is

"inputs": {
"host": {
"connectionName": "shared_sharepointonline",
"operationId": "HttpRequest",
"apiId": "/providers/Microsoft.PowerApps/apis/shared_sharepointonline"
},
"parameters": {
"parameters/method": "PATCH",
"parameters/uri": "/_api/web/lists/getByTitle('SOX 20128 – Dissapear')",
"parameters/headers": {
"X-HTTP-Method": "MERGE",
"Accept": "application/json;odata=verbose",
"Content-Type": "application/json;data=verbose",
"IF-MATCH": "*"
},
"parameters/body": "{'__metadata':\n{'type':'SP.list'},\n'Hidden': true,\n'NoCrawl': true\n} "
},
"authentication": {
"type": "Raw",
"value": "@json(decodeBase64(triggerOutputs().headers['X-MS-APIM-Tokens']))['$ConnectionKey']"
}
},
"metadata": {
"operationMetadataId": "d35dddc9-a850-40ad-a278-02595f8962dd"
}
}
serviceRequestId: 1ad904a1-a087-e000-38b7-6fb9fba7ed9b
Do you know how to input the OData and where to find it?