(self, id: str)
| 233 | ) |
| 234 | |
| 235 | async def delete_group(self, id: str) -> GroupDeleteResponse: |
| 236 | return GroupDeleteResponse( |
| 237 | await self.api_call( |
| 238 | http_verb="DELETE", |
| 239 | path=f"Groups/{quote(id)}", |
| 240 | ) |
| 241 | ) |
| 242 | |
| 243 | # ------------------------- |
| 244 |