POST
/
agents
/
{id}
/
setup
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

The body is of type object.

Response

200
application/json

Agent setup successfully

The response is of type object.