TAG LINE
TAG LINE
SMALL TITLE
identity READ-ONLY | "identity": 17 Type: Number This is the unique numeric identifier for the ExtensionAttributeLookup |
extensionAttributeId | "extensionAttributeId": 21 Type: Number Unique identifier for the associated ExtensionAttribute object. |
extensionAttributeName | "extensionAttributeName": "Sample Name" Type: String The name of the object associated with the extensionAttributeId property. |
searchRequest | "searchRequest": "Hello World" Type: String |
columnName | "columnName": "Hello World" Type: String |
resourceName | "resourceName": "Hello World" Type: String |
| GET | Extension/Attribute/Lookup/ |
| Retrieve all of the ExtensionAttributeLookup objects. | |
Retrieve all of the ExtensionAttributeLookup objects. GET Extension/Attribute/Lookup/ HTTP/1.1 200 OK
{
"trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
"totalCount": 1,
"items": [
{
"identity": 1,
"extensionAttributeId": 17,
"extensionAttributeName": "Sample Text Data",
"searchRequest": "Sample Text Data",
"columnName": "Sample Text Data",
"resourceName": "Sample Text Data"
}
]
} | |
| GET | Extension/Attribute/Lookup/Paged |
| Retrieve all of the ExtensionAttributeLookup 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 ExtensionAttributeLookup objects in a paged fashion. GET Extension/Attribute/Lookup/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,
"extensionAttributeId": 27,
"extensionAttributeName": "Sample Text Data",
"searchRequest": "Sample Text Data",
"columnName": "Sample Text Data",
"resourceName": "Sample Text Data"
}
]
}
} | |
| GET | Extension/Attribute/Lookup/{id} |
| Retrieve an instance of the ExtensionAttributeLookup object by its ID. | |
| {id} | Unique identifier for the ExtensionAttributeLookup object. |
Retrieve an instance of the ExtensionAttributeLookup object by its ID. GET Extension/Attribute/Lookup/{id}HTTP/1.1 200 OK
{
"trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
"instance": {
"identity": 1,
"extensionAttributeId": 20,
"extensionAttributeName": "Sample Text Data",
"searchRequest": "Sample Text Data",
"columnName": "Sample Text Data",
"resourceName": "Sample Text Data"
}
} | |