TAG LINE
TAG LINE
SMALL TITLE
This internal entity represents if a Custom Field list is either single or multi-select.
identity READ-ONLY | "identity": 2 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": 11 Type: Number Unused |
| GET | Extension/Attribute/ListType/ |
| Retrieve all of the ExtensionAttributeListType objects. | |
Retrieve all of the ExtensionAttributeListType objects. GET Extension/Attribute/ListType/ HTTP/1.1 200 OK
{
"trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
"totalCount": 1,
"items": [
{
"identity": 1,
"name": "Multi-Select",
"sortOrder": 7
}
]
} | |
| GET | Extension/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 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": 10
}
]
}
} | |
| GET | Extension/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}HTTP/1.1 200 OK
{
"trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
"instance": {
"identity": 1,
"name": "Multi-Select",
"sortOrder": 24
}
} | |