Retrieves a list of all staff members.
Request
Send your HTTP requests with an Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password
Example:Authorization: Basic *****************
Body Params multipart/form-data
Responses
application/json {
"data": [
{
"staffid": "1",
"email": "[email protected]",
"fullname": "john doe",
"role": "Admin",
"last_login": "2024-08-09 14:05:27",
"active": "1"
}
],
"page": {
"current_page": 1,
"from": 1,
"to": 1,
"total": 1,
"per_page": 10,
"last_page": 0,
"next": -1,
"previous": 0
},
"message": "success"
}
Modified at 2024-09-05 09:35:20