All Release Notes

Added Custom Fields to Shipping Methods

27 January 2021
Composable Commerce
HTTP API
Enhancement
ExtensibilityGraphQLOrders

You can now add Custom Fields to Shipping Methods via the Shipping Methods API and the GraphQL API endpoints. This allows you to provide more information about your shipping services, for instance, the estimated delivery window, a carrier code, a pick-up point, or the 'track and trace URL format'.

Introduced the following changes to the GraphQL schema (in SDL format):

extend type ShippingMethod {
custom: CustomFieldsType
}
extend input ShippingMethodUpdateAction {
setCustomType: SetCustomType
setCustomFields: SetCustomFields
}