POST
/
profiles
/
owners
curl --request POST \
  --url https://api.live.paisr.tech/{version}/profiles/owners \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "full_name": "Jane Smith",
  "email": "jsmith@example.com",
  "type": "individual",
  "role": "shareholder"
}'
{
  "success": true,
  "data": {
    "id": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
The details required to add a beneficial owner to your business profile.
full_name
string
required

Full legal name of the person or business.

Example:

"Jane Smith"

email
string
required

Official email address.

type
enum<string>
required

The type of owner.

Available options:
individual,
business,
non-profit
Example:

"individual"

role
enum<string>
required

The role of involvment in the business.

Available options:
shareholder,
director
Example:

"shareholder"

Response

200
application/json
Successfully created beneficial owner.
success
boolean
default:true

Indicates if the request was successful.

data
object