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
Name | Value |
---|---|
Content-Type |
|
Body
Name | Type | Description |
---|---|---|
| String | Unique identifier for the user |
| String | Email address of the user |
| String | Display name of the user |
| Boolean | Indicates if the email is verified |
| DateTime | Account creation date and time (ISO 8601) |
| DateTime | Last login date and time (ISO 8601) |
| Array | Array of provider data objects |
├─ | String | Identifier for the authentication provider |
└─ | String | Name of the authentication provider |
| 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