Agents Resource
Gets agent information about a particular person.
getAgent
Example
const agent: Agent = {
objectType: "Agent",
name: "Test Agent",
mbox: "mailto:[email protected]"
};
xapi.getAgent({
agent: agent
}).then((result: AxiosResponse<Person>) => {
const person: Person = result.data;
// do stuff with person
});Parameters
Returns
Last updated