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.

Full business name as it appears on legal documents.

Example:

"Acme Incorporation"

date_of_incorporation
string

Date of incorporation as it appears on legal documents.

Example:

"2022-10-12"

Legal structure as it appears on legal documents.

Available options:
limited,
partnership,
sole-trader,
trust,
limited-gaurantee,
limited-partnership,
limited-liability-partnership,
limited-liability-company,
general partnership,
sole-proprietorship,
private-limited-company,
public-limited-company,
for-profit-corporation,
non-profit-corporation
Example:

"for-profit-corporation"

commerce_number
string

Chamber of Commerce registration number.

Example:

"XX123456"

tax_number
string

Tax / FIN number issued by local authority.

Example:

"FN123456"

industry
enum<string>

Industry as it appears on legal documents.

Available options:
agroculture,
automotive,
aviation,
commerce,
communicationns,
construction,
consulting,
education,
energy,
finance,
food-beverage,
government,
health,
hospitality,
insurance,
import-export,
legal,
logistics,
manufacturing,
marketplace,
media,
mining,
oil-gas,
pharmaceuticals,
real-estate,
retail,
restaurant,
services,
software-as-a-service,
technology,
tranportation,
utilities
Example:

"technology"

country
string

Country of registration in ISO Alpha2 format.

Example:

"SR"

Response

200
application/json
Successfully updated business identity.
success
boolean

Indicates if the request was successful.

message
string

A descriptive message regarding the result.