Skip to main content

Channels

EntityDatastoreDatastore.Channel

Channels represent communication or sales channels.

Use the Datastore_Channel endpoint to query channels.

Endpoints

List Channels

GET/v1/odata/Datastore_Channel

Single Channel

GET/v1/odata/Datastore_Channel({id})

Fields

Datastore Fields (inherited)

FieldTypeDescription
NameStringDisplay name
CodeStringUnique code identifier
LocalizedNameStringLocalized display name
IsDefaultBooleanWhether this is the default value

Filtering Examples

GET/v1/odata/Datastore_Channel?$filter=Name eq '{Name}'&$top={top}
GET/v1/odata/Datastore_Channel?$filter=contains(Name, '{Name}')&$top={top}
GET/v1/odata/Datastore_Channel?$filter=Code eq '{Code}'&$top={top}
GET/v1/odata/Datastore_Channel?$filter=IsDefault eq {IsDefault}&$top={top}

Custom Query

Build your own OData query against Datastore_Channel. Open Run and edit the whole request inline — swap the entity set, change the $filter, or add $expand, $select, $orderby, $top, $skip. Type $ for suggestions; use ↺ Reset to restore this example.

GET/v1/odata/Datastore_Channel?$top=10