Update User Details

post
Authorizations
Body
clientIdstringoptional

Client ID

fullNamesstringoptional

The full legal name of your company or individual.

emailstringoptional

Valid email address associated with your company or individual for official communication.

phoneNumberstringoptional

Contact number for your company or individual.

countrystringoptional

Specify the country where your company is located.

physicalAddressstringoptional

Physical street address, including any additional details necessary for accurate location information.

isCompanybooleanoptional

Specify if you are registering a company or not (true or false)

registrationNumberstringoptional

company's registration number, which is typically issued during the registration process.

Responses
curl -L \
  --request POST \
  --url 'https://api.akibaone.com/insyts/updateuser' \
  --header 'Content-Type: application/json' \
  --data '{
    "clientId": "text",
    "fullNames": "text",
    "email": "text",
    "phoneNumber": "text",
    "country": "text",
    "physicalAddress": "text",
    "isCompany": true,
    "registrationNumber": "text"
  }'
{
  "clientId": "text",
  "fullNames": "text",
  "email": "text",
  "phoneNumber": "text",
  "country": "text",
  "physicalAddress": "text",
  "isCompany": true,
  "registrationNumber": "text"
}