GoodDataApiClient.

do_request

do_request( data: bytes, endpoint: str, content_type: str, method: HttpMethod ) -> requests.Response

Perform an HTTP request using the specified method.

Parameters

nametypedescription
databytesThe data to be sent in the request.
endpointstrThe endpoint URL to which the request is made.
content_typestrThe content type of the data being sent.
methodHttpMethodThe HTTP method to be used for the request.

Returns

typedescription
None