get https://api.wp.pro/v1/iam/users
Response
xxxxxxxxxx
import wppro from '@api/wppro';
wppro.iamUsersList()
.then(({ data }) => console.log(data))
.catch(err => console.error(err));
xxxxxxxxxx
20{
"success": true,
"message": "string",
"result": {
"count": 0,
"users": [
{
"id": "string",
"created_at": "2025-04-04T07:48:05.313Z",
"updated_at": "2025-04-04T07:48:05.313Z",
"email_verified_at": "2025-04-04T07:48:05.313Z",
"first_name": "string",
"last_name": "string",
"email": "string",
"status": "active",
"role": "User"
}
]
}
}