REST API - getAllAttributes
The table summarizes the REST API - getAllAttributes.
Request
Format | GET <baseurl>/audit/attributes/get |
Query parameters |
|
Response
JSON | Returns a JSON representation of the content of an AttributeDefinition element. |
XML | Returns the content of an AttributeDefinition element (from the EventCollectorQueryService schema) for each attribute. |
Example
Request | GET <baseurl>/audit/attributes/get?requiredextendeddata=IS_FILTERABLE |
Response | <?xml version="1.0" encoding="UTF-8"?> <xml-fragment> <definition> <category>message</category> <componentId>21</componentId> <id>1</id> <isPrimary>true</isPrimary> <length>256</length> <name>messageId</name> <type>STRING</type> <isFilterable>true</isFilterable> </definition> <definition> <category>environment</category> <componentId>1</componentId> <id>2</id> <isPrimary>false</isPrimary> <length>-1</length> <name>environmentName</name> <type>STRING</type> <isFilterable>false</isFilterable> </definition> ... ... </definition> </xml-fragment> |