Discussions
Consulta sobre endpoint webcontact
Hola, cómo están?
Estoy intentando integrar la API para enviar consultas bajo el endpoint /api/v1/webcontact/?key=miKey
La key es correcta porque es la misma que uso para la propiedades (esas sí me funcionan), pero con este endpoint no, me retorna 404, qué será? este es el curl que uso
$apiKey = miKey';
$fullUrl = 'http://tokkobroker.com/api/v1/webcontact/?key=' . $apiKey;
$data = array('name' => 'Lucas', 'email' => '[email protected]');
$ch = curl_init();
$headers = [
'Content-Type: application/json'
];
curl_setopt($ch, CURLOPT_URL, $fullUrl);
curl_setopt($ch, CURLOPT_REFERER, $fullUrl);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec ($ch);
$statusCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
var_dump($statusCode);
die;
Alguna idea? gracias!