---
title: "Retrieve owner"
method: GET
path: "/owners/{ownerId}"
tags: ["Owners"]
---

# Retrieve owner

`GET /owners/{ownerId}`

Use this method to retrieve details about an owner of a processing account or an owner associated with a funding recipient.  

To retrieve an owner, you need their ownerId. Our gateway returned the ownerId in the response of the [Create Processing Account](https://docs.payroc.com/api/schema/boarding/merchant-platforms/create-processing-account) method or the [Create Funding Recipient Owner](https://docs.payroc.com/api/schema/funding/funding-recipients/create-owner) method.  

**Note:** If you don't have the ownerId, use the [Retrieve Processing Account](https://docs.payroc.com/api/schema/boarding/processing-accounts/retrieve) method if you are searching for a processing account owner, or use the [List Funding Recipient Owners](https://docs.payroc.com/api/schema/funding/funding-recipients/list-owners) method if you are searching for a funding recipient owner.  

Our gateway returns the following information about an owner:  
- Name, date of birth, and address.  
- Contact details, including their email address.  
- Relationship to the business, including whether they are a control prong or authorized signatory, and their equity stake in the business.

## Path parameters

- `ownerId` integer, required

## Headers

- `Authorization` string, required

## Response `200`

Successful request. Returns the requested owner.

- Owner
  - `ownerId` integer — Unique identifier that we assigned to the owner.
  - `firstName` string, required — Owner's first name.
  - `middleName` string — Owner's middle name.
  - `lastName` string, required — Owner's last name.
  - `dateOfBirth` string, date, required — Owner's date of birth. The format of this value is **YYYY-MM-DD**.
  - `address` Address, required — Object that contains information about the address.
    - `address1` string, required — Address line 1.
    - `address2` string — Address line 2.
    - `address3` string — Address line 3.
    - `city` string, required — City.
    - `state` string, required — Name of the state or state abbreviation.
    - `country` string, required — Two-digit country code for the country that the business operates in. The format follows the [ISO-3166-1](https://www.iso.org/iso-3166-country-codes.html) standard.
    - `postalCode` string, required — Zip code or postal code.
  - `identifiers` Identifier[], required — Array of IDs.
    - `type` 'nationalId', required — Type of ID provided to verify identity.
    - `value` string, required — Social Security Number (SSN) or Social Insurance Number (SIN).
  - `contactMethods` ContactMethod[], required — Array of polymorphic objects, which contain contact information. **Note:** If you are adding information about an owner, you must provide at least an email address. If you are adding information about a contact, you must provide at least a contact number. The value of the type parameter determines which variant you should use: - `email` - Email address - `phone` - Phone number - `mobile` - Mobile number - `fax` - Fax number
    - union
      - object — email variant
        - `type` 'email', required — Discriminator value: email
        - `value` string, required — Email address.
      - object — phone variant
        - `type` 'phone', required — Discriminator value: phone
        - `value` string, required — Phone number.
      - object — mobile variant
        - `type` 'mobile', required — Discriminator value: mobile
        - `value` string, required — Mobile number.
      - object — fax variant
        - `type` 'fax', required — Discriminator value: fax
        - `value` string, required — Fax number.
  - `relationship` OwnerRelationship, required — Object that contains information about the owner's relationship to the business.
    - `equityPercentage` number, double — Percentage equity stake that the owner holds in the business.
    - `title` string — Owner's job title.
    - `isControlProng` boolean, required — Indicates if the owner is a control prong. You can identify only one control prong for a business.
    - `isAuthorizedSignatory` boolean — Indicates if the owner is an authorized signatory.

## Other responses

- `400` — Invalid request
- `401` — Identity could not be verified
- `403` — Do not have permissions to perform this action
- `404` — Resource not found
- `500` — An error has occured

---

[API](https://skmtc.dev/payroc/apis/schema.md) · [All operations](https://skmtc.dev/payroc/apis/schema/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/payroc/schema/revisions/1d9d3e305945/schema)
