Status Codes

When you call any of the REST API for Oracle® Session Delivery Management Cloud (Oracle SDM Cloud) resources, the Response header returns one of the standard HTTPS status codes that appear in the message and defined in the following table:

Code Description
200 OK The request was successfully completed. A 200 status is returned for a successful GET, PUT or POST request method.For example, in a GET request, the response contains an entity corresponding to the requested resource and in a POST request, the response contains an entity describing or containing the result of the action.
201 Created A HTTPS 201 Created status code indicates that a client's request has been successfully processed, resulting in the creation of a new resource. This status is commonly associated with POST requests, where the server creates a new resource based on the client's data.
204 No Content The server successfully processed the request but is not returning any content. This code is usually used as a response to a successful delete request.