## Get Request Priority, Status, and TLP constants `cloudforce_one.requests.constants(RequestConstantsParams**kwargs) -> RequestConstants` **get** `/accounts/{account_id}/cloudforce-one/requests/constants` Get Request Priority, Status, and TLP constants ### Parameters - `account_id: str` Identifier. ### Returns - `class RequestConstants: …` - `priority: Optional[List[Literal["routine", "high", "urgent"]]]` - `"routine"` - `"high"` - `"urgent"` - `status: Optional[List[Literal["open", "accepted", "reported", 3 more]]]` - `"open"` - `"accepted"` - `"reported"` - `"approved"` - `"completed"` - `"declined"` - `tlp: Optional[List[Literal["clear", "amber", "amber-strict", 2 more]]]` - `"clear"` - `"amber"` - `"amber-strict"` - `"green"` - `"red"` ### Example ```python import os from cloudflare import Cloudflare client = Cloudflare( api_email=os.environ.get("CLOUDFLARE_EMAIL"), # This is the default and can be omitted api_key=os.environ.get("CLOUDFLARE_API_KEY"), # This is the default and can be omitted ) request_constants = client.cloudforce_one.requests.constants( account_id="023e105f4ecef8ad9ca31a8372d0c353", ) print(request_constants.priority) ``` #### Response ```json { "errors": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "messages": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "success": true, "result": { "priority": [ "routine", "high", "urgent" ], "status": [ "open", "accepted", "reported", "approved", "completed", "declined" ], "tlp": [ "clear", "green", "amber", "amber-strict", "red" ] } } ```