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 templateAttributeselement. |
XML | Returns the content of the templateAttributeselement (from the ProcessManagementschema). |
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" } ] } } |