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

# Details

> Customer API v1 endpoint.

Details. Authenticate with a Bearer access token unless the endpoint is the authentication token exchange.


## OpenAPI

````yaml POST /v1/contacts/details
openapi: 3.1.0
info:
  title: Amplify Customer API
  version: 1.0.0
  description: |-
    Canonical contract for the Amplify customer-facing API. This YAML file is
    the source of truth for Postman and Mintlify. Operations marked with
    x-amplify-validation-status: pending were migrated from the legacy Postman
    collection and must be validated before their contract is considered final.
servers:
  - url: https://api.amplify.xyz
    description: Production
  - url: https://dev-api.amplify.xyz
    description: Development
security: []
tags:
  - name: Authentication
  - name: Fax
  - name: Send Faxes
  - name: Receive Faxes
  - name: Manage Faxes
  - name: Workspace
  - name: Numbers
  - name: Contacts
  - name: Documents
  - name: Templates
paths:
  /v1/contacts/details:
    post:
      tags:
        - Contacts
      summary: Get contact details
      description: Returns a contact by the encrypted identifier provided by List contacts.
      operationId: postv1ContactsDetails
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                id:
                  type: string
              required:
                - id
            example:
              id: 11RqmcZPbn7j3uX2OxgoKw==
      responses:
        '200':
          description: Contact retrieved, or no matching contact was found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContactDetailsResponse'
              examples:
                success:
                  summary: Contact found
                  value:
                    status: 1
                    message: Contact retrieved successfully.
                    data:
                      id: iXk7l+mc47QCDlrsHWUhqQ==
                      is_organization: false
                      first_name: James
                      last_name: John
                      type: individual
                notFound:
                  summary: Contact not found
                  value:
                    status: 1
                    message: Contact not found
        '422':
          description: Required contact ID was not supplied.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationMessageResponse'
              example:
                status: 0
                message: The id field is required.
      security:
        - bearerAuth: []
components:
  schemas:
    ContactDetailsResponse:
      type: object
      required:
        - status
        - message
      properties:
        status:
          type: integer
        message:
          type: string
        data:
          $ref: '#/components/schemas/Contact'
    ValidationMessageResponse:
      type: object
      required:
        - status
        - message
      properties:
        status:
          type: integer
          description: Indicates that the request was not accepted.
        message:
          type: string
          description: Human-readable validation message.
    Contact:
      type: object
      required:
        - id
        - is_organization
        - first_name
        - last_name
        - type
      properties:
        id:
          type: string
          description: Encrypted contact identifier.
        is_organization:
          type: boolean
        first_name:
          type: string
        last_name:
          type: string
        middle_name:
          type: string
        suffix:
          type: string
        organization_name:
          type: string
        type:
          type: string
        email:
          type: string
          nullable: true
        phone_number:
          type: string
        work_number:
          type: string
        fax_number:
          type: string
        gender:
          type: string
        dob:
          type: string
        is_favorite:
          type: boolean
        is_blocked:
          type: boolean
        is_accesible_to_others:
          type: boolean
          description: >-
            Whether the contact is accessible to other users. The property name
            reflects the current API spelling.
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
        contact_documents:
          type: array
          items: {}
        fields:
          type: array
          items:
            type: object
        groups:
          type: array
          items:
            type: object
      additionalProperties: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````