curl --request POST \
--url https://dev.flextell.ai/api/v1/assistants \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"email": "jsmith@example.com",
"password": "<string>",
"password_confirmation": "<string>",
"phone": "<string>",
"language": [
"<string>"
],
"avatar_url": "<string>",
"is_active": true
}
'{
"message": "<string>"
}The access token received from the authorization server in the OAuth 2.0 flow.
Tenant identifier. Send the Tenant ID in the X-Tenant header to scope API requests to a specific tenant.
Assistant's name.
255Assistant's email address.
255Assistant's password.
8Assistant's password confirmation. Must match the password field.
8Assistant's phone number.
20Assistant's language preferences.
Assistant's avatar URL.
1000Assistant's active status.
curl --request POST \
--url https://dev.flextell.ai/api/v1/assistants \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"email": "jsmith@example.com",
"password": "<string>",
"password_confirmation": "<string>",
"phone": "<string>",
"language": [
"<string>"
],
"avatar_url": "<string>",
"is_active": true
}
'{
"message": "<string>"
}