Establecer webhook
POST
/api/user/set-webhook
Establece un webhook para recibir notificaciones de actualizaciones de precios.
El token_secret
es una clave secreta que se utilizará para verificar la autenticidad de las solicitudes entrantes. Y sera enviado en el header Authorization
como Bearer <token_secret>
.
Autorizaciones
BearerAuth
TipoHTTP (bearer)
Cuerpo de la petición
JSON
{
"url": "string",
"certificate_ssl": true,
"token_secret": "string",
"monitors": [
{
"page": "string",
"currency": "string",
"monitor": "string"
}
]
}
Respuestas
Webhook establecido correctamente.
application/json
JSON
{
"message": "string"
}
POST
/api/user/set-webhook
Ejemplos
cURL
curl -X POST \
'https://pydolarve.org/api/user/set-webhook' \
-H "Content-Type: application/json"
JavaScript
fetch('https://pydolarve.org/api/user/set-webhook', {method:'POST',headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
PHP
<?php
$url = 'https://pydolarve.org/api/user/set-webhook';
$method = 'POST';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
Python
import requests
url = 'https://pydolarve.org/api/user/set-webhook'
headers = {
'Content-Type': 'application/json'
}
response = requests.post(url, headers=headers)
print(response.json())