User Registration
Headers
Name
Value
Name
Type
Description
Sample Request
curl -X POST https://server-ip:port/signup \
-H "Content-Type: application/json" \
-H "Authorization: Bearer {token}" \
-d '{
"uid": "12345",
"email": "[email protected]",
"displayName": "Sample User",
"emailVerified": true,
"createdAt": "2024-06-19T12:34:56Z",
"lastLoginAt": "2024-06-19T12:34:56Z",
"providerData": [
{
"providerId": "google.com",
"providerName": "Google"
}
],
"providerUsername": "testaccount"
}'Last updated