---
title: "PartyRequest"
url: "https://apiportal.pexaclear.com.au/apis/gap-au-aml-customer-experience-standard-v1-v1/versions/9c31c4c2-000c-418b-ad44-c201d75d8af9/schemas/PartyRequest"
---

> Full API specification: https://apiportal.pexaclear.com.au/apis/gap-au-aml-customer-experience-standard-v1-v1/versions/9c31c4c2-000c-418b-ad44-c201d75d8af9.md

# PartyRequest

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: AML Verification API
  version: v1
servers:
  - url: https://api.pexaclear.com.au
    description: API Gateway URL
components:
  schemas:
    PartyRequest:
      type: object
      discriminator:
        propertyName: partyType
        mapping:
          INDIVIDUAL: "#/components/schemas/IndividualPartyRequest"
          ENTITY: "#/components/schemas/EntityPartyRequest"
      required:
        - partyType
        - role
      properties:
        partyType:
          type: string
          pattern: ^(INDIVIDUAL|ENTITY)$
          description: "Party type. Allowed values: INDIVIDUAL, ENTITY"
        role:
          type: string
          pattern: ^(BUYER|SELLER)$
          description: "Party role. Allowed values: BUYER, SELLER"
```
