In the Orchestrator API call, when the asset name contains "&", how to pass the special character so that the API call will be successful? How to pass special character(&) in Orchestrator API call ?
For special characters in API call, it needs to be escaped as ODATA is being used. For "POST" commands special characters cannot be used as mentioned in link : Building API Requests - Post Requests .
As a workaround, consider the example: In the Orchestrator API query, if there is special character (&) in the query string in quotation mark, the special character need to be double-encoded. Run the API in Swagger and observe how it is being encoded. As per the below screenshot, change the character '&' to '%2526', and the API call should run successfully.