How can we get warehouse details like(email,phone)

Hey Tom,
I need a query for get all warehouse details where i can get warehouse email.currently i’m using below query. can you plaese help me to find out ,in which field we can get warehouse email.
query {
account {
complexity
request_id
data {
id
legacy_id
email
username
status
is_3pl
warehouses{
id
legacy_id
identifier
profile
address{
name
}
}
}
}
}

Team any update for me?

Hi @madhupatel
I apologize for the delay in my response, the field should be named invoice_email
Something like this

query {
  account {
    complexity
    request_id
    data {
      id
      legacy_id
      email
      username
      status
      is_3pl
      warehouses {
        id
        legacy_id
        identifier
        invoice_email
        profile
        address {
          name
        }
      }
    }
  }
} 

Let me know if that doesn’t work for you.
Thanks!
Tom

Hi Tom,
I need two more API’s one is for profile and the other is for getting shipping options.
If it is possible to get via API, please provide me query for the same.Please check the below image for more details.


Thanks in advance!
Madhu Patel

Hi @tomasw ,
Any update on my question?
Thanks Again
Regards Madhu Patel

Hi @madhupatel!
My apologies for the delayed response about this.
For the Warehouse (left of the image) should be the identifier and for the Profile (middle of the image) should be the profile both on the Query.
But for the Shipping Option (right of the image) those are not available at an Account Query level.
Those values will need to be retrieved from the UI at the moment, we don’t display the available Carriers and Methods on a query.
Thanks again for the patience and please let us know if there is anything else we could help with!
Tom