| GET,OPTIONS | /v1/weather/branch |
|---|
export class WeatherDay
{
public Date: string;
public DayLabel: string;
public ShortForecast: string;
public TempHi?: number;
public TempLo?: number;
public TempUnit: string;
public Pop?: number;
public Severity: string;
public HasAlert: boolean;
public constructor(init?: Partial<WeatherDay>) { (Object as any).assign(this, init); }
}
export class WeatherForecastResponse
{
public BranchName: string;
public Resolved: boolean;
public AlertHeadline: string;
public Days: WeatherDay[] = [];
public ResponseStatus: ResponseStatus;
public constructor(init?: Partial<WeatherForecastResponse>) { (Object as any).assign(this, init); }
}
export class BranchWeatherRequest
{
public BranchId?: string;
public Start: string;
public Days?: number;
public constructor(init?: Partial<BranchWeatherRequest>) { (Object as any).assign(this, init); }
}
TypeScript BranchWeatherRequest 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 /v1/weather/branch HTTP/1.1 Host: api.dev.dynamics.trendsic.com Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"BranchName":"String","Resolved":false,"AlertHeadline":"String","Days":[{"Date":"String","DayLabel":"String","ShortForecast":"String","TempHi":0,"TempLo":0,"TempUnit":"String","Pop":0,"Severity":"String","HasAlert":false}],"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}}}