Skip to content

Commit 2c7c5d1

Browse files
authored
Merge pull request #783 from superannotateai/FRIDAY-3705
added get_integrations docs
2 parents c223c3e + a6ad64a commit 2c7c5d1

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

src/superannotate/lib/app/interface/sdk_interface.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3254,6 +3254,27 @@ def get_integrations(self):
32543254
32553255
:return: metadata objects of all integrations of the team.
32563256
: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+
]
32573278
"""
32583279
response = self.controller.integrations.list()
32593280
if response.errors:

0 commit comments

Comments
 (0)