TAG LINE
TAG LINE
SMALL TITLE

Extension / Attribute / List Type

(API Version v5)


This internal entity represents if a Custom Field list is either single or multi-select.


What can you do with ExtensionAttributeListType?


Properties

Property Details
identity
READ-ONLY
"identity": 15
Type: Number
This is the unique numeric identifier for the ExtensionAttributeListType
name
READ-ONLY
"name": "Multi-Select"
Type: String
The system defined List Type name.
sortOrder
READ-ONLY
"sortOrder": 15
Type: Number
Unused


End Points

GETExtension/Attribute/ListType/
Retrieve all of the ExtensionAttributeListType objects.
Retrieve all of the ExtensionAttributeListType objects.
GET Extension/Attribute/ListType/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "name": "Multi-Select",
            "sortOrder": 3
        }
    ]
}
GETExtension/Attribute/ListType/Paged
Retrieve all of the ExtensionAttributeListType objects in a paged fashion. This endpoint implements pagination for its results. Individual pages can be requested to return a particular paged set in the list of results. To learn more, see details on working with paginated endpoints.
Retrieve all of the ExtensionAttributeListType objects in a paged fashion.
GET Extension/Attribute/ListType/Paged
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "pagination": {
        "pageNumber": 1,
        "pageSize": 20,
        "excludeTotalCount": false
    },
    "pagedResults": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "name": "Multi-Select",
                "sortOrder": 25
            }
        ]
    }
}
GETExtension/Attribute/ListType/{id}
Retrieve an instance of the ExtensionAttributeListType object by its ID.
{id}Unique identifier for the ExtensionAttributeListType object.
Retrieve an instance of the ExtensionAttributeListType object by its ID.
GET Extension/Attribute/ListType/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "name": "Multi-Select",
        "sortOrder": 24
    }
}