Insyts user
Register on Insyts
Register User
Get Started
To make this endpoint, you will need a valid developer account and, API Keys. Read Authentication to learn more.
🔐AuthenticationAPI Endpoint
POST https://api.akibaone.com/insyts/registration
Request
 {
  "clientId": "string",
  "fullNames": "string",
  "email": "string",
  "phoneNumber": "string",
  "country": "string",
  "physicalAddress": "string",
  "isCompany": true,
  "registrationNumber": "string"
}Response Samples
{
  "userId": "string"
}Updating User
API Endpoint
POST https://api.akibaone.com/insyts/updateuser
Request
 {
  "clientId": "string",
  "fullNames": "string",
  "email": "string",
  "phoneNumber": "string",
  "country": "string",
  "physicalAddress": "string",
  "isCompany": true,
  "registrationNumber": "string"
}Response Samples
{
  "clientId": "string",
  "fullNames": "string",
  "email": "string",
  "phoneNumber": "string",
  "country": "string",
  "physicalAddress": "string",
  "isCompany": true,
  "registrationNumber": "string"
}Get User
API Endpoint
POST https://api.akibaone.com/insyts/accountbyid
Request
{
  "clientId": "string",
  "userId": "string"
}Response Samples
{
  "clientId": "string",
  "fullNames": "string",
  "email": "string",
  "phoneNumber": "string",
  "country": "string",
  "physicalAddress": "string",
  "isCompany": true,
  "registrationNumber": "string"
}After registering your customer, you will need to get consent to link their accounts with your app.
Last updated