Python
from latitudesh_python_sdk import Latitudesh import os with Latitudesh( bearer=os.getenv("LATITUDESH_BEARER", ""), ) as latitudesh: res = latitudesh.roles.get(role_id="role_LMmAD8vldwop2") # Handle response print(res)
{ "data": { "id": "role_LMmAD8vldwop2", "type": "roles", "attributes": { "name": "billing" } }, "meta": {} }
Success
Show child attributes
Was this page helpful?