List all available API scopes
Returns a comprehensive list of all scopes available for API key creation, organized by category with recommended groupings for common use cases.
Scopes follow the pattern: resource:action
*: Wildcard scope granting all permissionsresource:all: Grants all actions for a specific resource (e.g., campaigns:all)import requests
response = requests.get(
"https://api.coldsend.io/api/public/v1/scopes",
headers={"X-API-Key": "your-api-key"}
)
print(response.json())
API key with format cs_live_xxx
Scopes retrieved successfully
Response for listing all available scopes.