Skip to content

Latest commit

 

History

History
46 lines (30 loc) · 903 Bytes

File metadata and controls

46 lines (30 loc) · 903 Bytes

Organizations

(organizations)

Overview

Available Operations

list_organizations_for_user

Lists users organizations.

Example Usage

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

Response

api.ListOrganizationsForUserResponse

Errors

Error Type Status Code Content Type
errors.SDKError 4XX, 5XX */*