| Requires the role: | SystemAdministrator |
| DELETE | /ai/sessions/{sessionId} |
|---|
export class NodeParameterMap
{
[key:string] : NodeParameter;
public constructor(init?: Partial<NodeParameterMap>) { (Object as any).assign(this, init); }
}
/** @description Delete the specified session */
// @Api(Description="Delete the specified session")
export class DeleteAISession implements IDelete
{
/** @description The ID of the session to delete */
// @ApiMember(Description="The ID of the session to delete")
public sessionId: string;
public constructor(init?: Partial<DeleteAISession>) { (Object as any).assign(this, init); }
}
TypeScript DeleteAISession DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
DELETE /ai/sessions/{sessionId} HTTP/1.1
Host: evovoice.io
Accept: application/xml