Field for 3PL Customer name

I am trying to find which field shows the 3PL customers name. I assumed its ‘account {username}’ but when I query I get null.

Hi @ben-merchraise
Currently there is no way of getting that name, because it is assigned per warehouse as well.

The names you are referring to are the ones listed on the https://app.shiphero.com/3pl table under name, right?

For example:

Let me know if this is what you are referring to
Thanks in advance!
Tom

Correct. So there is no way to find the name tied to a customer_account_id?

That’s right, it is not available. But I will create a Feature Request to see if we could implement this
I will let you know as soon as I have a response about it.
Thanks again!
Tom

Hi @ben-merchraise
I apologize for the delayed response to this.
This now should be available by using the following query:

query {
  account {
    request_id
    complexity
    data {
      customers {
        edges {
          node {
            id
            email
            warehouses {
 		         company_alias             
            }
          }
        }
      }
    }
  }
} 

Under company alias, you can find the friendly name for the Customer account associated with that id

Let me know if that still doesn’t help!
Thanks again
Tom