Users
Create a user
Creates a new user with the given properties.
POST
/
users
curl --request POST \
--url https://api.proficientai.com/users \
--header 'Content-Type: application/json' \
--data '{
"external_id": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"live_mode": true
}'
{
"id": "<string>",
"object": "user",
"created_at": 123,
"external_id": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"live_mode": true,
"updated_at": 123
}
Body
application/json
The data with which a user is created.
Response
200
application/json
<p>Represents a user of your project.</p>
curl --request POST \
--url https://api.proficientai.com/users \
--header 'Content-Type: application/json' \
--data '{
"external_id": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"live_mode": true
}'
{
"id": "<string>",
"object": "user",
"created_at": 123,
"external_id": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"live_mode": true,
"updated_at": 123
}
Assistant
Responses are generated using AI and may contain mistakes.