POST   private-agent/create

Creates a new private agent for the current customer.

Request example and description

curl --request POST "https://api-asm1.apica.io/v3/private-agent/create?auth_ticket=C471ADC4-19B4-4219-BBF4-671A97EC653E" --header "Content-Type: application/json" --data-raw "{
  "agent_name": "agentname"
}"
NameType Required Description
agent_nameStringYes

Name of Agent.

Response body model example and description

{
  "agent_id": "0a881103-b388-431b-b855-a4198fde7ee6",
  "agent_name": "sample string 2",
  "success": true,
  "message": "sample string 4"
}
NameType Description
AgentIdGuid

The unique identifier of the agent.

AgentNameString

The name of the agent.

SuccessBoolean

Indicates whether the agent creation was successful.

MessageString

A message indicating the result of the operation.