POST
/
agents
/
{id}
/
setup
Setup Agent
curl --request POST \
  --url https://api.kakiyo.com/v1/agents/{id}/setup \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "login": "linkedin_email@example.com",
  "password": "secure_password_123",
  "country": "US"
}'
{
  "message": "Agent setup successfully"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

ID of the agent

Body

application/json

Agent setup information

login
string<email>
required
Example:

"linkedin_email@example.com"

password
string
required
Minimum length: 6
Example:

"secure_password_123"

country
string
required
Required string length: 2
Example:

"US"

Response

Agent setup successfully

message
string
Example:

"Agent setup successfully"