(organizations)
- list_organizations_for_user - List all organizations for a user
Lists users organizations.
import airbyte_api
from airbyte_api import models
s = airbyte_api.AirbyteAPI(
security=models.Security(
basic_auth=models.SchemeBasicAuth(
password='',
username='',
),
),
)
res = s.organizations.list_organizations_for_user()
if res.organizations_response is not None:
# handle response
pass
api.ListOrganizationsForUserResponse
Error Type | Status Code | Content Type |
---|---|---|
errors.SDKError | 4XX, 5XX | */* |