Auth0 Node.js SDK - v6.4.0
    Preparing search index...

    Interface CreateAgentRequestContent

    {
    * name: "name"
    * }
    interface CreateAgentRequestContent {
        name: string;
        client_id?: string;
        external_agent_id?: string;
        metadata?: AgentMetadata;
    }
    Index
    name: string

    The agent name. Cannot contain <, >, or null bytes.

    client_id?: string

    Optional client ID to associate with the agent

    external_agent_id?: string

    Optional external identifier for the agent. Immutable after creation. Must be unique within the tenant.

    metadata?: AgentMetadata