We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c223c3e + a6ad64a commit 2c7c5d1Copy full SHA for 2c7c5d1
src/superannotate/lib/app/interface/sdk_interface.py
@@ -3254,6 +3254,27 @@ def get_integrations(self):
3254
3255
:return: metadata objects of all integrations of the team.
3256
:rtype: list of dicts
3257
+
3258
+ Request Example:
3259
+ ::
3260
3261
+ client.get_integrations()
3262
3263
3264
+ Response Example:
3265
3266
3267
+ [
3268
+ {
3269
+ "createdAt": "2023-11-27T11:16:02.000Z",
3270
+ "id": 5072,
3271
+ "name": "My S3 Bucket",
3272
+ "root": "test-openseadragon-1212",
3273
+ "type": "aws",
3274
+ "updatedAt": "2023-12-27T11:16:02.000Z",
3275
+ "creator_id": "example@superannotate.com"
3276
+ }
3277
+ ]
3278
"""
3279
response = self.controller.integrations.list()
3280
if response.errors:
0 commit comments