Add post_user_create

Arlo Filley 2024-03-25 10:22:48 +00:00
parent 01abd6efe7
commit fed460b9f6

22
post_user_create.md Normal file

@ -0,0 +1,22 @@
# Create User API Endpoint
## POST `/api/user/create`
Creates a new user in the database.
## Request Parameters
```json
{
"username": "example_user",
"password": "example_password"
}
```
## Example Request
```bash
curl -X POST "https://url/api/user/create" \
-H "Content-Type: application/json" \
-d '{"username": "example_user", "password": "example_password"}'
```