---
title: "AddRepresentationAcknowledgement"
url: "https://developer.pexa.co.uk/apis/workspace-v1-v1/versions/f42817f3-815f-4a74-8ba5-2f83efd8ab42/schemas/AddRepresentationAcknowledgement"
---

> Full API specification: https://developer.pexa.co.uk/apis/workspace-v1-v1/versions/f42817f3-815f-4a74-8ba5-2f83efd8ab42.md

# AddRepresentationAcknowledgement

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Workspace
  version: v1
servers:
  - url: https://api.pexa.co.uk
    description: API Gateway URL
components:
  schemas:
    AddRepresentationAcknowledgement:
      type: object
      required:
        - workspaceId
        - partyId
      properties:
        workspaceId:
          type: string
          format: uuid
          description: The workspace ID
        partyId:
          type: string
          format: uuid
          description: The party ID
        representationId:
          type: string
          format: uuid
          description: Representation ID (for EXTERNAL_LAW_FIRM types only)
        representedBy:
          type: string
          description: Type of representation
          enum:
            - EXTERNAL_LAW_FIRM
            - PEXA_SUBSCRIBER_LAW_FIRM
            - NOT_REPRESENTED
        subscriberId:
          type: string
          format: uuid
          description: Subscriber ID (for PEXA_SUBSCRIBER_LAW_FIRM only)
        externalLawFirm:
          description: External law firm details (for NEW EXTERNAL_LAW_FIRM only)
          type: object
          required:
            - name
            - address
          properties:
            name:
              type: string
              minLength: 1
              maxLength: 160
              description: External law firm name
            address:
              type: object
              required:
                - postcode
              properties:
                name:
                  maxLength: 50
                  minLength: 0
                  type: string
                  example: 1 The House
                number:
                  maxLength: 4
                  minLength: 0
                  type: string
                  example: 123a
                flat:
                  maxLength: 30
                  minLength: 0
                  type: string
                  example: Flat 32
                street:
                  maxLength: 60
                  minLength: 0
                  type: string
                  example: Huddersfield
                town:
                  maxLength: 30
                  minLength: 0
                  type: string
                  example: West Yorkshire
                postcode:
                  maxLength: 8
                  minLength: 6
                  type: string
                  example: M16 0RA
                  pattern: ^(([Gg][Ii][Rr]
                    0[Aa]{2})|((([A-Za-z][0-9]{1,2})|(([A-Za-z][A-Ha-hJ-Yj-y][0-9]{1,2})|(([A-Za-z][0-9][A-Za-z])|([A-Za-z][A-Ha-hJ-Yj-y][0-9][A-Za-z]?))))\s[0-9][A-Za-z]{2}))$
        verificationOfIdentity:
          type: string
          description: Verification of identity method (for NOT_REPRESENTED only)
```
