Garrigues Notifications API - User Registration
Contents
Register an user in Noticeman
This endpoint is used to register a new user in the Noticeman system. Provide the required user details in the request body as JSON.
HTTP Request
POST /api/v1/private/users
Example Request Body
{
"email": "user@example.com",
"name": "User Name"
}
Where
| Parameter | Mandatory | Datatype | Description |
|---|---|---|---|
| Yes | string (email) | User's email address (required). | |
| name | No | string | User's full name (optional). |
Response: 202 Accepted - User registration accepted
Error: 500 Unexpected error