Method | HTTP request | Description |
---|---|---|
create | POST /type/{type_id}/credential | |
delete | DELETE /type/{type_id}/credential/{access_key} | |
list | GET /type/{type_id}/credential | |
update | PUT /type/{type_id}/credential/{access_key} |
bool, date, datetime, dict, float, int, list, str create(type_id, body)
- Api Key Authentication (Authorization):
import LAMP
from pprint import pprint
type_id = 'type_id_example' # str
body = LAMP.Credential()
result = LAMP.Credential.create(type_id, body)
pprint(result)
Name | Type | Description | Notes |
---|---|---|---|
type_id | str | ||
body | bool, date, datetime, dict, float, int, list, str |
bool, date, datetime, dict, float, int, list, 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]
bool, date, datetime, dict, float, int, list, str delete(type_id, access_key)
- Api Key Authentication (Authorization):
import LAMP
from pprint import pprint
type_id = 'type_id_example' # str
access_key = 'access_key_example' # str
result = LAMP.Credential.delete(type_id, access_key)
pprint(result)
Name | Type | Description | Notes |
---|---|---|---|
type_id | str | ||
access_key | str |
bool, date, datetime, dict, float, int, list, 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]
bool, date, datetime, dict, float, int, list, str list(type_id)
- Api Key Authentication (Authorization):
import LAMP
from pprint import pprint
type_id = 'type_id_example' # str
result = LAMP.Credential.list(type_id)
pprint(result)
Name | Type | Description | Notes |
---|---|---|---|
type_id | str | ||
transform | str | [optional] |
bool, date, datetime, dict, float, int, list, 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]
bool, date, datetime, dict, float, int, list, str update(type_id, access_key, body)
- Api Key Authentication (Authorization):
import LAMP
from pprint import pprint
type_id = 'type_id_example' # str
access_key = 'access_key_example' # str
body = LAMP.Credential()
result = LAMP.Credential.update(type_id, access_key, body)
pprint(result)
Name | Type | Description | Notes |
---|---|---|---|
type_id | str | ||
access_key | str | ||
body | bool, date, datetime, dict, float, int, list, str |
bool, date, datetime, dict, float, int, list, 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]