REST API - getOrgEntityConfigAttributesAvailable

The table summarizes the REST API - getOrgEntityConfigAttributesAvailable.

Request

Format
GET <baseurl>/orgentityconfig/getavailattr/<startpos>/<numitems>
Path parameters
  • startpos: Position from which to start listing configuration attributes.
  • numitems: Number of configuration attributes to list.

Response

JSON Returns a JSON representation of the content of the getOrgEntityConfigAttributesAvailableResponse element.
XML Returns the content of the getOrgEntityConfigAttributesResponse element (from the OrganisationalEntityConfigService schema)

Example

Request
GET <baseurl>/orgentityconfig/getavailattr/2/2
Response
{
    "xml-fragment": {
        "orgEntityConfigAttributesAvailable": [
            {
                "attributeName": "WorkItemOrderCriteriaAPI",
                "readOnly": true
            },
            {
                "attributeName": "WorkItemOrderCriteriaPARSED",
                "readOnly": true
            }
        ]
    }
}