Newer Version Available

This content describes an older version of this product. View Latest

OwnerChangeOptionInfo

Represents default and optional actions that can be performed when a record’s owner is changed. Available in Tooling API version 35.0 and later.

Supported SOAP Calls

describeSObject(), query(), retrieve()

Supported REST HTTP Methods

GET

Fields

Field Details
DefaultValue
Type
boolean
Properties
Filter, Group, Sort
Description
Default value of the checkbox for this option in the user interface.
EntityDefinition
Type
EntityDefinition
Properties
Filter, Group, Sort
Description
The object to which this change applies.
EntityDefinitionId
Type
string
Properties
Filter, Group, Sort
Description

The ID of the entity containing the record.

IsEditable
Type
boolean
Properties
Filter, Group, Sort
Description
Indicates whether this option is editable by the user when updating the owner using the OwnerChangeOptions SOAP header.
Label
Type
string
Properties
Filter, Group, Sort
Description
The label that corresponds to the option in the user interface.
Name
Type
string
Properties
Filter, Group, Sort
Description
The unique name for the option.

Example

Retrieve all the change options for contacts.

1
2SELECT Id, Name, Label, IsEditable, DefaultValue, EntityDefinition.QualifiedApiName 
3FROM OwnerChangeOptionInfo 
4WHERE EntityDefinition.QualifiedName='Contact’