Add Note To Issue
Add Note To Issue

This method adds a note to the 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.

Name Value
REST-API METHOD ADD NOTE TO 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>
	<IssueID>{IssueID}</IssueID>
	<IssueNote>
		<Description>{IssueDescription}</Description>
	</IssueNote>
</Issue>                                    
                                
                                                                        
                                        {
    "IssueID": "{IssueID}",
    "IssueNote": {
        "Description": "{IssueDescription}"
    }
}                                    
                                                                    
RESPONSE BODY
                                    
                                        <boolean
	xmlns="http://schemas.microsoft.com/2003/10/Serialization/">
  {OperationResult}
</boolean>                                    
                                
                                                                        
                                        {
    "0": "\n  {OperationResult}\n"
}