---
title: "Contact Details"
url: "https://developer.retailexpress.com.au/apis/public-api-0/versions/d2454f6f-56f1-4fd6-9cd1-82871d94bd1c/schemas/ContactDetails"
---

> Full API specification: https://developer.retailexpress.com.au/apis/public-api-0/versions/d2454f6f-56f1-4fd6-9cd1-82871d94bd1c.md

# Contact Details

Contact details for an entity

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: PublicApi
  version: 0.1.0
servers:
  - url: https://api.retailexpress.com.au/{basePath}
    variables:
      basePath:
        default: v1
components:
  schemas:
    ContactDetails:
      title: Contact Details
      type: object
      properties:
        country:
          title: Country
          type: string
          description: The address country
        postcode:
          title: Postcode
          type: string
          description: The address postcode
        last_name:
          title: Last Name
          type: string
          description: The last name of the contact
        fax_number:
          title: Fax number
          type: string
          description: The fax number of the contact
        email_address:
          title: Email Address
          type: string
          description: The email address of the contact
        company_name:
          title: Company Name
          type: string
          description: The company name of the contact
        address_line_1:
          title: Address Line 1
          type: string
          description: The first line of the address
        suburb:
          title: Suburb
          type: string
          description: The address suburb
        phone_number:
          title: Phone number
          type: string
          description: The phone number of the contact
        address_line_3:
          title: Address Line 3
          type: string
          description: The third line of the address
        address_line_2:
          title: Address Line 2
          type: string
          description: The second line of the address
        state:
          title: State
          type: string
          description: The address state
        mobile_number:
          title: Mobile number
          type: string
          description: The mobile number of the contact
        first_name:
          title: First Name
          type: string
          description: The first name of the contact
        address_line_4:
          title: Address Line 4
          type: string
          description: The fourth line of the address
      description: Contact details for an entity
```
