Get merchant settings
GET /merchant
Returns an object representing your merchant account settings.
Body
{
  "store_name": "New Store Name",
  "company_name": "Harold Pty Ltd",
  "contact_name": "Robert",
  "contact_phone": "0400000000",
  "shipping_cart_method_name": "",
  "preparation_time": 60,
  "website_url": "www.haroldsharpoons.com.au",
  "address_1": "110 Rex Road",
  "suburb": "Sydney",
  "state": "NSW",
  "postcode": "2000"
}
Update merchant settings
PATCH /merchant
Given an object with the desired settings to update, updates the Merchant settings on Shippit.
Body
{
  "merchant": {
    "store_name": "New Store Name"
  }
}
Properties
| Name | Type | Required | Restrictions | Description | 
|---|---|---|---|---|
| merchant | Merchant | true | none | Fields to update on a merchant account. |