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

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

# PartyDetailsDto

Party details - either individual or organisation

## 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:
    PartyDetailsDto:
      type: object
      description: Party details - either individual or organisation
      properties:
        forenames:
          type: string
          maxLength: 90
          description: Forenames for INDIVIDUAL type party
          example: James Thomas
        surname:
          type: string
          maxLength: 50
          description: Surname for INDIVIDUAL type party
          example: Smith
        organisationName:
          type: string
          maxLength: 160
          description: Organisation name for ORGANISATION type party
          example: Acme Ltd
        registrationNumber:
          type: string
          maxLength: 8
          description: Companies House registration number for ORGANISATION type party
          example: "12345678"
        organisationType:
          type: string
          description: Type of organisation
          example: LIMITED_COMPANY
```
