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

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

# SetAsIncomingProprietorResponse

## 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:
    SetAsIncomingProprietorResponse:
      type: object
      required:
        - partyId
        - proprietorId
      allOf:
        - type: object
          required:
            - action
          discriminator:
            propertyName: action
            mapping:
              UPDATE_PARTY_NAME: "#/components/schemas/UpdatePartyNameResponse"
              SET_AS_INCOMING_PROPRIETOR: "#/components/schemas/SetAsIncomingProprietorResponse"
              SET_AS_OUTGOING_PROPRIETOR: "#/components/schemas/SetAsOutgoingProprietorResponse"
              UPDATE_PROPRIETOR_NAME: "#/components/schemas/UpdateProprietorNameResponse"
              UPDATE_OUTGOING_PROPRIETOR_NAME: "#/components/schemas/UpdateOutgoingProprietorNameResponse"
          description: Response for title reconciliation actions
          properties:
            action:
              type: string
              description: The action that was performed
      properties:
        partyId:
          type: string
          format: uuid
          description: ID of the party that was marked as incoming proprietor
        proprietorId:
          type: string
          format: uuid
          description: ID of the newly created incoming proprietor in lodgement case
        titleStatus:
          type: string
          description: Title status of the proprietor (always INCOMING for this action)
```
