Get Action

The client makes a GET request providing input parameters CompanyId, MaximumRows, StartRowIndex and LanguageID. The output will be either in json or xml format depending on the request type.

Name Value
REST-API METHOD GET ACTION
HTTP METHOD GET
RESPONSE TYPE XML
URL https://api.csm.next4biz.net/services/IssueService/{CompanyID}/getactions.json/{maximumRows}/{startRowIndex}/{langID}https://api.csm.next4biz.net/services/IssueService/{CompanyID}/getactions.xml/{maximumRows}/{startRowIndex}/{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
GET
RESPONSE BODY
                                    
                                        <ArrayOfAction>
	<Action>
		<ActionID>{ActionID}</ActionID>
		<ActionName>{ActionName}</ActionName>
		<Status>{Status}</Status>
	</Action>
</ArrayOfAction>                                    
                                
                                                                        
                                        {
    "Action": {
        "ActionID": "{ActionID}",
        "ActionName": "{ActionName}",
        "Status": "{Status}"
    }
}