Files
itd-sdk/itd/reports.py
2026-01-29 21:11:00 +03:00

4 lines
256 B
Python

from itd.request import fetch
def report(token: str, id: str, type: str = 'post', reason: str = 'other', description: str = ''):
return fetch(token, 'post', 'reports', {'targetId': id, 'targetType': type, 'reason': reason, 'description': description})