GET api/agents

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Agent
NameDescriptionTypeAdditional information
assemblyTitle

string

None.

assemblyDescription

string

None.

assemblyProduct

string

None.

assemblyGuid

string

None.

inboxHasPacket

boolean

None.

outboxHasPacket

boolean

None.

applicationIsAllowedToRun

boolean

None.

hash

string

None.

created

date

None.

updated

date

None.

Response Formats

application/json, text/json, text/html

Sample:
[{"$id":"1","assemblyTitle":"sample string 1","assemblyDescription":"sample string 2","assemblyProduct":"sample string 3","assemblyGuid":"sample string 4","inboxHasPacket":true,"outboxHasPacket":true,"applicationIsAllowedToRun":true,"hash":"sample string 8","created":"2024-04-20T11:39:51.183224+03:00","updated":"2024-04-20T11:39:51.183224+03:00"},{"$ref":"1"}]

application/xml, text/xml

Sample:
<ArrayOfagent xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="kw.com.ia.api.agent">
  <agent z:Id="i1" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/">
    <applicationIsAllowedToRun>true</applicationIsAllowedToRun>
    <assemblyDescription>sample string 2</assemblyDescription>
    <assemblyGuid>sample string 4</assemblyGuid>
    <assemblyProduct>sample string 3</assemblyProduct>
    <assemblyTitle>sample string 1</assemblyTitle>
    <created>2024-04-20T11:39:51.183224+03:00</created>
    <hash>sample string 8</hash>
    <inboxHasPacket>true</inboxHasPacket>
    <outboxHasPacket>true</outboxHasPacket>
    <updated>2024-04-20T11:39:51.183224+03:00</updated>
  </agent>
  <agent z:Ref="i1" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />
</ArrayOfagent>