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}