@@ -74,13 +74,13 @@ with neurostore_sdk.ApiClient(configuration) as api_client:
7474 desc = True # bool | sort results by descending order (as opposed to ascending order) (optional)
7575 page_size = 56 # int | number of results to show on a page (optional)
7676 paginate = True # bool | whether to paginate results (true) or return all results at once (false) (optional) (default to True)
77+ study = ' study_example' # str | Filter tables by study id (optional)
7778 name = ' name_example' # str | search the name field for a term (optional)
78- description = ' description_example' # str | search description field for a term (optional)
7979 nested = True # bool | whether to show the URI to a resource (false) or to embed the object in the response (true) (optional)
8080
8181 try :
8282 # GET list of analyses
83- api_response = api_instance.analyses_get(search = search, sort = sort, page = page, desc = desc, page_size = page_size, paginate = paginate, name = name, description = description , nested = nested)
83+ api_response = api_instance.analyses_get(search = search, sort = sort, page = page, desc = desc, page_size = page_size, paginate = paginate, study = study, name = name , nested = nested)
8484 print (" The response of AnalysesApi->analyses_get:\n " )
8585 pprint(api_response)
8686 except ApiException as e:
@@ -186,6 +186,11 @@ Class | Method | HTTP request | Description
186186* StoreApi* | [ ** studysets_id_get** ] ( docs/StoreApi.md#studysets_id_get ) | ** GET** /studysets/{id} | GET a studyset
187187* StoreApi* | [ ** studysets_id_put** ] ( docs/StoreApi.md#studysets_id_put ) | ** PUT** /studysets/{id} | PUT/update a studyset
188188* StoreApi* | [ ** studysets_post** ] ( docs/StoreApi.md#studysets_post ) | ** POST** /studysets/ | POST/create a studyset
189+ * StoreApi* | [ ** tables_get** ] ( docs/StoreApi.md#tables_get ) | ** GET** /tables/ | GET list of tables
190+ * StoreApi* | [ ** tables_id_delete** ] ( docs/StoreApi.md#tables_id_delete ) | ** DELETE** /tables/{id} | DELETE a table
191+ * StoreApi* | [ ** tables_id_get** ] ( docs/StoreApi.md#tables_id_get ) | ** GET** /tables/{id} | GET a table
192+ * StoreApi* | [ ** tables_id_put** ] ( docs/StoreApi.md#tables_id_put ) | ** PUT** /tables/{id} | PUT/update a table
193+ * StoreApi* | [ ** tables_post** ] ( docs/StoreApi.md#tables_post ) | ** POST** /tables/ | POST/create a table
189194* StudiesApi* | [ ** base_studies_get** ] ( docs/StudiesApi.md#base_studies_get ) | ** GET** /base-studies/ |
190195* StudiesApi* | [ ** base_studies_id_get** ] ( docs/StudiesApi.md#base_studies_id_get ) | ** GET** /base-studies/{id} | Your GET endpoint
191196* StudiesApi* | [ ** base_studies_id_put** ] ( docs/StudiesApi.md#base_studies_id_put ) | ** PUT** /base-studies/{id} |
@@ -200,6 +205,11 @@ Class | Method | HTTP request | Description
200205* StudysetsApi* | [ ** studysets_id_get** ] ( docs/StudysetsApi.md#studysets_id_get ) | ** GET** /studysets/{id} | GET a studyset
201206* StudysetsApi* | [ ** studysets_id_put** ] ( docs/StudysetsApi.md#studysets_id_put ) | ** PUT** /studysets/{id} | PUT/update a studyset
202207* StudysetsApi* | [ ** studysets_post** ] ( docs/StudysetsApi.md#studysets_post ) | ** POST** /studysets/ | POST/create a studyset
208+ * TablesApi* | [ ** tables_get** ] ( docs/TablesApi.md#tables_get ) | ** GET** /tables/ | GET list of tables
209+ * TablesApi* | [ ** tables_id_delete** ] ( docs/TablesApi.md#tables_id_delete ) | ** DELETE** /tables/{id} | DELETE a table
210+ * TablesApi* | [ ** tables_id_get** ] ( docs/TablesApi.md#tables_id_get ) | ** GET** /tables/{id} | GET a table
211+ * TablesApi* | [ ** tables_id_put** ] ( docs/TablesApi.md#tables_id_put ) | ** PUT** /tables/{id} | PUT/update a table
212+ * TablesApi* | [ ** tables_post** ] ( docs/TablesApi.md#tables_post ) | ** POST** /tables/ | POST/create a table
203213* UserApi* | [ ** users_get** ] ( docs/UserApi.md#users_get ) | ** GET** /users/ | Your GET endpoint
204214* UserApi* | [ ** users_id_get** ] ( docs/UserApi.md#users_id_get ) | ** GET** /users/{id} | Individual User Profile
205215* UserApi* | [ ** users_id_put** ] ( docs/UserApi.md#users_id_put ) | ** PUT** /users/{id} | Update Individual Profile
@@ -299,6 +309,12 @@ Class | Method | HTTP request | Description
299309 - [ StudysetReturn] ( docs/StudysetReturn.md )
300310 - [ StudysetReturnRelationships] ( docs/StudysetReturnRelationships.md )
301311 - [ StudysetReturnRelationshipsStudies] ( docs/StudysetReturnRelationshipsStudies.md )
312+ - [ TableCommon] ( docs/TableCommon.md )
313+ - [ TableList] ( docs/TableList.md )
314+ - [ TableRequest] ( docs/TableRequest.md )
315+ - [ TableRequestRelationships] ( docs/TableRequestRelationships.md )
316+ - [ TableReturn] ( docs/TableReturn.md )
317+ - [ TableReturnRelationships] ( docs/TableReturnRelationships.md )
302318 - [ User] ( docs/User.md )
303319 - [ UserList] ( docs/UserList.md )
304320 - [ UserlessResourceAttributes] ( docs/UserlessResourceAttributes.md )
0 commit comments