Create Agent
POST
https://api.mottasl.ai/v1/agent
createagent
Last modified:2024-11-25 15:56:11
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
role
string
required
email
string
required
name
string
required
display_name
string
required
status
string
required
Example
{
"role": "admin",
"email": "jane.doe@example.com",
"name": "Jane Doe",
"display_name": "Jane",
"status": "active"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.mottasl.ai/v1/agent' \
--header 'Content-Type: application/json' \
--data-raw '{
"role": "admin",
"email": "jane.doe@example.com",
"name": "Jane Doe",
"display_name": "Jane",
"status": "active"
}'
Responses
🟢200Success
application/json
Body
success
boolean
required
message
string
required
data
array [object {1}]
required
agent_id
string
optional
Example
{
"success": true,
"message": "agent created",
"data": [
{
"agent_id": "123"
}
]
}
🟠400BadRequest
🔴500InternelError
🟠402PaymentRequiredError
Modified at 2024-11-25 15:56:11