> For the complete documentation index, see [llms.txt](https://api.parking24.online/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://api.parking24.online/reference/zavgar-api-reference/graphql/types/contact.md).

# Contact

```graphql
type Contact {
  id: Int!
  
  # Contact first name
  firstName: String

  # Contact middle name
  middleName: String

  # Contact phone
  phone: String

  # Contact second name
  secondName: String

  # Get contact fio. Example: "Bazarov Evgeny Vasilyevich"
  fio: String

  # Get contact short fio. Example: "Bazarov E. V."
  fioShort: String

  # Get one vehicle
  vehicle: Vehicle!

  # Get contact's vehicles
  vehicles: [Vehicle!]!
}
```
