$getStatus_Request method
- @experimental
Returns a DynamiteRequest
backing the getStatus operation.
Throws a DynamiteApiException
if the API call does not return an expected status code.
Status codes:
- 200: Status returned
See:
- getStatus for a method executing this request and parsing the response.
- $getStatus_Serializer for a converter to parse the
Response
from an executed this request.
Implementation
@_i2.experimental
_i3.Request $getStatus_Request() {
const _path = '/status.php';
final _uri = Uri.parse('$baseURL$_path');
final _request = _i3.Request('get', _uri);
_request.headers['Accept'] = 'application/json';
return _request;
}