Profile¶
Manage profiles in account be sure to use an account token with “write” permissions when using functions like create, edit and delete.
info¶
Gets information about the bucket
Parameters:
profileID: GenericID: strProfile identification
Example:¶
from tagoio_sdk import Account
myAccount = Account({ "token": "my_account_token" })
result = myAccount.profile.info("Profile ID")
list¶
Lists all the profiles in your account
Example:¶
from tagoio_sdk import Account
myAccount = Account({ "token": "my_account_token" })
result = myAccount.profile.list()
summary¶
Gets profile summary
Parameters:
profileID: GenericID: strProfile identification
Example:¶
from tagoio_sdk import Account
myAccount = Account({ "token": "my_account_token" })
result = myAccount.profile.summary("Profile ID")
tokenList¶
Gets profile tokenList
Parameters:
Example:¶
from tagoio_sdk import Account
myAccount = Account({ "token": "my_account_token" })
result = myAccount.profile.tokenList("Profile ID")