Files
prowler/dataUsers.json
Sophia Dao c910167ff6 Users Page - Table Row (#43)
* feat(users): Add in Users page and sidebar

* feat(users): Fix grammar, add in Users action

* feat(users): Add in more API info

* feat(users): Continue work on table, pass data through to table, style skeleton

* feat(users): Format Status column

* feat(users): Style table

* feat(users): Change data, update Users to User
2024-08-23 09:44:48 -05:00

99 lines
2.3 KiB
JSON

{
"links": {
"first": "http://localhost:8080/api/v1/users?page%5Bnumber%5D=1",
"last": "http://localhost:8080/api/v1/users?page%5Bnumber%5D=1",
"next": null,
"prev": null
},
"data": [
{
"id": "001",
"email": "john.doe@example.com",
"name": "John Doe",
"role": "Admin",
"dateAdded": "2024-08-14T10:00:00.000000Z",
"status": "active"
},
{
"id": "002",
"email": "jane.smith@example.com",
"name": "Jane Smith",
"role": "User",
"dateAdded": "2024-08-15T11:30:00.000000Z",
"status": "inactive"
},
{
"id": "003",
"email": "will.johnson@example.com",
"name": "Will Johnson",
"role": "Admin",
"dateAdded": "2024-08-16T09:15:00.000000Z",
"status": "active"
},
{
"id": "004",
"email": "emily.davis@example.com",
"name": "Emily Davis",
"role": "User",
"dateAdded": "2024-08-17T14:00:00.000000Z",
"status": "active"
},
{
"id": "005",
"email": "michael.brown@example.com",
"name": "Michael Brown",
"role": "User",
"dateAdded": "2024-08-18T08:45:00.000000Z",
"status": "inactive"
},
{
"id": "006",
"email": "sarah.miller@example.com",
"name": "Sarah Miller",
"role": "Admin",
"dateAdded": "2024-08-19T13:25:00.000000Z",
"status": "active"
},
{
"id": "007",
"email": "david.wilson@example.com",
"name": "David Wilson",
"role": "User",
"dateAdded": "2024-08-20T10:50:00.000000Z",
"status": "active"
},
{
"id": "008",
"email": "lisa.moore@example.com",
"name": "Lisa Moore",
"role": "Admin",
"dateAdded": "2024-08-21T07:30:00.000000Z",
"status": "inactive"
},
{
"id": "009",
"email": "james.taylor@example.com",
"name": "James Taylor",
"role": "User",
"dateAdded": "2024-08-22T12:10:00.000000Z",
"status": "active"
},
{
"id": "010",
"email": "anna.anderson@example.com",
"name": "Anna Anderson",
"role": "User",
"dateAdded": "2024-08-23T11:00:00.000000Z",
"status": "inactive"
}
],
"meta": {
"pagination": {
"page": 1,
"pages": 1,
"count": 10
},
"version": "v1"
}
}