| POST | /growplans_varieties |
|---|
export class GrowplansVarietiesAddResponse
{
// @DataMember(Order=2)
public growplansBoxesId: number;
// @DataMember(Order=3)
public cropsId: number;
// @DataMember(Order=4)
public varietiesId: number;
// @DataMember(Order=6)
public responseStatus: ResponseStatus;
public constructor(init?: Partial<GrowplansVarietiesAddResponse>) { (Object as any).assign(this, init); }
}
// @DataContract
export class GrowplansVarietiesAdd
{
// @DataMember(Order=2)
// @Validate(Validator="NotNull")
public growplansBoxesId: number;
// @DataMember(Order=3)
// @Validate(Validator="NotNull")
public cropsId: number;
// @DataMember(Order=4)
// @Validate(Validator="NotNull")
public varietiesId: number;
public constructor(init?: Partial<GrowplansVarietiesAdd>) { (Object as any).assign(this, init); }
}
TypeScript 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"}}}