User Registration
POST
/
signup
This endpoint allows you to register an authenticated user in our local database. The user's details should be provided in the request payload. Upon successful registration, the user will be added to the local database, allowing for subsequent interactions with the app.
Headers
Content-Type
application/json
Body
uid
String
Unique identifier for the user
email
String
Email address of the user
displayName
String
Display name of the user
emailVerified
Boolean
Indicates if the email is verified
createdAt
DateTime
Account creation date and time (ISO 8601)
lastLoginAt
DateTime
Last login date and time (ISO 8601)
providerData
Array
Array of provider data objects
├─ providerId
String
Identifier for the authentication provider
└─ providerName
String
Name of the authentication provider
providerUsername
String
Username provided by the authentication provider
Sample Request
Response
By following the above guidelines, you can seamlessly register users in the local database and proceed with further interactions within the app.
Last updated