| POST | /api/statistics | 
|---|
import Foundation
import ServiceStack
/**
* Add a statistic entity.
*/
// @Api(Description="Add a statistic entity.")
public class AddStatistic : Codable
{
    /**
    * Computername
    */
    // @ApiMember(Description="Computername", IsRequired=true)
    public var computer:String
    /**
    * Program for the statistic entry
    */
    // @ApiMember(Description="Program for the statistic entry", IsRequired=true)
    public var programName:ProgramName
    /**
    * Version of the program
    */
    // @ApiMember(Description="Version of the program")
    public var programVersion:String
    /**
    * Action of statistic
    */
    // @ApiMember(Description="Action of statistic", IsRequired=true)
    public var action:Action
    /**
    * First parameter
    */
    // @ApiMember(Description="First parameter", IsRequired=true)
    public var param1:String
    /**
    * Second parameter
    */
    // @ApiMember(Description="Second parameter")
    public var param2:String
    required public init(){}
}
public enum ProgramName : String, Codable
{
    case DO4Outlook
    case DO4Word
    case DO4Excel
    case DO4PowerPoint
    case ITS
    case Other
}
public enum Action : String, Codable
{
    case Start
    case Command
    case Other
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /api/statistics HTTP/1.1 
Host: doapigw.baasbv.nl 
Accept: application/json
Content-Type: application/json
Content-Length: length
{"Computer":"String","ProgramName":"DO4Outlook","ProgramVersion":"String","Action":"Start","Param1":"String","Param2":"String"}