All URIs are relative to http://localhost
Method | HTTP request | Description |
---|---|---|
create_member_members_post | POST /members | Create member |
delete_member_members_id_delete | DELETE /members/{id} | Destroy member |
read_member_members_id_get | GET /members/{id} | Retrieve member |
read_members_members_get | GET /members | List members |
Member create_member_members_post(member_in)
Create member
Create new member.
- OAuth Authentication (user_bearer):
import time
import os
import compute_api_client
from compute_api_client.models.member import Member
from compute_api_client.models.member_in import MemberIn
from compute_api_client.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = compute_api_client.Configuration(
host = "http://localhost"
)
# 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.
configuration.access_token = os.environ["ACCESS_TOKEN"]
# Enter a context with an instance of the API client
async with compute_api_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = compute_api_client.MembersApi(api_client)
member_in = compute_api_client.MemberIn() # MemberIn |
try:
# Create member
api_response = await api_instance.create_member_members_post(member_in)
print("The response of MembersApi->create_member_members_post:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling MembersApi->create_member_members_post: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
member_in | MemberIn |
- Content-Type: application/json
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
201 | Successful Response | - |
422 | Validation Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
delete_member_members_id_delete(id)
Destroy member
Delete a member.
- OAuth Authentication (user_bearer):
import time
import os
import compute_api_client
from compute_api_client.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = compute_api_client.Configuration(
host = "http://localhost"
)
# 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.
configuration.access_token = os.environ["ACCESS_TOKEN"]
# Enter a context with an instance of the API client
async with compute_api_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = compute_api_client.MembersApi(api_client)
id = 56 # int |
try:
# Destroy member
await api_instance.delete_member_members_id_delete(id)
except Exception as e:
print("Exception when calling MembersApi->delete_member_members_id_delete: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
id | int |
void (empty response body)
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
204 | Successful Response | - |
404 | Not Found | - |
422 | Validation Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Member read_member_members_id_get(id)
Retrieve member
Get member by ID.
- OAuth Authentication (user_bearer):
import time
import os
import compute_api_client
from compute_api_client.models.member import Member
from compute_api_client.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = compute_api_client.Configuration(
host = "http://localhost"
)
# 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.
configuration.access_token = os.environ["ACCESS_TOKEN"]
# Enter a context with an instance of the API client
async with compute_api_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = compute_api_client.MembersApi(api_client)
id = 56 # int |
try:
# Retrieve member
api_response = await api_instance.read_member_members_id_get(id)
print("The response of MembersApi->read_member_members_id_get:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling MembersApi->read_member_members_id_get: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
id | int |
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Successful Response | - |
404 | Not Found | - |
422 | Validation Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
PageMember read_members_members_get(id=id, team_id=team_id, role=role, is_active=is_active, sort_by=sort_by, latest=latest, page=page, size=size)
List members
Read members.
- OAuth Authentication (user_bearer):
import time
import os
import compute_api_client
from compute_api_client.models.page_member import PageMember
from compute_api_client.models.role import Role
from compute_api_client.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = compute_api_client.Configuration(
host = "http://localhost"
)
# 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.
configuration.access_token = os.environ["ACCESS_TOKEN"]
# Enter a context with an instance of the API client
async with compute_api_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = compute_api_client.MembersApi(api_client)
id = 56 # int | (optional)
team_id = 56 # int | (optional)
role = compute_api_client.Role() # Role | (optional)
is_active = True # bool | (optional)
sort_by = 'sort_by_example' # str | The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'. (optional)
latest = True # bool | If True gets the most recently created object. (optional)
page = 1 # int | Page number (optional) (default to 1)
size = 50 # int | Page size (optional) (default to 50)
try:
# List members
api_response = await api_instance.read_members_members_get(id=id, team_id=team_id, role=role, is_active=is_active, sort_by=sort_by, latest=latest, page=page, size=size)
print("The response of MembersApi->read_members_members_get:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling MembersApi->read_members_members_get: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
id | int | [optional] | |
team_id | int | [optional] | |
role | Role | [optional] | |
is_active | bool | [optional] | |
sort_by | str | The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'. | [optional] |
latest | bool | If True gets the most recently created object. | [optional] |
page | int | Page number | [optional] [default to 1] |
size | int | Page size | [optional] [default to 50] |
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Successful Response | - |
422 | Validation Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]