cURL
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" }
Sets up an agent with LinkedIn credentials and location
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
ID of the agent
Agent setup information
"linkedin_email@example.com"
6
"secure_password_123"
2
"US"
Agent setup successfully
"Agent setup successfully"