diff --git a/src/superannotate/lib/app/interface/sdk_interface.py b/src/superannotate/lib/app/interface/sdk_interface.py index 0c78d080b..7d9aed666 100644 --- a/src/superannotate/lib/app/interface/sdk_interface.py +++ b/src/superannotate/lib/app/interface/sdk_interface.py @@ -2559,6 +2559,20 @@ def attach_items( attachments = [{"name": "item", "url": "https://..."}] ) + Example of attaching items from custom integration: + :: + client = SAClient() + client.attach_items( + project = "Medical Annotations", + attachments = [ + { + "name": "item", + "url": "https://sa-public-files.s3.../text_file_example_1.jpeg" + "integration": "custom-integration" + } + ] + ) + """ project_name, folder_name = extract_project_folder(project)