REST API - listProcessTemplateAttributes

The table summarizes the REST API - listProcessTemplateAttributes.

Request

Format
GET <baseurl>/process/list/templateattributes
Query parameters attributetype=string (0..n): Enumerated value which, if specified, filters the result set to include only those attributes which belong to the specified type (FILTERABLE, SORTABLE, DISPLAYABLE, HALT_ONLY).

Response

JSON Returns a JSON representation of the content of the templateAttributes element.
XML Returns the content of the templateAttributes element (from the ProcessManagement schema).

Example

Request
GET <baseurl>/process/list/templateattributes?attributetype=FILTERABLE
Response
 {
       "xml-fragment":
       {
           "templateAttribute":
           [
               {
                   "name": "DEFINITION.PRIORITY",
                   "type": "short"
               },
               {
                   "name": "DEFINITION.DESCRIPTION",
                   "type": "string"
               },
               {
                   "name": "DEFINITION.VERSION",
                   "type": "string"
               },
               {
                   "name": "DEFINITION.NAME",
                   "type": "string"
               },
               {
                   "name": "MODULE.NAME",
                   "type": "string"
               },
               {
                   "name": "DEFINITION.CREATION_DATE",
                   "type": "dateTime"
               }
           ]
       }
    }