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_name String Yes

Name of Agent.

Response body model example and description

{
  "agent_id": "af025647-127d-46df-b4af-7c4da25d9f49",
  "agent_name": "sample string 2",
  "success": true,
  "message": "sample string 4"
}
NameType Description
AgentId Guid

The unique identifier of the agent.

AgentName String

The name of the agent.

Success Boolean

Indicates whether the agent creation was successful.

Message String

A message indicating the result of the operation.