Authentication
This endpoint requires JWT authentication. Include your access token in theAuthorization header.
Request
Response
Returns an array of user objects.Array of UserResponse objects
Powered by Mintlify
Auto-generate your docs
Retrieve a list of all users in the system
Authorization header.
curl -X GET https://api.brautcloud.com/api/users \
-H "Authorization: Bearer YOUR_JWT_TOKEN"
Show UserResponse properties
[
{
"id": 1,
"lastName": "Smith",
"firstNameCoupleOne": "John",
"firstNameCoupleTwo": "Jane",
"createdAt": "2024-01-15T10:30:00",
"email": "[email protected]",
"emailVerified": true,
"events": []
},
{
"id": 2,
"lastName": "Johnson",
"firstNameCoupleOne": "Michael",
"firstNameCoupleTwo": "Sarah",
"createdAt": "2024-02-20T14:45:00",
"email": "[email protected]",
"emailVerified": false,
"events": []
}
]