Method | HTTP request | Description |
---|---|---|
all | GET /researcher | Get the set of all researchers. |
create | POST /researcher | Create a new Researcher. |
delete | DELETE /researcher/{researcher_id} | Delete a researcher. |
update | PUT /researcher/{researcher_id} | Update a Researcher's settings. |
view | GET /researcher/{researcher_id} | Get a single researcher, by identifier. |
[object] all()
Get the set of all researchers.
Get the set of all researchers.
- Api Key Authentication (Authorization):
import LAMP
from pprint import pprint
# Get the set of all researchers.
result = LAMP.Researcher.all()
pprint(result)
Name | Type | Description | Notes |
---|---|---|---|
transform | str | [optional] |
[object]
- Content-Type: Not defined
- Accept:
application/json
Status code | Description | Response headers |
---|---|---|
200 | 200 Success | - |
400 | 400 Bad Request | - |
403 | 403 Authorization Failed | - |
404 | 404 Not Found | - |
0 | 500 Internal Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
str create(researcher_researcher)
Create a new Researcher.
Create a new Researcher.
- Api Key Authentication (Authorization):
import LAMP
from pprint import pprint
researcher_researcher = LAMP.Researcher() # Researcher
# Create a new Researcher.
result = LAMP.Researcher.create(researcher_researcher)
pprint(result)
Name | Type | Description | Notes |
---|---|---|---|
researcher_researcher | Researcher |
str
- Content-Type:
application/json
- Accept:
application/json
Status code | Description | Response headers |
---|---|---|
200 | 200 Success | - |
400 | 400 Bad Request | - |
403 | 403 Authorization Failed | - |
404 | 404 Not Found | - |
0 | 500 Internal Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
str delete(researcher_id)
Delete a researcher.
Delete a researcher.
- Api Key Authentication (Authorization):
import LAMP
from pprint import pprint
researcher_id = 'researcher_id_example' # str
# Delete a researcher.
result = LAMP.Researcher.delete(researcher_id)
pprint(result)
Name | Type | Description | Notes |
---|---|---|---|
researcher_id | str |
str
- Content-Type: Not defined
- Accept:
application/json
Status code | Description | Response headers |
---|---|---|
200 | 200 Success | - |
400 | 400 Bad Request | - |
403 | 403 Authorization Failed | - |
404 | 404 Not Found | - |
0 | 500 Internal Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
str update(researcher_id, researcher_researcher)
Update a Researcher's settings.
Update a Researcher's settings.
- Api Key Authentication (Authorization):
import LAMP
from pprint import pprint
researcher_id = 'researcher_id_example' # str
researcher_researcher = LAMP.Researcher() # Researcher
# Update a Researcher's settings.
result = LAMP.Researcher.update(researcher_id, researcher_researcher)
pprint(result)
Name | Type | Description | Notes |
---|---|---|---|
researcher_id | str | ||
researcher_researcher | Researcher | ||
transform | str | [optional] |
str
- Content-Type:
application/json
- Accept:
application/json
Status code | Description | Response headers |
---|---|---|
200 | 200 Success | - |
400 | 400 Bad Request | - |
403 | 403 Authorization Failed | - |
404 | 404 Not Found | - |
0 | 500 Internal Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[object] view(researcher_id)
Get a single researcher, by identifier.
Get a single researcher, by identifier.
- Api Key Authentication (Authorization):
import LAMP
from pprint import pprint
researcher_id = 'researcher_id_example' # str
# Get a single researcher, by identifier.
result = LAMP.Researcher.view(researcher_id)
pprint(result)
Name | Type | Description | Notes |
---|---|---|---|
researcher_id | str | ||
transform | str | [optional] |
[object]
- Content-Type: Not defined
- Accept:
application/json
Status code | Description | Response headers |
---|---|---|
200 | 200 Success | - |
400 | 400 Bad Request | - |
403 | 403 Authorization Failed | - |
404 | 404 Not Found | - |
0 | 500 Internal Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]