👶Kullanıcı Yaratma
Paramtre
Tip
Zorunlu
Varsayılan
Açıklama
curl -L -X POST 'https://<DOMAIN>/xapi/v2/user' \
-H 'Content-Type: application/json' \
--data-raw '{
"name": "John",
"surname": "Doe",
"username": "johndoe",
"email": "[email protected]"
}'client.users.upsertUser(
{
name: "John",
surname: "Doe",
email: "[email protected]",
username: "johndoe"
}
);Last updated