HttpResponse<T>
Contains information about a response from an HTTP API, including the received data.
Properties
| Name | Data type | Description |
|---|---|---|
| IsSuccess | bool | Specifies whether the Http Request return an HTTP success status code (Range 200-299). |
| StatusCode | Int32 | The HTTP Status code of the request. |
| Headers | Dictionary<string,string> | The response headers returned from the HTTP request. |
| ContentTypeName | String | The content type of the response, for example application/json. |
| Content | T | The data returned from the HTTP request. The data type is specified by the Flow developer, and Flow will automatically convert the raw HTTP response to an instance of T. |
| ErrorContent | String | Error content from the API (json) or internal error messages (string) |