Skip to main content
POST
/
regulatory
/
end-users
Create End User
curl --request POST \
  --url https://api.kallabot.com/regulatory/end-users \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "friendly_name": "John Doe - Individual",
  "type": "individual",
  "attributes": {
    "first_name": "John",
    "last_name": "Doe",
    "email": "[email protected]",
    "phone_number": "+14155551234"
  }
}'
{
  "sid": "<string>",
  "friendly_name": "<string>",
  "type": "<string>",
  "attributes": {},
  "account_sid": "<string>",
  "date_created": "2023-11-07T05:31:56Z",
  "date_updated": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
friendly_name
string
required

Display name

Example:

"John Doe - Individual"

type
enum<string>
required

End user type

Available options:
individual,
business
attributes
object
required

Dynamic attributes based on type

Example:
{
"first_name": "John",
"last_name": "Doe",
"email": "[email protected]",
"phone_number": "+14155551234"
}

Response

End user created

sid
string
friendly_name
string
type
string
attributes
object
account_sid
string
date_created
string<date-time>
date_updated
string<date-time>