| POST | /growplans_varieties |
|---|
import Foundation
import ServiceStack
// @DataContract
public class GrowplansVarietiesAdd : Codable
{
// @DataMember(Order=2)
// @Validate(Validator="NotNull")
public var growplansBoxesId:Int
// @DataMember(Order=3)
// @Validate(Validator="NotNull")
public var cropsId:Int
// @DataMember(Order=4)
// @Validate(Validator="NotNull")
public var varietiesId:Int
required public init(){}
}
public class GrowplansVarietiesAddResponse : Codable
{
// @DataMember(Order=2)
public var growplansBoxesId:Int
// @DataMember(Order=3)
public var cropsId:Int
// @DataMember(Order=4)
public var varietiesId:Int
// @DataMember(Order=6)
public var responseStatus:ResponseStatus
required public init(){}
}
Swift GrowplansVarietiesAdd DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /growplans_varieties HTTP/1.1
Host: sfgboxapi.dev.scadsoftware.com
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"growplansBoxesId":0,"cropsId":0,"varietiesId":0}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length
{"growplansBoxesId":0,"cropsId":0,"varietiesId":0,"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}