PUT
/
profiles
/
identity
curl --request PUT \
  --url https://api.live.paisr.tech/{version}/profiles/identity \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "legal_name": "Acme Incorporation",
  "date_of_incorporation": "2022-10-12",
  "legal_form": "for-profit-corporation",
  "commerce_number": "XX123456",
  "tax_number": "FN123456",
  "industry": "technology",
  "country": "SR"
}'
{
  "success": true,
  "message": "<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 update business identity.

The body is of type object.

Response

200
application/json
Successfully updated business identity.

The response is of type object.