> ## Documentation Index
> Fetch the complete documentation index at: https://apidocs.ezzydoc.com/llms.txt
> Use this file to discover all available pages before exploring further.

# getContacts



## OpenAPI

````yaml get /getContacts
openapi: 3.0.1
info:
  title: EzzyRest API
  version: 1.0.0
servers:
  - url: https://app.ezzydoc.com/EzzyService.svc/Rest/
    description: Production Server
security: []
paths:
  /getContacts:
    get:
      tags:
        - EzzyRest
      summary: getContacts
      operationId: getContacts
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ContactDetailsSS'
            application/json:
              schema:
                $ref: '#/components/schemas/ContactDetailsSS'
            text/json:
              schema:
                $ref: '#/components/schemas/ContactDetailsSS'
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
      security:
        - BearerAuth: []
components:
  schemas:
    ContactDetailsSS:
      type: object
      properties:
        service_status:
          $ref: '#/components/schemas/Servicestatus'
        contacts:
          type: array
          items:
            $ref: '#/components/schemas/ContactDetails'
    Servicestatus:
      type: object
      properties:
        invoice_id:
          type: integer
        message:
          type: string
        status:
          type: integer
          enum:
            - 0
            - 1
            - 2
            - 3
          x-enumNames:
            - OK
            - FAILED
            - NO_MORE_INVOICES
            - NOT_PERMITTED
    ContactDetails:
      type: object
      properties:
        account_code:
          type: string
        active:
          type: boolean
        address:
          type: string
        bank_account:
          type: string
        bank_bsb:
          type: string
        city:
          type: string
        contact:
          type: string
        country:
          type: string
        email:
          type: string
        fax:
          type: string
        Id:
          type: string
        modified:
          type: integer
        Name:
          type: string
        phone:
          type: string
        postcode:
          type: string
        reference:
          type: string
        region:
          type: string
        tags:
          type: string
        tax_code:
          type: string
        taxNumber:
          type: string
        tracking:
          type: string
        type:
          type: integer
          enum:
            - 0
            - 1
            - 2
            - 3
            - 4
            - 5
          x-enumNames:
            - BOTH
            - SUPPLIER_ONLY
            - CUSTOMER_ONLY
            - BRANCH
            - DELIVERY
            - CONTRACTOR
        web:
          type: string
        workflow:
          type: integer
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````