---
title: "LodgementOrganisationPartyDetailsV3"
url: "https://developer.pexa.co.uk/apis/lodgement-v3-v3/versions/8fe8fe59-b70c-45d1-aef9-7b31c7c5b30e/schemas/LodgementOrganisationPartyDetailsV3"
---

> Full API specification: https://developer.pexa.co.uk/apis/lodgement-v3-v3/versions/8fe8fe59-b70c-45d1-aef9-7b31c7c5b30e.md

# LodgementOrganisationPartyDetailsV3

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Lodgement
  version: v3
servers:
  - url: https://api.pexa.co.uk
    description: API Gateway URL
components:
  schemas:
    LodgementOrganisationPartyDetailsV3:
      allOf:
        - type: object
          properties:
            type:
              type: string
              pattern: ^(INDIVIDUAL|ORGANISATION)$
              example: INDIVIDUAL
              description: |
                Allowed values: [`INDIVIDUAL`, `ORGANISATION`]
          discriminator:
            propertyName: type
            mapping:
              INDIVIDUAL: "#/components/schemas/LodgementIndividualPartyDetailsV3"
              ORGANISATION: "#/components/schemas/LodgementOrganisationPartyDetailsV3"
        - type: object
          properties:
            legalEntityName:
              type: string
              example: Ltd Company
            organisationName:
              type: string
              example: org Company
            registrationNumber:
              type: string
              example: "12345"
```
