elabapi-python 0.1.5__tar.gz → 0.1.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/PKG-INFO +2 -2
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/README.md +10 -5
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/__init__.py +4 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/api/api_keys_api.py +5 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/api/comments_api.py +5 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/api/config_api.py +5 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/api/events_api.py +5 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/api/experiments_api.py +5 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/api/experiments_templates_api.py +14 -2
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/api/favorite_tags_api.py +5 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/api/items_api.py +10 -2
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/api/items_types_api.py +5 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/api/links_to_experiments_api.py +5 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/api/links_to_items_api.py +5 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/api/notifications_api.py +5 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/api/status_api.py +5 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/api/steps_api.py +5 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/api/tags_api.py +11 -7
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/api/team_tags_api.py +96 -3
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/api/teamgroups_api.py +5 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/api/teams_api.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/api/todolist_api.py +5 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/api/unfinished_steps_api.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/api/uploads_api.py +8 -4
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/api/users_api.py +104 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/api_client.py +2 -2
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/configuration.py +3 -3
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/__init__.py +4 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/apikey.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/apikeys_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/comment.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/config.py +28 -2
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/entity.py +16 -16
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/event.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/events_id_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/events_id_body1.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/eventsid_delta.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/experiment.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/experiment_template.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/experiments_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/experiments_id_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/experiments_links_subid_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/experiments_templates_body.py +1 -1
- elabapi-python-0.1.7/elabapi_python/models/experiments_templates_id_body.py +84 -0
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/favtags_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/id.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/id1.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/id2.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/id_comments_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/id_status_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/id_steps_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/id_tags_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/id_teamgroups_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/id_uploads_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/inline_response200.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/inline_response2001.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/inline_response2002.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/inline_response2003.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/item.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/items_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/items_id_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/items_links_subid_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/items_type.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/items_types_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/link.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/notification.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/status.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/step.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/steps_subid_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/tag.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/tags_subid_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/team.py +1 -1
- elabapi-python-0.1.7/elabapi_python/models/team_tags_body.py +112 -0
- elabapi-python-0.1.5/elabapi_python/models/team_tags_body.py → elabapi-python-0.1.7/elabapi_python/models/team_tags_body1.py +9 -9
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/team_tags_id_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/teamgroup.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/teamgroup_users.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/teamgroups_subid_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/teams_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/todoitem.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/todolist_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/todolist_id_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/unfinished_step.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/unfinished_steps.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/upload.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/uploads_subid_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/users.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/models/users_body.py +1 -1
- elabapi-python-0.1.7/elabapi_python/models/users_id_body.py +84 -0
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/rest.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python.egg-info/PKG-INFO +2 -2
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python.egg-info/SOURCES.txt +7 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/setup.py +3 -3
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_api_keys_api.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_apikey.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_apikeys_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_comment.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_comments_api.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_config.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_config_api.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_entity.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_event.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_events_api.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_events_id_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_events_id_body1.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_eventsid_delta.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_experiment.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_experiment_template.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_experiments_api.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_experiments_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_experiments_id_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_experiments_links_subid_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_experiments_templates_api.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_experiments_templates_body.py +1 -1
- elabapi-python-0.1.7/test/test_experiments_templates_id_body.py +39 -0
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_favorite_tags_api.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_favtags_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_id.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_id1.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_id2.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_id_comments_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_id_status_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_id_steps_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_id_tags_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_id_teamgroups_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_id_uploads_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_inline_response200.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_inline_response2001.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_inline_response2002.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_inline_response2003.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_item.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_items_api.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_items_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_items_id_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_items_links_subid_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_items_type.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_items_types_api.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_items_types_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_link.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_links_to_experiments_api.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_links_to_items_api.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_notification.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_notifications_api.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_status.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_status_api.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_step.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_steps_api.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_steps_subid_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_tag.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_tags_api.py +3 -3
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_tags_subid_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_team.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_team_tags_api.py +8 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_team_tags_body.py +1 -1
- elabapi-python-0.1.7/test/test_team_tags_body1.py +39 -0
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_team_tags_id_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_teamgroup.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_teamgroup_users.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_teamgroups_api.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_teamgroups_subid_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_teams_api.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_teams_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_todoitem.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_todolist_api.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_todolist_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_todolist_id_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_unfinished_step.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_unfinished_steps.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_unfinished_steps_api.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_upload.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_uploads_api.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_uploads_subid_body.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_users.py +1 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_users_api.py +8 -1
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/test_users_body.py +1 -1
- elabapi-python-0.1.7/test/test_users_id_body.py +39 -0
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/api/__init__.py +0 -0
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python.egg-info/dependency_links.txt +0 -0
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python.egg-info/requires.txt +0 -0
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python.egg-info/top_level.txt +0 -0
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/setup.cfg +0 -0
- {elabapi-python-0.1.5 → elabapi-python-0.1.7}/test/__init__.py +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: elabapi-python
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.7
|
|
4
4
|
Summary: eLabFTW REST API v2 Documentation
|
|
5
5
|
Home-page: https://github.com/elabftw/elabapi-python
|
|
6
6
|
Author-email:
|
|
7
7
|
Keywords: Swagger,eLabFTW REST API v2 Documentation
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
This document describes all available endpoints and methods for eLabFTW's API version 2. # noqa: E501
|
|
10
10
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# elabapi-python
|
|
2
|
-
|
|
2
|
+
This document describes all available endpoints and methods for eLabFTW's API version 2.
|
|
3
3
|
|
|
4
4
|
This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
|
|
5
5
|
|
|
6
6
|
- API version: 2.0.0
|
|
7
|
-
- Package version: 0.1.
|
|
7
|
+
- Package version: 0.1.7
|
|
8
8
|
- Build package: io.swagger.codegen.v3.generators.python.PythonClientCodegen
|
|
9
9
|
|
|
10
10
|
## Requirements.
|
|
@@ -102,7 +102,7 @@ except ApiException as e:
|
|
|
102
102
|
|
|
103
103
|
## Documentation for API Endpoints
|
|
104
104
|
|
|
105
|
-
All URIs are relative to *https://
|
|
105
|
+
All URIs are relative to *https://elab.local:3148/api/v2*
|
|
106
106
|
|
|
107
107
|
Class | Method | HTTP request | Description
|
|
108
108
|
------------ | ------------- | ------------- | -------------
|
|
@@ -163,14 +163,15 @@ Class | Method | HTTP request | Description
|
|
|
163
163
|
*StepsApi* | [**patch_step**](docs/StepsApi.md#patch_step) | **PATCH** /{entity_type}/{id}/steps/{subid} | Actions on a step.
|
|
164
164
|
*StepsApi* | [**post_step**](docs/StepsApi.md#post_step) | **POST** /{entity_type}/{id}/steps | Create a step.
|
|
165
165
|
*StepsApi* | [**read_steps**](docs/StepsApi.md#read_steps) | **GET** /{entity_type}/{id}/steps | Read all steps of that entity.
|
|
166
|
-
*TagsApi* | [**delete_tag**](docs/TagsApi.md#delete_tag) | **DELETE** /{entity_type}/{id}/tags/{subid} | Delete
|
|
167
|
-
*TagsApi* | [**patch_tag**](docs/TagsApi.md#patch_tag) | **PATCH** /{entity_type}/{id}/tags/{subid} | Actions on a tag.
|
|
166
|
+
*TagsApi* | [**delete_tag**](docs/TagsApi.md#delete_tag) | **DELETE** /{entity_type}/{id}/tags/{subid} | Delete all tags.
|
|
167
|
+
*TagsApi* | [**patch_tag**](docs/TagsApi.md#patch_tag) | **PATCH** /{entity_type}/{id}/tags/{subid} | Actions on a tag (like removing it from the entity).
|
|
168
168
|
*TagsApi* | [**post_tag**](docs/TagsApi.md#post_tag) | **POST** /{entity_type}/{id}/tags | Create a tag.
|
|
169
169
|
*TagsApi* | [**read_tag**](docs/TagsApi.md#read_tag) | **GET** /{entity_type}/{id}/tags/{subid} | Read a tag.
|
|
170
170
|
*TagsApi* | [**read_tags**](docs/TagsApi.md#read_tags) | **GET** /{entity_type}/{id}/tags | Read all tags of that entity.
|
|
171
171
|
*TeamTagsApi* | [**delete_team_tag**](docs/TeamTagsApi.md#delete_team_tag) | **DELETE** /team_tags/{id} | Delete a tag.
|
|
172
172
|
*TeamTagsApi* | [**patch_tags**](docs/TeamTagsApi.md#patch_tags) | **PATCH** /team_tags | Actions on tags.
|
|
173
173
|
*TeamTagsApi* | [**patch_team_tag**](docs/TeamTagsApi.md#patch_team_tag) | **PATCH** /team_tags/{id} | Actions on a tag.
|
|
174
|
+
*TeamTagsApi* | [**post_team_tag**](docs/TeamTagsApi.md#post_team_tag) | **POST** /team_tags | Create a tag in the team.
|
|
174
175
|
*TeamTagsApi* | [**read_team_tag**](docs/TeamTagsApi.md#read_team_tag) | **GET** /team_tags/{id} | Read a tag.
|
|
175
176
|
*TeamTagsApi* | [**read_team_tags**](docs/TeamTagsApi.md#read_team_tags) | **GET** /team_tags | Read all tags for the team.
|
|
176
177
|
*TeamgroupsApi* | [**delete_teamgroup**](docs/TeamgroupsApi.md#delete_teamgroup) | **DELETE** /teams/{id}/teamgroups/{subid} | Delete a teamgroup.
|
|
@@ -194,6 +195,7 @@ Class | Method | HTTP request | Description
|
|
|
194
195
|
*UploadsApi* | [**post_upload_replace**](docs/UploadsApi.md#post_upload_replace) | **POST** /{entity_type}/{id}/uploads/{subid} | Replace an existing uploaded file. The existing file will be archived and the new one will be added.
|
|
195
196
|
*UploadsApi* | [**read_upload**](docs/UploadsApi.md#read_upload) | **GET** /{entity_type}/{id}/uploads/{subid} | Read an upload.
|
|
196
197
|
*UploadsApi* | [**read_uploads**](docs/UploadsApi.md#read_uploads) | **GET** /{entity_type}/{id}/uploads | Read attached files of that entity.
|
|
198
|
+
*UsersApi* | [**patch_user**](docs/UsersApi.md#patch_user) | **PATCH** /users/{id} | Modify a user.
|
|
197
199
|
*UsersApi* | [**post_user**](docs/UsersApi.md#post_user) | **POST** /users | Create a new user.
|
|
198
200
|
*UsersApi* | [**read_user**](docs/UsersApi.md#read_user) | **GET** /users/{id} | Read information of a user.
|
|
199
201
|
*UsersApi* | [**read_users**](docs/UsersApi.md#read_users) | **GET** /users | Read users from instance.
|
|
@@ -215,6 +217,7 @@ Class | Method | HTTP request | Description
|
|
|
215
217
|
- [ExperimentsIdBody](docs/ExperimentsIdBody.md)
|
|
216
218
|
- [ExperimentsLinksSubidBody](docs/ExperimentsLinksSubidBody.md)
|
|
217
219
|
- [ExperimentsTemplatesBody](docs/ExperimentsTemplatesBody.md)
|
|
220
|
+
- [ExperimentsTemplatesIdBody](docs/ExperimentsTemplatesIdBody.md)
|
|
218
221
|
- [FavtagsBody](docs/FavtagsBody.md)
|
|
219
222
|
- [Id](docs/Id.md)
|
|
220
223
|
- [Id1](docs/Id1.md)
|
|
@@ -244,6 +247,7 @@ Class | Method | HTTP request | Description
|
|
|
244
247
|
- [TagsSubidBody](docs/TagsSubidBody.md)
|
|
245
248
|
- [Team](docs/Team.md)
|
|
246
249
|
- [TeamTagsBody](docs/TeamTagsBody.md)
|
|
250
|
+
- [TeamTagsBody1](docs/TeamTagsBody1.md)
|
|
247
251
|
- [TeamTagsIdBody](docs/TeamTagsIdBody.md)
|
|
248
252
|
- [Teamgroup](docs/Teamgroup.md)
|
|
249
253
|
- [TeamgroupUsers](docs/TeamgroupUsers.md)
|
|
@@ -258,6 +262,7 @@ Class | Method | HTTP request | Description
|
|
|
258
262
|
- [UploadsSubidBody](docs/UploadsSubidBody.md)
|
|
259
263
|
- [Users](docs/Users.md)
|
|
260
264
|
- [UsersBody](docs/UsersBody.md)
|
|
265
|
+
- [UsersIdBody](docs/UsersIdBody.md)
|
|
261
266
|
|
|
262
267
|
## Documentation For Authorization
|
|
263
268
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"""
|
|
6
6
|
eLabFTW REST API v2 Documentation
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
This document describes all available endpoints and methods for eLabFTW's API version 2. # noqa: E501
|
|
9
9
|
|
|
10
10
|
OpenAPI spec version: 2.0.0
|
|
11
11
|
|
|
@@ -56,6 +56,7 @@ from elabapi_python.models.experiments_body import ExperimentsBody
|
|
|
56
56
|
from elabapi_python.models.experiments_id_body import ExperimentsIdBody
|
|
57
57
|
from elabapi_python.models.experiments_links_subid_body import ExperimentsLinksSubidBody
|
|
58
58
|
from elabapi_python.models.experiments_templates_body import ExperimentsTemplatesBody
|
|
59
|
+
from elabapi_python.models.experiments_templates_id_body import ExperimentsTemplatesIdBody
|
|
59
60
|
from elabapi_python.models.favtags_body import FavtagsBody
|
|
60
61
|
from elabapi_python.models.id import Id
|
|
61
62
|
from elabapi_python.models.id1 import Id1
|
|
@@ -85,6 +86,7 @@ from elabapi_python.models.tag import Tag
|
|
|
85
86
|
from elabapi_python.models.tags_subid_body import TagsSubidBody
|
|
86
87
|
from elabapi_python.models.team import Team
|
|
87
88
|
from elabapi_python.models.team_tags_body import TeamTagsBody
|
|
89
|
+
from elabapi_python.models.team_tags_body1 import TeamTagsBody1
|
|
88
90
|
from elabapi_python.models.team_tags_id_body import TeamTagsIdBody
|
|
89
91
|
from elabapi_python.models.teamgroup import Teamgroup
|
|
90
92
|
from elabapi_python.models.teamgroup_users import TeamgroupUsers
|
|
@@ -99,3 +101,4 @@ from elabapi_python.models.upload import Upload
|
|
|
99
101
|
from elabapi_python.models.uploads_subid_body import UploadsSubidBody
|
|
100
102
|
from elabapi_python.models.users import Users
|
|
101
103
|
from elabapi_python.models.users_body import UsersBody
|
|
104
|
+
from elabapi_python.models.users_id_body import UsersIdBody
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"""
|
|
4
4
|
eLabFTW REST API v2 Documentation
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
This document describes all available endpoints and methods for eLabFTW's API version 2. # noqa: E501
|
|
7
7
|
|
|
8
8
|
OpenAPI spec version: 2.0.0
|
|
9
9
|
|
|
@@ -104,6 +104,10 @@ class ApiKeysApi(object):
|
|
|
104
104
|
local_var_files = {}
|
|
105
105
|
|
|
106
106
|
body_params = None
|
|
107
|
+
# HTTP header `Content-Type`
|
|
108
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
109
|
+
['application/json']) # noqa: E501
|
|
110
|
+
|
|
107
111
|
# Authentication setting
|
|
108
112
|
auth_settings = ['token'] # noqa: E501
|
|
109
113
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"""
|
|
4
4
|
eLabFTW REST API v2 Documentation
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
This document describes all available endpoints and methods for eLabFTW's API version 2. # noqa: E501
|
|
7
7
|
|
|
8
8
|
OpenAPI spec version: 2.0.0
|
|
9
9
|
|
|
@@ -120,6 +120,10 @@ class CommentsApi(object):
|
|
|
120
120
|
local_var_files = {}
|
|
121
121
|
|
|
122
122
|
body_params = None
|
|
123
|
+
# HTTP header `Content-Type`
|
|
124
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
125
|
+
['application/json']) # noqa: E501
|
|
126
|
+
|
|
123
127
|
# Authentication setting
|
|
124
128
|
auth_settings = ['token'] # noqa: E501
|
|
125
129
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"""
|
|
4
4
|
eLabFTW REST API v2 Documentation
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
This document describes all available endpoints and methods for eLabFTW's API version 2. # noqa: E501
|
|
7
7
|
|
|
8
8
|
OpenAPI spec version: 2.0.0
|
|
9
9
|
|
|
@@ -94,6 +94,10 @@ class ConfigApi(object):
|
|
|
94
94
|
local_var_files = {}
|
|
95
95
|
|
|
96
96
|
body_params = None
|
|
97
|
+
# HTTP header `Content-Type`
|
|
98
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
99
|
+
['application/json']) # noqa: E501
|
|
100
|
+
|
|
97
101
|
# Authentication setting
|
|
98
102
|
auth_settings = ['token'] # noqa: E501
|
|
99
103
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"""
|
|
4
4
|
eLabFTW REST API v2 Documentation
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
This document describes all available endpoints and methods for eLabFTW's API version 2. # noqa: E501
|
|
7
7
|
|
|
8
8
|
OpenAPI spec version: 2.0.0
|
|
9
9
|
|
|
@@ -102,6 +102,10 @@ class EventsApi(object):
|
|
|
102
102
|
local_var_files = {}
|
|
103
103
|
|
|
104
104
|
body_params = None
|
|
105
|
+
# HTTP header `Content-Type`
|
|
106
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
107
|
+
['application/json']) # noqa: E501
|
|
108
|
+
|
|
105
109
|
# Authentication setting
|
|
106
110
|
auth_settings = ['token'] # noqa: E501
|
|
107
111
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"""
|
|
4
4
|
eLabFTW REST API v2 Documentation
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
This document describes all available endpoints and methods for eLabFTW's API version 2. # noqa: E501
|
|
7
7
|
|
|
8
8
|
OpenAPI spec version: 2.0.0
|
|
9
9
|
|
|
@@ -104,6 +104,10 @@ class ExperimentsApi(object):
|
|
|
104
104
|
local_var_files = {}
|
|
105
105
|
|
|
106
106
|
body_params = None
|
|
107
|
+
# HTTP header `Content-Type`
|
|
108
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
109
|
+
['application/json']) # noqa: E501
|
|
110
|
+
|
|
107
111
|
# Authentication setting
|
|
108
112
|
auth_settings = ['token'] # noqa: E501
|
|
109
113
|
|
{elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/api/experiments_templates_api.py
RENAMED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"""
|
|
4
4
|
eLabFTW REST API v2 Documentation
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
This document describes all available endpoints and methods for eLabFTW's API version 2. # noqa: E501
|
|
7
7
|
|
|
8
8
|
OpenAPI spec version: 2.0.0
|
|
9
9
|
|
|
@@ -104,6 +104,10 @@ class ExperimentsTemplatesApi(object):
|
|
|
104
104
|
local_var_files = {}
|
|
105
105
|
|
|
106
106
|
body_params = None
|
|
107
|
+
# HTTP header `Content-Type`
|
|
108
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
109
|
+
['application/json']) # noqa: E501
|
|
110
|
+
|
|
107
111
|
# Authentication setting
|
|
108
112
|
auth_settings = ['token'] # noqa: E501
|
|
109
113
|
|
|
@@ -226,6 +230,7 @@ class ExperimentsTemplatesApi(object):
|
|
|
226
230
|
|
|
227
231
|
:param async_req bool
|
|
228
232
|
:param int id: ID of the experiment template (required)
|
|
233
|
+
:param ExperimentsTemplatesIdBody body: Parameters for modifying an experiment template
|
|
229
234
|
:return: ExperimentTemplate
|
|
230
235
|
If the method is called asynchronously,
|
|
231
236
|
returns the request thread.
|
|
@@ -247,12 +252,13 @@ class ExperimentsTemplatesApi(object):
|
|
|
247
252
|
|
|
248
253
|
:param async_req bool
|
|
249
254
|
:param int id: ID of the experiment template (required)
|
|
255
|
+
:param ExperimentsTemplatesIdBody body: Parameters for modifying an experiment template
|
|
250
256
|
:return: ExperimentTemplate
|
|
251
257
|
If the method is called asynchronously,
|
|
252
258
|
returns the request thread.
|
|
253
259
|
"""
|
|
254
260
|
|
|
255
|
-
all_params = ['id'] # noqa: E501
|
|
261
|
+
all_params = ['id', 'body'] # noqa: E501
|
|
256
262
|
all_params.append('async_req')
|
|
257
263
|
all_params.append('_return_http_data_only')
|
|
258
264
|
all_params.append('_preload_content')
|
|
@@ -286,10 +292,16 @@ class ExperimentsTemplatesApi(object):
|
|
|
286
292
|
local_var_files = {}
|
|
287
293
|
|
|
288
294
|
body_params = None
|
|
295
|
+
if 'body' in params:
|
|
296
|
+
body_params = params['body']
|
|
289
297
|
# HTTP header `Accept`
|
|
290
298
|
header_params['Accept'] = self.api_client.select_header_accept(
|
|
291
299
|
['application/json']) # noqa: E501
|
|
292
300
|
|
|
301
|
+
# HTTP header `Content-Type`
|
|
302
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
303
|
+
['application/json']) # noqa: E501
|
|
304
|
+
|
|
293
305
|
# Authentication setting
|
|
294
306
|
auth_settings = ['token'] # noqa: E501
|
|
295
307
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"""
|
|
4
4
|
eLabFTW REST API v2 Documentation
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
This document describes all available endpoints and methods for eLabFTW's API version 2. # noqa: E501
|
|
7
7
|
|
|
8
8
|
OpenAPI spec version: 2.0.0
|
|
9
9
|
|
|
@@ -102,6 +102,10 @@ class FavoriteTagsApi(object):
|
|
|
102
102
|
local_var_files = {}
|
|
103
103
|
|
|
104
104
|
body_params = None
|
|
105
|
+
# HTTP header `Content-Type`
|
|
106
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
107
|
+
['application/json']) # noqa: E501
|
|
108
|
+
|
|
105
109
|
# Authentication setting
|
|
106
110
|
auth_settings = ['token'] # noqa: E501
|
|
107
111
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"""
|
|
4
4
|
eLabFTW REST API v2 Documentation
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
This document describes all available endpoints and methods for eLabFTW's API version 2. # noqa: E501
|
|
7
7
|
|
|
8
8
|
OpenAPI spec version: 2.0.0
|
|
9
9
|
|
|
@@ -104,6 +104,10 @@ class ItemsApi(object):
|
|
|
104
104
|
local_var_files = {}
|
|
105
105
|
|
|
106
106
|
body_params = None
|
|
107
|
+
# HTTP header `Content-Type`
|
|
108
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
109
|
+
['application/json']) # noqa: E501
|
|
110
|
+
|
|
107
111
|
# Authentication setting
|
|
108
112
|
auth_settings = ['token'] # noqa: E501
|
|
109
113
|
|
|
@@ -133,6 +137,7 @@ class ItemsApi(object):
|
|
|
133
137
|
|
|
134
138
|
:param async_req bool
|
|
135
139
|
:param int id: ID of the item (required)
|
|
140
|
+
:param str format: Get the entity in a different format like csv, pdf, eln or zip. \"pdfa\" means archive pdf (PDF/A), same with \"zipa\".
|
|
136
141
|
:return: Item
|
|
137
142
|
If the method is called asynchronously,
|
|
138
143
|
returns the request thread.
|
|
@@ -154,12 +159,13 @@ class ItemsApi(object):
|
|
|
154
159
|
|
|
155
160
|
:param async_req bool
|
|
156
161
|
:param int id: ID of the item (required)
|
|
162
|
+
:param str format: Get the entity in a different format like csv, pdf, eln or zip. \"pdfa\" means archive pdf (PDF/A), same with \"zipa\".
|
|
157
163
|
:return: Item
|
|
158
164
|
If the method is called asynchronously,
|
|
159
165
|
returns the request thread.
|
|
160
166
|
"""
|
|
161
167
|
|
|
162
|
-
all_params = ['id'] # noqa: E501
|
|
168
|
+
all_params = ['id', 'format'] # noqa: E501
|
|
163
169
|
all_params.append('async_req')
|
|
164
170
|
all_params.append('_return_http_data_only')
|
|
165
171
|
all_params.append('_preload_content')
|
|
@@ -186,6 +192,8 @@ class ItemsApi(object):
|
|
|
186
192
|
path_params['id'] = params['id'] # noqa: E501
|
|
187
193
|
|
|
188
194
|
query_params = []
|
|
195
|
+
if 'format' in params:
|
|
196
|
+
query_params.append(('format', params['format'])) # noqa: E501
|
|
189
197
|
|
|
190
198
|
header_params = {}
|
|
191
199
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"""
|
|
4
4
|
eLabFTW REST API v2 Documentation
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
This document describes all available endpoints and methods for eLabFTW's API version 2. # noqa: E501
|
|
7
7
|
|
|
8
8
|
OpenAPI spec version: 2.0.0
|
|
9
9
|
|
|
@@ -104,6 +104,10 @@ class ItemsTypesApi(object):
|
|
|
104
104
|
local_var_files = {}
|
|
105
105
|
|
|
106
106
|
body_params = None
|
|
107
|
+
# HTTP header `Content-Type`
|
|
108
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
109
|
+
['application/json']) # noqa: E501
|
|
110
|
+
|
|
107
111
|
# Authentication setting
|
|
108
112
|
auth_settings = ['token'] # noqa: E501
|
|
109
113
|
|
{elabapi-python-0.1.5 → elabapi-python-0.1.7}/elabapi_python/api/links_to_experiments_api.py
RENAMED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"""
|
|
4
4
|
eLabFTW REST API v2 Documentation
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
This document describes all available endpoints and methods for eLabFTW's API version 2. # noqa: E501
|
|
7
7
|
|
|
8
8
|
OpenAPI spec version: 2.0.0
|
|
9
9
|
|
|
@@ -120,6 +120,10 @@ class LinksToExperimentsApi(object):
|
|
|
120
120
|
local_var_files = {}
|
|
121
121
|
|
|
122
122
|
body_params = None
|
|
123
|
+
# HTTP header `Content-Type`
|
|
124
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
125
|
+
['application/json']) # noqa: E501
|
|
126
|
+
|
|
123
127
|
# Authentication setting
|
|
124
128
|
auth_settings = ['token'] # noqa: E501
|
|
125
129
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"""
|
|
4
4
|
eLabFTW REST API v2 Documentation
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
This document describes all available endpoints and methods for eLabFTW's API version 2. # noqa: E501
|
|
7
7
|
|
|
8
8
|
OpenAPI spec version: 2.0.0
|
|
9
9
|
|
|
@@ -120,6 +120,10 @@ class LinksToItemsApi(object):
|
|
|
120
120
|
local_var_files = {}
|
|
121
121
|
|
|
122
122
|
body_params = None
|
|
123
|
+
# HTTP header `Content-Type`
|
|
124
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
125
|
+
['application/json']) # noqa: E501
|
|
126
|
+
|
|
123
127
|
# Authentication setting
|
|
124
128
|
auth_settings = ['token'] # noqa: E501
|
|
125
129
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"""
|
|
4
4
|
eLabFTW REST API v2 Documentation
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
This document describes all available endpoints and methods for eLabFTW's API version 2. # noqa: E501
|
|
7
7
|
|
|
8
8
|
OpenAPI spec version: 2.0.0
|
|
9
9
|
|
|
@@ -104,6 +104,10 @@ class NotificationsApi(object):
|
|
|
104
104
|
local_var_files = {}
|
|
105
105
|
|
|
106
106
|
body_params = None
|
|
107
|
+
# HTTP header `Content-Type`
|
|
108
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
109
|
+
['application/json']) # noqa: E501
|
|
110
|
+
|
|
107
111
|
# Authentication setting
|
|
108
112
|
auth_settings = ['token'] # noqa: E501
|
|
109
113
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"""
|
|
4
4
|
eLabFTW REST API v2 Documentation
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
This document describes all available endpoints and methods for eLabFTW's API version 2. # noqa: E501
|
|
7
7
|
|
|
8
8
|
OpenAPI spec version: 2.0.0
|
|
9
9
|
|
|
@@ -110,6 +110,10 @@ class StatusApi(object):
|
|
|
110
110
|
local_var_files = {}
|
|
111
111
|
|
|
112
112
|
body_params = None
|
|
113
|
+
# HTTP header `Content-Type`
|
|
114
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
115
|
+
['application/json']) # noqa: E501
|
|
116
|
+
|
|
113
117
|
# Authentication setting
|
|
114
118
|
auth_settings = ['token'] # noqa: E501
|
|
115
119
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"""
|
|
4
4
|
eLabFTW REST API v2 Documentation
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
This document describes all available endpoints and methods for eLabFTW's API version 2. # noqa: E501
|
|
7
7
|
|
|
8
8
|
OpenAPI spec version: 2.0.0
|
|
9
9
|
|
|
@@ -120,6 +120,10 @@ class StepsApi(object):
|
|
|
120
120
|
local_var_files = {}
|
|
121
121
|
|
|
122
122
|
body_params = None
|
|
123
|
+
# HTTP header `Content-Type`
|
|
124
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
125
|
+
['application/json']) # noqa: E501
|
|
126
|
+
|
|
123
127
|
# Authentication setting
|
|
124
128
|
auth_settings = ['token'] # noqa: E501
|
|
125
129
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"""
|
|
4
4
|
eLabFTW REST API v2 Documentation
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
This document describes all available endpoints and methods for eLabFTW's API version 2. # noqa: E501
|
|
7
7
|
|
|
8
8
|
OpenAPI spec version: 2.0.0
|
|
9
9
|
|
|
@@ -33,9 +33,9 @@ class TagsApi(object):
|
|
|
33
33
|
self.api_client = api_client
|
|
34
34
|
|
|
35
35
|
def delete_tag(self, entity_type, id, subid, **kwargs): # noqa: E501
|
|
36
|
-
"""Delete
|
|
36
|
+
"""Delete all tags. # noqa: E501
|
|
37
37
|
|
|
38
|
-
|
|
38
|
+
All the tags from that entity get removed. # noqa: E501
|
|
39
39
|
This method makes a synchronous HTTP request by default. To make an
|
|
40
40
|
asynchronous HTTP request, please pass async_req=True
|
|
41
41
|
>>> thread = api.delete_tag(entity_type, id, subid, async_req=True)
|
|
@@ -57,9 +57,9 @@ class TagsApi(object):
|
|
|
57
57
|
return data
|
|
58
58
|
|
|
59
59
|
def delete_tag_with_http_info(self, entity_type, id, subid, **kwargs): # noqa: E501
|
|
60
|
-
"""Delete
|
|
60
|
+
"""Delete all tags. # noqa: E501
|
|
61
61
|
|
|
62
|
-
|
|
62
|
+
All the tags from that entity get removed. # noqa: E501
|
|
63
63
|
This method makes a synchronous HTTP request by default. To make an
|
|
64
64
|
asynchronous HTTP request, please pass async_req=True
|
|
65
65
|
>>> thread = api.delete_tag_with_http_info(entity_type, id, subid, async_req=True)
|
|
@@ -120,6 +120,10 @@ class TagsApi(object):
|
|
|
120
120
|
local_var_files = {}
|
|
121
121
|
|
|
122
122
|
body_params = None
|
|
123
|
+
# HTTP header `Content-Type`
|
|
124
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
125
|
+
['application/json']) # noqa: E501
|
|
126
|
+
|
|
123
127
|
# Authentication setting
|
|
124
128
|
auth_settings = ['token'] # noqa: E501
|
|
125
129
|
|
|
@@ -140,7 +144,7 @@ class TagsApi(object):
|
|
|
140
144
|
collection_formats=collection_formats)
|
|
141
145
|
|
|
142
146
|
def patch_tag(self, entity_type, id, subid, **kwargs): # noqa: E501
|
|
143
|
-
"""Actions on a tag. # noqa: E501
|
|
147
|
+
"""Actions on a tag (like removing it from the entity). # noqa: E501
|
|
144
148
|
|
|
145
149
|
This method makes a synchronous HTTP request by default. To make an
|
|
146
150
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -164,7 +168,7 @@ class TagsApi(object):
|
|
|
164
168
|
return data
|
|
165
169
|
|
|
166
170
|
def patch_tag_with_http_info(self, entity_type, id, subid, **kwargs): # noqa: E501
|
|
167
|
-
"""Actions on a tag. # noqa: E501
|
|
171
|
+
"""Actions on a tag (like removing it from the entity). # noqa: E501
|
|
168
172
|
|
|
169
173
|
This method makes a synchronous HTTP request by default. To make an
|
|
170
174
|
asynchronous HTTP request, please pass async_req=True
|