You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ambari.apache.org by "Ajit Kumar (JIRA)" <ji...@apache.org> on 2016/02/23 23:34:18 UTC

[jira] [Created] (AMBARI-15150) Support response body for DELETE API

Ajit Kumar created AMBARI-15150:
-----------------------------------

             Summary: Support response body for DELETE API 
                 Key: AMBARI-15150
                 URL: https://issues.apache.org/jira/browse/AMBARI-15150
             Project: Ambari
          Issue Type: Bug
          Components: ambari-server
    Affects Versions: 2.4.0
            Reporter: Ajit Kumar
            Assignee: Ajit Kumar
             Fix For: 2.4.0


DELETE API in ambari server can send only 200 OK or other response code with empty body. Current framework doesn't support sending json response in body.
In case of bulk DELETE API, server should send a json response to communicate keys which got deleted successfully and error message for keys which were not deleted.

DELETE response json object should be 
{code}
deleteResult : [
    deleted : {
        key : <resource-key>
    },
   deleted : {
        key : <resource-key>
    },
    ...
    error: {
        key : <resource-key>
        code: 404
        message: "Resource not found"
   },
   error: {
        key : <resource-key>
        code: 404
        message: "Resource not found"
   }
   ...
]

{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)