Terminal Hardware Shipping Methods Preview
A TerminalHardwareShipping represents a Shipping Method for Terminal hardware. A Shipping Method is a country-specific representation of a way to ship hardware, containing information such as the country, name, and expected delivery date.
Was this section helpful? Yes No
Retrieve a Terminal Hardware Shipping Method
GET / v1 / terminal / hardware_shipping_methods /:id
List all Terminal Hardware Shipping Methods
GET / v1 / terminal / hardware_shipping_methods
The Terminal Hardware Shipping Method object Preview
Attributes
- id string Unique identifier for the object.
- country enum The country in which this Shipping Method is available. Possible enum values
ADAEAFAGAIALAMAOAQARShow 239 more - estimated _ delivery _ window object The estimated delivery period containing the estimated minimum and maximum delivery dates. These dates are not guaranteed.
- name enum The name of the Terminal Hardware Shipping Method. Possible enum values
expressExpressfreightFreightpriorityPrioritystandardStandard
More attributes
- object string, value is "terminal.hardware_shipping_method"
- provider nullable enum
- status enum
- unavailable _ after nullable integer
The Terminal Hardware Shipping Method object
{ "id": "thsm_MfuTjLaPEgXMa4", "object": "terminal.hardware_shipping_method", "country": "US", "estimated_delivery_window": { "maximum_date": "2023-10-03", "minimum_date": "2023-10-03" }, "name": "standard", "status": "available", "unavailable_after": null}
Retrieve a Terminal Hardware Shipping Method Preview
GET / v1 / terminal / hardware_shipping_methods /:id
Retrieves a TerminalHardwareShippingMethod object.
Parameters
No parameters.
Returns
Returns a TerminalHardwareShippingMethod object if a valid identifier was provided.
cURL
Response
{ "id": "thsm_MfuTjLaPEgXMa4", "object": "terminal.hardware_shipping_method", "country": "US", "estimated_delivery_window": { "maximum_date": "2023-10-03", "minimum_date": "2023-10-03" }, "name": "standard", "status": "available", "unavailable_after": null}
