Case management REST resource URIs
Each resource in the 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
The URI syntax for case management
REST resources is as follows:
http://host:port/context/CASEREST/v1/resourceName[?resourceParameters]The
variables used in the URI are:
- host
- The name of the server that is hosting the workflow REST protocol as configured for your web application server.
- port
- The host port that is used for REST protocol communications as configured for your web application server.
- context
- The web application context root for the REST protocol as configured for your web application
server. By default, this value is set to
CaseManager. - resourceName
- The name of the REST resource to use.
- resourceParameters
- Any parameters specified for the specified REST resource. Use an ampersand (&) to separate multiple parameters.
The REST protocol version identification (/v1) enables subsequent updates to the REST protocol.
The following example shows a URI for the particular activity 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.