| GET | /growplans_boxes |
|---|
// @DataContract
export class GrowplansBoxesLookup
{
// @DataMember(Order=2)
public growplansUsersId: number;
// @DataMember(Order=3)
public name: string;
// @DataMember(Order=4)
public xAxis: number;
// @DataMember(Order=5)
public yAxis: number;
// @DataMember(Order=6)
public growplansOutcomesId: number;
// @DataMember(Order=7)
public months: number;
// @DataMember(Order=8)
public startDate?: string;
public constructor(init?: Partial<GrowplansBoxesLookup>) { (Object as any).assign(this, init); }
}
TypeScript GrowplansBoxesLookup DTOs
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.
GET /growplans_boxes HTTP/1.1 Host: api.sfgtec.com Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
[{"growplansUsersId":0,"name":"String","xAxis":0,"yAxis":0,"growplansOutcomesId":0,"months":0,"startDate":"\/Date(-62135596800000-0000)\/","responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}]