Skip to main content
GET
/
api
/
v1
/
organization
cURL
curl --request GET \
  --url https://api-staging.getmeadow.com/api/v1/organization \
  --header 'X-Client-Key: <api-key>' \
  --header 'X-Consumer-Key: <api-key>'
{
  "id": 123,
  "name": "<string>",
  "customerEmail": "<string>",
  "customerPhone": "<string>",
  "hasDelivery": true,
  "hasPickup": true,
  "state": "<string>",
  "licenseNumber": "<string>",
  "taxesIncluded": true,
  "tz": "America/Los_Angeles"
}

Authorizations

X-Consumer-Key
string
header
required

The key assigned to your company and provided via Meadow

X-Client-Key
string
header
required

The key generated and provided by our mutual client

Response

Organization response

id
number

The id for the organization

name
string

The name of the organization

customerEmail
string | null

Customer facing email

customerPhone
string | null

Customer facing phone number

hasDelivery
boolean

Whether this organization accepts delivery orders

hasPickup
boolean

Whether this organization accepts pickup orders

state
string

The state this organization is located in

licenseNumber
string | null

The license number for this organization

taxesIncluded
boolean

Whether taxes are included in the price of products

tz
enum<string>

The timezone name of the organization. This value should be used to adjust UTC times found throughout the API

Available options:
America/Los_Angeles,
US/Mountain,
US/Central,
US/Eastern