Comment pouvons nous vous aider ? 👋

updateCustomerEmail

/updateCustomerEmail (POST)

 

Ce endpoint permet de modifier l’email d’un customer depuis son ID Spread (ID du profil dans Spread).

Endpoint : https://social-sb.com/api/v3/updateCustomerEmail

Verbe HTTP : POST

Paramètres obligatoires :

  • customer_new_email : nouvel email pour le profil ciblé.
  • customer_id : ID du profil cible, dans Spread.

Exemple de code

 
$publicKey = 'xxxxx'; // À modifier
$privateKey = 'xxxxx'; // À modifier

$data = array(
	        "customer_new_email" => "email@exemple.tld",
	        "customer_id" => "123456789"
		    );

$ch = curl_init('https://social-sb.com/api/v3/updateCustomerEmail');
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_USERPWD, $publicKey . ":" . $privateKey);
$result = curl_exec($ch);
Cela a-t-il répondu à votre question ?
😞
😐
🤩