TAG LINE
TAG LINE
SMALL TITLE
This entity represents different properties of a Custom Field.
identity READ-ONLY | "identity": 3 Type: Number This is the unique numeric identifier for the ExtensionAttribute |
ownerId READ-ONLY | "ownerId": 9 Type: Number Unique identifier for the associated Owner object. |
ownerName READ-ONLY | "ownerName": "Sample Name" Type: String The name of the object associated with the ownerId property. |
name | "name": "CPQ Order Number" Type: String The user defined name of the Custom Field. |
hint | "hint": "The number from your CPQ system" Type: String A user defined hint to show in the input field. |
description | "description": "This is the linking order number from our CPQ system" Type: String A user defined description for the Custom Field |
columnName | "columnName": "cpqOrderNumber" Type: String A user defined name for the column that will be returned from an API. |
defaultValue | "defaultValue": "00000" Type: String A default value to be used if no input is supplied |
isRequired | "isRequired": true Type: Boolean Whether or not this field is required to be entered. |
isActive | "isActive": true Type: Boolean Whether or not this field is available to be shown on a layout for a screen. |
dataSourceColumnDataTypeId | "dataSourceColumnDataTypeId": 20 Type: Number Unique identifier for the associated DataSourceColumnDataType object. |
dataSourceColumnDataTypeName | "dataSourceColumnDataTypeName": "Sample Name" Type: String The name of the object associated with the dataSourceColumnDataTypeId property. |
multiSelectDataSourceColumnDataTypeId | "multiSelectDataSourceColumnDataTypeId": 3 Type: Number Unique identifier for the associated DataSourceColumnDataType object. |
multiSelectDataSourceColumnDataTypeName | "multiSelectDataSourceColumnDataTypeName": "Sample Name" Type: String The name of the object associated with the multiSelectDataSourceColumnDataTypeId property. |
extensionAttributeEntityId | "extensionAttributeEntityId": 18 Type: Number Unique identifier for the associated ExtensionAttributeEntity object. |
extensionAttributeEntityName | "extensionAttributeEntityName": "Sample Name" Type: String The name of the object associated with the extensionAttributeEntityId property. |
isUnique | "isUnique": true Type: Boolean Whether or not to enforce a uniqueness rule on this field. |
minValue | "minValue": "5" Type: String Minimum value allowed in this field. |
maxValue | "maxValue": "500" Type: String Maximum value allowed in this field. |
validationDataTypeId | "validationDataTypeId": 24 Type: Number Unique identifier for the associated DataType object. |
validationDataTypeName | "validationDataTypeName": "Sample Name" Type: String The name of the object associated with the validationDataTypeId property. |
validationRegEx | "validationRegEx": "^[1-9]\d{2}-\d{3}-\d{4}" Type: String Regular expression to be applied for validation. |
formula | "formula": "Hello World" Type: String Unused |
extensionAttributeListTypeId | "extensionAttributeListTypeId": 25 Type: Number Unique identifier for the associated ExtensionAttributeListType object. |
extensionAttributeListTypeName | "extensionAttributeListTypeName": "Sample Name" Type: String The name of the object associated with the extensionAttributeListTypeId property. |
createdByUserId | "createdByUserId": 15 Type: Number Unique identifier for the associated User object. |
createdByUserName | "createdByUserName": "Sample Name" Type: String The name of the object associated with the createdByUserId property. |
created READ-ONLY | "created": "2021-04-26T15:25:27.587Z" Type: Date This is a system generated date when the record was created. Date and time values are specified in the ISO 8601 format. |
GET | Extension/Attribute/ |
Retrieve all of the ExtensionAttribute objects. | |
Retrieve all of the ExtensionAttribute objects. GET Extension/Attribute/ HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "totalCount": 1, "items": [ { "identity": 1, "ownerId": 11, "ownerName": "Sample Text Data", "name": "CPQ Order Number", "hint": "The number from your CPQ system", "description": "This is the linking order number from our CPQ system", "columnName": "cpqOrderNumber", "defaultValue": "00000", "isRequired": true, "isActive": true, "dataSourceColumnDataTypeId": 7, "dataSourceColumnDataTypeName": "Sample Text Data", "multiSelectDataSourceColumnDataTypeId": 17, "multiSelectDataSourceColumnDataTypeName": "Sample Text Data", "extensionAttributeEntityId": 18, "extensionAttributeEntityName": "Sample Text Data", "isUnique": true, "minValue": "5", "maxValue": "500", "validationDataTypeId": 5, "validationDataTypeName": "Sample Text Data", "validationRegEx": "^[1-9]\\d{2}-\\d{3}-\\d{4}", "formula": "Sample Text Data", "extensionAttributeListTypeId": 10, "extensionAttributeListTypeName": "Sample Text Data", "createdByUserId": 16, "createdByUserName": "Sample Text Data", "created": "2021-04-26T15:25:27.587Z" } ] } |
GET | Extension/Attribute/Paged |
Retrieve all of the ExtensionAttribute 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 ExtensionAttribute objects in a paged fashion. GET Extension/Attribute/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, "ownerId": 4, "ownerName": "Sample Text Data", "name": "CPQ Order Number", "hint": "The number from your CPQ system", "description": "This is the linking order number from our CPQ system", "columnName": "cpqOrderNumber", "defaultValue": "00000", "isRequired": true, "isActive": true, "dataSourceColumnDataTypeId": 8, "dataSourceColumnDataTypeName": "Sample Text Data", "multiSelectDataSourceColumnDataTypeId": 15, "multiSelectDataSourceColumnDataTypeName": "Sample Text Data", "extensionAttributeEntityId": 12, "extensionAttributeEntityName": "Sample Text Data", "isUnique": true, "minValue": "5", "maxValue": "500", "validationDataTypeId": 22, "validationDataTypeName": "Sample Text Data", "validationRegEx": "^[1-9]\\d{2}-\\d{3}-\\d{4}", "formula": "Sample Text Data", "extensionAttributeListTypeId": 16, "extensionAttributeListTypeName": "Sample Text Data", "createdByUserId": 24, "createdByUserName": "Sample Text Data", "created": "2021-04-26T15:25:27.587Z" } ] } } |
GET | Extension/Attribute/Paged/Detail |
Retrieve all of the ExtensionAttribute objects in a paged fashion with all object details. This endpoint returns additional detailed data related to this object. The specifics on which data is returned will depend on which related objects have been populated in the system. | |
Retrieve all of the ExtensionAttribute objects in a paged fashion with all object details. GET Extension/Attribute/Paged/Detail HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "pagination": { "pageNumber": 1, "pageSize": 20, "excludeTotalCount": false }, "pagedResults": { "totalCount": 1, "items": [ { "identity": 1, "ownerId": 23, "ownerName": "Sample Text Data", "name": "CPQ Order Number", "hint": "The number from your CPQ system", "description": "This is the linking order number from our CPQ system", "columnName": "cpqOrderNumber", "defaultValue": "00000", "isRequired": true, "isActive": true, "dataSourceColumnDataTypeId": 5, "dataSourceColumnDataTypeName": "Sample Text Data", "multiSelectDataSourceColumnDataTypeId": 6, "multiSelectDataSourceColumnDataTypeName": "Sample Text Data", "extensionAttributeEntityId": 0, "extensionAttributeEntityName": "Sample Text Data", "isUnique": true, "minValue": "5", "maxValue": "500", "validationDataTypeId": 22, "validationDataTypeName": "Sample Text Data", "validationRegEx": "^[1-9]\\d{2}-\\d{3}-\\d{4}", "formula": "Sample Text Data", "extensionAttributeListTypeId": 18, "extensionAttributeListTypeName": "Sample Text Data", "createdByUserId": 10, "createdByUserName": "Sample Text Data", "created": "2021-04-26T15:25:27.587Z", "details": { "listItems": [ { "identity": 67, "extensionAttributeId": 13, "extensionAttributeName": "Sample Text Data", "value": "Sample Text Data", "sortOrder": 31 } ], "lookup": { "identity": 51, "extensionAttributeId": 74, "extensionAttributeName": "Sample Text Data", "resourceName": "Sample Text Data", "columnName": "Sample Text Data" }, "dataSourceColumnDataType": { "identity": 66, "name": "Sample Text Data", "databaseTypeId": 67, "databaseTypeName": "Sample Text Data", "dataType": "Sample Text Data", "maxLength": 59, "dataSourceColumnBaseDataTypeId": 6, "dataSourceColumnBaseDataTypeName": "Sample Text Data", "defaultAlignment": 18, "isInternal": true }, "multiSelectDataSourceColumnDataType": { "identity": 49, "name": "Sample Text Data", "databaseTypeId": 37, "databaseTypeName": "Sample Text Data", "dataType": "Sample Text Data", "maxLength": 10, "dataSourceColumnBaseDataTypeId": 39, "dataSourceColumnBaseDataTypeName": "Sample Text Data", "defaultAlignment": 17, "isInternal": true } } } ] } } |
GET | Extension/Attribute/{id} |
Retrieve an instance of the ExtensionAttribute object by its ID. | |
{id} | Unique identifier for the ExtensionAttribute object. |
Retrieve an instance of the ExtensionAttribute object by its ID. GET Extension/Attribute/{id} HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "instance": { "identity": 1, "ownerId": 5, "ownerName": "Sample Text Data", "name": "CPQ Order Number", "hint": "The number from your CPQ system", "description": "This is the linking order number from our CPQ system", "columnName": "cpqOrderNumber", "defaultValue": "00000", "isRequired": true, "isActive": true, "dataSourceColumnDataTypeId": 13, "dataSourceColumnDataTypeName": "Sample Text Data", "multiSelectDataSourceColumnDataTypeId": 18, "multiSelectDataSourceColumnDataTypeName": "Sample Text Data", "extensionAttributeEntityId": 14, "extensionAttributeEntityName": "Sample Text Data", "isUnique": true, "minValue": "5", "maxValue": "500", "validationDataTypeId": 0, "validationDataTypeName": "Sample Text Data", "validationRegEx": "^[1-9]\\d{2}-\\d{3}-\\d{4}", "formula": "Sample Text Data", "extensionAttributeListTypeId": 25, "extensionAttributeListTypeName": "Sample Text Data", "createdByUserId": 27, "createdByUserName": "Sample Text Data", "created": "2021-04-26T15:25:27.587Z" } } |
GET | Extension/Attribute/{id}/Detail |
Retrieve deep detail of the ExtensionAttribute object by its ID. This endpoint returns additional detailed data related to this object. The specifics on which data is returned will depend on which related objects have been populated in the system. | |
{id} | Unique identifier for the ExtensionAttribute object. |
Retrieve deep detail of the ExtensionAttribute object by its ID. GET Extension/Attribute/{id}/Detail HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "instance": { "identity": 1, "ownerId": 7, "ownerName": "Sample Text Data", "name": "CPQ Order Number", "hint": "The number from your CPQ system", "description": "This is the linking order number from our CPQ system", "columnName": "cpqOrderNumber", "defaultValue": "00000", "isRequired": true, "isActive": true, "dataSourceColumnDataTypeId": 23, "dataSourceColumnDataTypeName": "Sample Text Data", "multiSelectDataSourceColumnDataTypeId": 4, "multiSelectDataSourceColumnDataTypeName": "Sample Text Data", "extensionAttributeEntityId": 0, "extensionAttributeEntityName": "Sample Text Data", "isUnique": true, "minValue": "5", "maxValue": "500", "validationDataTypeId": 3, "validationDataTypeName": "Sample Text Data", "validationRegEx": "^[1-9]\\d{2}-\\d{3}-\\d{4}", "formula": "Sample Text Data", "extensionAttributeListTypeId": 8, "extensionAttributeListTypeName": "Sample Text Data", "createdByUserId": 27, "createdByUserName": "Sample Text Data", "created": "2021-04-26T15:25:27.587Z", "details": { "listItems": [ { "identity": 67, "extensionAttributeId": 13, "extensionAttributeName": "Sample Text Data", "value": "Sample Text Data", "sortOrder": 31 } ], "lookup": { "identity": 51, "extensionAttributeId": 74, "extensionAttributeName": "Sample Text Data", "resourceName": "Sample Text Data", "columnName": "Sample Text Data" }, "dataSourceColumnDataType": { "identity": 66, "name": "Sample Text Data", "databaseTypeId": 67, "databaseTypeName": "Sample Text Data", "dataType": "Sample Text Data", "maxLength": 59, "dataSourceColumnBaseDataTypeId": 6, "dataSourceColumnBaseDataTypeName": "Sample Text Data", "defaultAlignment": 18, "isInternal": true }, "multiSelectDataSourceColumnDataType": { "identity": 49, "name": "Sample Text Data", "databaseTypeId": 37, "databaseTypeName": "Sample Text Data", "dataType": "Sample Text Data", "maxLength": 10, "dataSourceColumnBaseDataTypeId": 39, "dataSourceColumnBaseDataTypeName": "Sample Text Data", "defaultAlignment": 17, "isInternal": true } } } } |