Case management REST resource URIs
Each resource in the IBM® Business Automation Workflow REST protocol is identified by a unique URI. This URI includes the resource name and any parameters that are required for the specific method that you are calling.
Syntax
http://host:port/context/CASEREST/v1/resourceName[?resourceParameters]- host
- The name of the server that is hosting the IBM Business Automation Workflow REST protocol as configured for your web application server.
- port
- The host port that is used for IBM Business Automation Workflow REST protocol communications as configured for your web application server.
- context
- The web application context root for the IBM Business Automation
Workflow REST protocol as configured
for your web application server. By default, this value is set to
CaseManager. - resourceName
- The name of the IBM Business Automation Workflow REST resource to use.
- resourceParameters
- Any parameters specified for the specified IBM Business Automation Workflow REST resource. Use an ampersand (&) to separate multiple parameters.
The IBM Business Automation Workflow REST protocol version identification (/v1) enables subsequent updates to the REST protocol.
The following example shows a URI for the particular task instance resource.
http://example.com:9080/CaseManager/CASEREST/v1/task
/7A75A997-0E42-406E-AZC4-EE55D7DER9PF?TargetObjectStore=MyExampleObjectStore
&Grouping=RODSpecial characters
Besides ASCII letters and decimal digits, you can use the following characters without any special notation in the case management REST URIs: $ - _ . + ! * ' ( ) ,
You must escape any other character, including spaces, double quotation marks (“ and ”), and percent signs (%). To escape a character in UTF-8 encoding, use %xy where xy is the two-digit hexadecimal value of the character. For example, %20 is the escaped representation of a space in a URI.