Skip to content

Latest commit

 

History

History
executable file
·
38 lines (21 loc) · 462 Bytes

README.md

File metadata and controls

executable file
·
38 lines (21 loc) · 462 Bytes

accounts

Overview

Accounts

Available Operations

list_users

Show current user accounts

Example Usage

import sdk


s = sdk.SDK(
    security=shared.Security(
        bearer_auth="",
    ),
)


res = s.accounts.list_users()

if res.body is not None:
    # handle response

Response

operations.ListUsersResponse