appwrite/docs/examples/1.6.x/server-php/examples/users/create.md

19 lines
494 B
Markdown
Raw Normal View History

2024-07-03 15:25:40 +00:00
<?php
use Appwrite\Client;
use Appwrite\Services\Users;
$client = (new Client())
->setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
->setProject('<YOUR_PROJECT_ID>') // Your project ID
->setKey('<YOUR_API_KEY>'); // Your secret API key
2024-07-03 15:25:40 +00:00
$users = new Users($client);
$result = $users->create(
userId: '<USER_ID>',
email: 'email@example.com', // optional
phone: '+12065550100', // optional
password: '', // optional
name: '<NAME>' // optional
);