Giftpro API
  • Getting started
  • Common uses
    • Redeem at point-of-sale
    • Retrieving customer data
  • Filtering
  • Pagination
  • Errors
  • Reference
    • Properties
      • Delivery methods
    • Locations
    • Categories
    • Orders
      • Statuses
      • Address properties
    • Codes
      • Statuses
    • Balance events
      • Types of event
    • Vouchers
Powered by GitBook
On this page
  1. Reference
  2. Properties

Delivery methods

Delivery methods are created and attached to a single property, products that are sold for that property are assigned delivery methods by the users.

List delivery methods

GET https://api.giftpro.co.uk/properties/{domainID}/deliveryMethods/

Returns a list of the delivery methods that are available to the property

Path Parameters

Name
Type
Description

domainID*

int

[
    {
        "methodID": 2125,
        "domainID": 142,
        "name": "Email",
        "description": "Delivered instantly to your inbox",
        "requiresFulfillment": false,
        "offlineOnly": false,
        "basePrice": 0.00
    },
    {
        "methodID": 2126,
        "domainID": 142,
        "name": "Royal Mail 1st Class",
        "description": "Delivered on or before {date}",
        "requiresFulfillment": true,
        "offlineOnly": false,
        "basePrice": 2.95
    }\
]
PreviousPropertiesNextLocations

Last updated 1 year ago

The you want to retrieve the delivery methods for.

property