**Parameters**: See `httpx.request`.
- Note that the `data`, `files`, and `json` parameters are not available on
- this function, as `GET` requests should not include a request body.
+ Note that the `data`, `files`, `json` and `content` parameters are not available
+ on this function, as `GET` requests should not include a request body.
"""
return request(
"GET",
**Parameters**: See `httpx.request`.
- Note that the `data`, `files`, and `json` parameters are not available on
- this function, as `OPTIONS` requests should not include a request body.
+ Note that the `data`, `files`, `json` and `content` parameters are not available
+ on this function, as `OPTIONS` requests should not include a request body.
"""
return request(
"OPTIONS",
**Parameters**: See `httpx.request`.
- Note that the `data`, `files`, and `json` parameters are not available on
- this function, as `HEAD` requests should not include a request body.
+ Note that the `data`, `files`, `json` and `content` parameters are not available
+ on this function, as `HEAD` requests should not include a request body.
"""
return request(
"HEAD",
**Parameters**: See `httpx.request`.
- Note that the `data`, `files`, and `json` parameters are not available on
- this function, as `DELETE` requests should not include a request body.
+ Note that the `data`, `files`, `json` and `content` parameters are not available
+ on this function, as `DELETE` requests should not include a request body.
"""
return request(
"DELETE",