Not so much important but I noticed a mistake in the documentation here:
https://developer.lucid.co/reference/listusers
The result is describe like that:
[
{
"accountId": 100,
"email": "john-doe@example.com",
"name": "John Doe",
"userId": 101,
"usernames": "johndoe",
"roles": [
"billing-admin",
"team-admin"
]
}
]
But the “usernames” field is “username”.so it would be :
r
{
"accountId": 100,
"email": "john-doe@example.com",
"name": "John Doe",
"userId": 101,
"username": "johndoe",
"roles": "
"billing-admin",
"team-admin"
]
}
]
Regards