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

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

# SetAsOutgoingProprietorResponse

Response after marking proprietor as outgoing. Returns the proprietor details from the Lodgement domain response. Either individualDetails or organisationDetails will be present based on proprietor type.

## 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:
    SetAsOutgoingProprietorResponse:
      type: object
      description: >
        Response after marking proprietor as outgoing.

        Returns the proprietor details from the Lodgement domain response.

        Either individualDetails or organisationDetails will be present based on
        proprietor type.
      required:
        - 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:
        proprietorId:
          type: string
          format: uuid
          description: ID of the proprietor that was marked as outgoing
        titleStatus:
          type: string
          description: Updated title status (always OUTGOING for this action)
        individualDetails:
          type: object
          description: Individual proprietor details (present when proprietor is
            INDIVIDUAL type)
          properties:
            forenames:
              type: string
              description: Forenames of the individual proprietor
              example: James Thomas
            surname:
              type: string
              description: Surname of the individual proprietor
              example: Smith
        organisationDetails:
          type: object
          description: Organisation proprietor details (present when proprietor is
            ORGANISATION type)
          properties:
            organisationName:
              type: string
              description: Name of the organisation
              example: Pexa Ltd
            registrationNumber:
              type: string
              description: Registration number of the organisation
              example: "12345678"
```
