cURL
curl --request POST \ --url https://api.emulator.farm/v1/users \ --header 'Content-Type: application/json' \ --header 'X-EMULATOR-FARM-API-KEY: <api-key>' \ --data ' { "email": "john.doe@example.com", "name": "John Doe", "metadata": {} } '
{ "id": "550e8400-e29b-41d4-a716-446655440000", "email": "john.doe@example.com", "name": "John Doe", "created_at": "2025-12-10T12:00:00Z", "updated_at": "2025-12-10T12:00:00Z", "metadata": { "department": "Engineering", "team": "Android" } }
Creates a new user account
"john.doe@example.com"
"John Doe"
User created successfully
"550e8400-e29b-41d4-a716-446655440000"
"2025-12-10T12:00:00Z"
{ "department": "Engineering", "team": "Android"}