Add custom field to 3PL customer object

Hi there,

I was curious if it’s possible to add a custom field at the 3PL customer level? If not, is there another way we can add metadata to our 3PL customers?

All the best,
Colin

Hi @cschouten

The only thing really updatable for a 3PL child is the name here: https://app.shiphero.com/3pl

Which you can pull from:

query {
  account(analyze: false) {
    request_id
    data {
      legacy_id
      id
      customers {
        edges {
          node {
            warehouses {
              company_alias <--- Here
            }
          }
        }
      }
    }
  }
}

Good to know! Thanks @tomasfd