19 lines
469 B
Python
19 lines
469 B
Python
import requests
|
|
|
|
url = "https://automation.glmanalytics.com/webhook/new-task-clickup"
|
|
|
|
payload = {
|
|
"id": "12345",
|
|
"title": "Prueba ticket desde Python",
|
|
"description": "Este es un ticket de prueba enviado manualmente",
|
|
"priority": "3",
|
|
"status": "Nuevo",
|
|
"requester": "Juan Perez",
|
|
"category": "Soporte",
|
|
"created_at": "2026-04-09 10:00:00"
|
|
}
|
|
|
|
response = requests.post(url, json=payload)
|
|
|
|
print(response.status_code)
|
|
print(response.text) |