After each configuration API call, we currently need to make a separate Status API call to check the status of the configuration. Is there a way to receive the status directly in the response of the Configuration API calls, so that we can avoid making an additional Status API call every time?
Since POST and GET are different methods that function differently, a POST request can only modify configuration, while a GET request can only retrieve it.
This means that changing and retrieving configuration cannot be done in a single request—they must be handled with separate requests.