From a6ad64ab0a189f046009643ec3770036caf32377 Mon Sep 17 00:00:00 2001 From: Narek Mkhitaryan Date: Tue, 8 Apr 2025 14:48:28 +0400 Subject: [PATCH] added get_integrations docs --- .../lib/app/interface/sdk_interface.py | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/superannotate/lib/app/interface/sdk_interface.py b/src/superannotate/lib/app/interface/sdk_interface.py index 850ad7a7..322b5fb3 100644 --- a/src/superannotate/lib/app/interface/sdk_interface.py +++ b/src/superannotate/lib/app/interface/sdk_interface.py @@ -3254,6 +3254,27 @@ def get_integrations(self): :return: metadata objects of all integrations of the team. :rtype: list of dicts + + Request Example: + :: + + client.get_integrations() + + + Response Example: + :: + + [ + { + "createdAt": "2023-11-27T11:16:02.000Z", + "id": 5072, + "name": "My S3 Bucket", + "root": "test-openseadragon-1212", + "type": "aws", + "updatedAt": "2023-12-27T11:16:02.000Z", + "creator_id": "example@superannotate.com" + } + ] """ response = self.controller.integrations.list() if response.errors: