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

Authorizations

Authorization
string
header
required

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

Path Parameters

owner_id
string
required

The Owner ID.

Body

application/json
The details required to update the beneficial owner.
full_name
string

Full legal name of the person or business.

Example:

"Jane Smith"

type
enum<string>

The type of owner.

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

"individual"

role
enum<string>

The role of involvment in the business.

Available options:
shareholder,
director
Example:

"shareholder"

Response

200
application/json
Successfully updated beneficial owner.
success
boolean

Indicates if the request was successful.

message
string

A descriptive message regarding the result.