Reduce API Calls by Returning New ID on Object Conversion
When converting object types through the API (for example, converting an article to a conversation), the API should return the new object ID as part of the response.
Right now, the workflow requires multiple unnecessary steps:
-
Retrieve the current publicID
-
Perform the conversion
-
Query all objects to locate the newly created ID using the public ID
Only after that can you continue working with the converted object. This creates extra API calls, additional compute, and avoidable complexity for what should be a straightforward operation.
Returning the new ID in the conversion response would streamline the process significantly.