Takeownership Issue
Takeownership Issue

This method takes ownership a customer issue. The client makes a PUT request providing Request body in either xml or json format and input parameter LangID in the request url. The output will be either in json or xml format depending on the request type. Response returns success or fail of the operation as boolean. StatusID should be 4.

Name Value
REST-API METHOD TAKEOWNERSHIP ISSUE
HTTP METHOD POST
RESPONSE TYPE XML
URL https://api.csm.next4biz.net/services/IssueService/{CompanyID}/updateissue.json/{LangID} https://api.csm.next4biz.net/services/IssueService/{CompanyID}/updateissue.xml/{LangID}
REQUEST HEAD Authorization: Basic {base64 encoded username:password} Accept: text/html,application/xhtml+json,application/json;q=0.9,*/*;q=0.8 Content-Type: application/jsonAuthorization: Basic {base64 encoded username:password} Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Content-Type: application/xml
  • XML
  • JSON
ENDPOINT DEFINITION
POST
REQUEST BODY
                                    
                                        <Issue>
	<BusinessChannelID>{BusinessChannelID}</BusinessChannelID>
	<IssueID>{IssueID}</IssueID>
	<ResolutionStatus>
		<StatusID>{StatusID}</StatusID>
	</ResolutionStatus>
</Issue>                                    
                                
                                                                        
                                        {
    "BusinessChannelID": "{BusinessChannelID}",
    "IssueID": "{IssueID}",
    "ResolutionStatus": {
        "StatusID": "{StatusID}"
    }
}                                    
                                                                    
RESPONSE BODY
                                    
                                        <boolean
	xmlns="http://schemas.microsoft.com/2003/10/Serialization/">
  {OperationResult}
</boolean>                                    
                                
                                                                        
                                        {
    "0": "\n  {OperationResult}\n"
}