TAG LINE
TAG LINE
SMALL TITLE

Extension / Attribute / Lookup

(API Version v6)


What can you do with ExtensionAttributeLookup?


Properties

Property Details
identity
READ-ONLY
"identity": 24
Type: Number
This is the unique numeric identifier for the ExtensionAttributeLookup
extensionAttributeId
"extensionAttributeId": 17
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


End Points

GETExtension/Attribute/Lookup/
Retrieve all of the ExtensionAttributeLookup objects.
Retrieve all of the ExtensionAttributeLookup objects.
GET Extension/Attribute/Lookup/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "extensionAttributeId": 9,
            "extensionAttributeName": "Sample Text Data",
            "searchRequest": "Sample Text Data",
            "columnName": "Sample Text Data",
            "resourceName": "Sample Text Data"
        }
    ]
}
GETExtension/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
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,
                "extensionAttributeId": 26,
                "extensionAttributeName": "Sample Text Data",
                "searchRequest": "Sample Text Data",
                "columnName": "Sample Text Data",
                "resourceName": "Sample Text Data"
            }
        ]
    }
}
GETExtension/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}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "extensionAttributeId": 27,
        "extensionAttributeName": "Sample Text Data",
        "searchRequest": "Sample Text Data",
        "columnName": "Sample Text Data",
        "resourceName": "Sample Text Data"
    }
}