OBJECT

Location

A location

link GraphQL Schema definition

  • type Location {
  • # The city of the address
  • city: String
  • # The Country Code of the address
  • country: String
  • # The unique identifier of the location
  • id: ID!
  • # The first line of the address
  • line1: String
  • # The second line of the address
  • line2: String
  • # The name of the location
  • name: String
  • # The NPI of the location
  • npi: String
  • # The Other ID of the location
  • other_id: String
  • # The Other ID Qualification of the location
  • other_id_qual: String
  • # The place of service associated with this location
  • place_of_service: PlaceOfService
  • # The place of service id of the location
  • place_of_service_id: String
  • # The state of the address (Uses the 2 letter abbreviation if in US)
  • state: String
  • # The location condensed to a single line
  • to_oneline: String
  • # Owner of this location
  • user: User
  • # The ID of the user
  • user_id: String
  • # The zip/postal code of the address
  • zip: String
  • }