Get all warehouses

Hi @LancyBark!
You could use the account query to be able to see all the information about your warehouses.
Something like this:

query {
  account {
    request_id
    complexity
    data {
      warehouses {
        id
        legacy_id
        address {
          name
          address1
          address2
          city
          state
          country
          zip
          phone
        }
        account_id
        identifier
        dynamic_slotting
        invoice_email
        phone_number
        profile
      }
    }
  }
} 

You can also see the rest of the available fields for this and any other query by navigating through the Schema & Docs

Please let me know if there is anything else I could help you with,
Thanks!
Tom