Entity Types
Once you've configured your API instances, you can start making requests to retrieve and manipulate Entity Type records.
For now, you can only retrieve Entity Type records.
Once you've configured your API instances, you can start making requests to retrieve and manipulate Entity Type records.
For now, you can only retrieve Entity Type records.
import bruce_models as BM
# Listing all Entity Types in your account.
entity_types = BM.EntityType.get_list(bruce).get("Items")
# Getting a specific Entity Type by its ID.
entity_type = BM.EntityType.get(bruce, "entity-type-id")