Channels
Channels represent communication or sales channels.
Use the Datastore_Channel endpoint to query channels.
Endpoints
List Channels
GET
/v1/odata/Datastore_ChannelSingle Channel
GET
/v1/odata/Datastore_Channel({id})Fields
Datastore Fields (inherited)
| Field | Type | Description |
|---|---|---|
Name | String | Display name |
Code | String | Unique code identifier |
LocalizedName | String | Localized display name |
IsDefault | Boolean | Whether 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}