Python à PHP
import requests
import json
data = {
"api_key": "PRIVATE_API_KEY",
"profiles": [
{
"$consent": ["sms"],
"phone_number": "+12345678900",
"sms_consent": True
}
]
}
headers = {
"Content-Type": "application/json",
"Cache-Control": "no-cache"
}
conv = json.dumps(data)
response = requests.request("POST", "https://a.klaviyo.com/api/v2/list/{LIST_ID}/subscribe", data=conv, headers=headers)
print(response.text)
Sleepy Shark