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 55086ca + 06a776e commit 9d0a256Copy full SHA for 9d0a256
src/superannotate/lib/app/interface/sdk_interface.py
@@ -2559,6 +2559,20 @@ def attach_items(
2559
attachments = [{"name": "item", "url": "https://..."}]
2560
)
2561
2562
+ Example of attaching items from custom integration:
2563
+ ::
2564
+ client = SAClient()
2565
+ client.attach_items(
2566
+ project = "Medical Annotations",
2567
+ attachments = [
2568
+ {
2569
+ "name": "item",
2570
+ "url": "https://sa-public-files.s3.../text_file_example_1.jpeg"
2571
+ "integration": "custom-integration"
2572
+ }
2573
+ ]
2574
+ )
2575
+
2576
"""
2577
2578
project_name, folder_name = extract_project_folder(project)
0 commit comments