Overview
API base url:
https://api.apibuilder.com
A sample endpoint:
POST https://api.apibuilder.com/terminal/messages
curl "https://api.apibuilder.com/terminal/messages" \
-H "Authentication: Bearer <token>"
You should add a header Authentication to all requests after a user logs into an account. See an example of a CURL command.
Models
Message
{
"command": "I want to log in to my account"
}
| Field | Description |
|---|---|
| command | a free text with command |
Messages
Send a message
POST /terminal/messages
# Request
{
"command": "Pls sign mde up. My email: john.smith@acme.com"
}
# Response
{
"output": "What password do you want to set for your account?",
"data": {
"access_token": "wpeir7yg28yrgwyf2y3b8fy2weyfqdywfqsdfgjh2e8ry2q8erfwea"
}
}