SalesChannel
A single sales channel.
More info: see the get operation and the sales channels endpoint.
Fields
Field | Description |
---|---|
id int (required) | Unique ID Example value:123 |
typeid int (required) | The type of this sales channel, defines where this sales channel will be used. The available values for this field can be found on the sales channel overview page. Example value:3002 |
name mlstring (required) | Name of the sales channel Example value:"Website" |
ordermailtemplateid_confirmation int (required) | The ID of the order mail template to use for sending confirmations. Can be 0 to indicate that no mail should be sent Example value:123 |
ordermailtemplateid_confirmation_sendalways bool (required) | Always send the confirmation, regardless of the payment method configuration |
isarchived bool (required) | Whether or not this item is archived |
createdts timestamp (required) | Created timestamp Example value:"2014-09-26 15:24:36" |
lastupdatets timestamp (required) | Last updated timestamp Example value:"2014-09-26 15:24:36" |
Example
1{
2 "id": 123,
3 "typeid": 3002,
4 "name": "Website",
5 "ordermailtemplateid_confirmation": 123,
6 "ordermailtemplateid_confirmation_sendalways": false,
7 "isarchived": false,
8 "createdts": "2014-09-26 15:24:36",
9 "lastupdatets": "2014-09-26 15:24:36"
10}