---
title: "ParticipantDto"
url: "https://developer.pexa.co.uk/apis/workspace-v1-v1/versions/32819e5a-6411-493b-abe8-00b7c7ca6c77/schemas/ParticipantDto"
---

> Full API specification: https://developer.pexa.co.uk/apis/workspace-v1-v1/versions/32819e5a-6411-493b-abe8-00b7c7ca6c77.md

# ParticipantDto

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Workspace
  version: v1.3.0
servers:
  - url: https://api.pexa.co.uk
    description: API Gateway URL
components:
  schemas:
    ParticipantDto:
      type: object
      required:
        - subscriberId
        - role
      properties:
        participantId:
          type: string
          format: uuid
          readOnly: true
        subscriberId:
          type: string
          format: uuid
        role:
          type: string
          pattern: ^(INCOMING_LENDER|BUYER_REPRESENTATIVE|SELLER_REPRESENTATIVE|INCOMING_LENDER_REPRESENTATIVE)$
          description: >
            Allowed values: [`INCOMING_LENDER`, `BUYER_REPRESENTATIVE`,
            `SELLER_REPRESENTATIVE`, `INCOMING_LENDER_REPRESENTATIVE`]
```
