shipmentMethod resource type
Represents a shipment method in Business Central.
Note
For information about enabling APIs for Business Central see Enabling the APIs for Dynamics 365 Business Central.
Methods
Method | Return Type | Description |
---|---|---|
GET shipmentMethod | shipmentMethod | Gets a shipment method object. |
DELETE shipmentMethod | none | Deletes a shipment method object. |
POST shipmentMethod | shipmentMethod | Creates a shipment method object. |
PATCH shipmentMethod | shipmentMethod | Updates a shipment method object. |
Properties
Property | Type | Description |
---|---|---|
id | GUID | The unique ID of the shipment method. Non-editable. |
code | string | The code of the shipment method. |
displayName | string | Specifies the shipment method's name. This name will appear on all sales documents for the shipment method. |
lastModifiedDateTime | datetime | The last datetime the shipment method was modified. Read-Only. |
JSON representation
Here is a JSON representation of the shipmentMethod resource.
{
"id": "GUID",
"code": "string",
"displayName": "string",
"lastModifiedDateTime": "datetime"
}
Related information
GET shipmentMethod
DELETE shipmentMethod
POST shipmentMethod
PATCH shipmentMethod