Skip to content

Latest commit

 

History

History
107 lines (67 loc) · 3.23 KB

README.md

File metadata and controls

107 lines (67 loc) · 3.23 KB

Agents

(Agents)

Overview

Agents

Available Operations

GetMyAgent

Fetch your agent's details.

Example Usage

using Openapi;
using Openapi.Models.Requests;

var sdk = new SeUnitySDK();

using(var res = await sdk.Agents.GetMyAgentAsync("<YOUR_BEARER_TOKEN_HERE>"))
{
    // handle response
}

Parameters

Parameter Type Required Description
security Openapi.Models.Requests.GetMyAgentSecurity ✔️ The security requirements to use for the request.

Response

GetMyAgentResponse

GetAgents

Fetch agents details.

Example Usage

using Openapi;
using Openapi.Models.Components;
using Openapi.Models.Requests;

var sdk = new SeUnitySDK();

using(var res = await sdk.Agents.GetAgentsAsync(
    page: 648237,
    limit: 113864))
{
    // handle response
}

Parameters

Parameter Type Required Description
Page long What entry offset to request
Limit long How many entries to return per page

Response

GetAgentsResponse

GetAgent

Fetch agent details.

Example Usage

using Openapi;
using Openapi.Models.Components;
using Openapi.Models.Requests;

var sdk = new SeUnitySDK();

using(var res = await sdk.Agents.GetAgentAsync(agentSymbol: "<value>"))
{
    // handle response
}

Parameters

Parameter Type Required Description
AgentSymbol string ✔️ The agent symbol

Response

GetAgentResponse