get https://api.wp.pro/v1/iam/user/
Responses
xxxxxxxxxx
import wppro from '@api/wppro';
wppro.iamUserGet({user_id: 'user_id'})
.then(({ data }) => console.log(data))
.catch(err => console.error(err));
xxxxxxxxxx
15{
"success": true,
"message": "string",
"result": {
"id": "string",
"created_at": "2025-04-13T11:10:33.250Z",
"updated_at": "2025-04-13T11:10:33.250Z",
"email_verified_at": "2025-04-13T11:10:33.250Z",
"first_name": "string",
"last_name": "string",
"email": "string",
"status": "active",
"role": "User"
}
}