All URIs are relative to https://compose.neurosynth.org/api
Method | HTTP request | Description |
---|---|---|
studysets_get | GET /studysets | Get a list of Studysets |
studysets_id_get | GET /studysets/{id} | Get information about a Studyset |
studysets_id_put | PUT /studysets/{id} | Update a Studyset |
studysets_post | POST /studysets | Create a new Studyset |
StudysetList studysets_get()
Get a list of Studysets
get a list of serialized/referenced studysets
import time
import os
import neurosynth_compose_sdk
from neurosynth_compose_sdk.models.studyset_list import StudysetList
from neurosynth_compose_sdk.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://compose.neurosynth.org/api
# See configuration.py for a list of all supported configuration parameters.
configuration = neurosynth_compose_sdk.Configuration(
host = "https://compose.neurosynth.org/api"
)
# Enter a context with an instance of the API client
with neurosynth_compose_sdk.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = neurosynth_compose_sdk.StudysetsApi(api_client)
try:
# Get a list of Studysets
api_response = api_instance.studysets_get()
print("The response of StudysetsApi->studysets_get:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling StudysetsApi->studysets_get: %s\n" % e)
This endpoint does not need any parameter.
No authorization required
- Content-Type: Not defined
- Accept: application/json, application/problem+json
Status code | Description | Response headers |
---|---|---|
200 | OK | - |
400 | form when a request goes wrong | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
StudysetReturn studysets_id_get(id)
Get information about a Studyset
get a single serialized/referenced studyset
import time
import os
import neurosynth_compose_sdk
from neurosynth_compose_sdk.models.studyset_return import StudysetReturn
from neurosynth_compose_sdk.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://compose.neurosynth.org/api
# See configuration.py for a list of all supported configuration parameters.
configuration = neurosynth_compose_sdk.Configuration(
host = "https://compose.neurosynth.org/api"
)
# Enter a context with an instance of the API client
with neurosynth_compose_sdk.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = neurosynth_compose_sdk.StudysetsApi(api_client)
id = 'id_example' # str |
try:
# Get information about a Studyset
api_response = api_instance.studysets_id_get(id)
print("The response of StudysetsApi->studysets_id_get:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling StudysetsApi->studysets_id_get: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
id | str |
No authorization required
- Content-Type: Not defined
- Accept: application/json, application/problem+json
Status code | Description | Response headers |
---|---|---|
200 | OK | - |
401 | form when a request goes wrong | - |
404 | form when a request goes wrong | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
StudysetReturn studysets_id_put(id, studyset=studyset)
Update a Studyset
update an existing serialized/referenced studyset
- Bearer Authentication (JSON-Web-Token):
import time
import os
import neurosynth_compose_sdk
from neurosynth_compose_sdk.models.studyset import Studyset
from neurosynth_compose_sdk.models.studyset_return import StudysetReturn
from neurosynth_compose_sdk.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://compose.neurosynth.org/api
# See configuration.py for a list of all supported configuration parameters.
configuration = neurosynth_compose_sdk.Configuration(
host = "https://compose.neurosynth.org/api"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure Bearer authorization: JSON-Web-Token
configuration = neurosynth_compose_sdk.Configuration(
access_token = os.environ["BEARER_TOKEN"]
)
# Enter a context with an instance of the API client
with neurosynth_compose_sdk.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = neurosynth_compose_sdk.StudysetsApi(api_client)
id = 'id_example' # str |
studyset = neurosynth_compose_sdk.Studyset() # Studyset | (optional)
try:
# Update a Studyset
api_response = api_instance.studysets_id_put(id, studyset=studyset)
print("The response of StudysetsApi->studysets_id_put:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling StudysetsApi->studysets_id_put: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
id | str | ||
studyset | Studyset | [optional] |
- Content-Type: application/json
- Accept: application/json, application/problem+json
Status code | Description | Response headers |
---|---|---|
200 | OK | - |
400 | Bad Request | - |
401 | form when a request goes wrong | - |
404 | form when a request goes wrong | - |
422 | form when a request goes wrong | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
StudysetReturn studysets_post(studyset_post_body=studyset_post_body)
Create a new Studyset
create a new serialized/referenced studyset
- Bearer Authentication (JSON-Web-Token):
import time
import os
import neurosynth_compose_sdk
from neurosynth_compose_sdk.models.studyset_post_body import StudysetPostBody
from neurosynth_compose_sdk.models.studyset_return import StudysetReturn
from neurosynth_compose_sdk.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://compose.neurosynth.org/api
# See configuration.py for a list of all supported configuration parameters.
configuration = neurosynth_compose_sdk.Configuration(
host = "https://compose.neurosynth.org/api"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure Bearer authorization: JSON-Web-Token
configuration = neurosynth_compose_sdk.Configuration(
access_token = os.environ["BEARER_TOKEN"]
)
# Enter a context with an instance of the API client
with neurosynth_compose_sdk.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = neurosynth_compose_sdk.StudysetsApi(api_client)
studyset_post_body = neurosynth_compose_sdk.StudysetPostBody() # StudysetPostBody | (optional)
try:
# Create a new Studyset
api_response = api_instance.studysets_post(studyset_post_body=studyset_post_body)
print("The response of StudysetsApi->studysets_post:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling StudysetsApi->studysets_post: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
studyset_post_body | StudysetPostBody | [optional] |
- Content-Type: application/json
- Accept: application/json, application/problem+json
Status code | Description | Response headers |
---|---|---|
200 | OK | - |
400 | form when a request goes wrong | - |
422 | form when a request goes wrong | - |
500 | form when a request goes wrong | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]