Users
List all active users
Returns a list of active users within the administration.
Example: returns all active users of an administration
Request
curl -s -H "Content-Type: application/json" -H "Authorization: Bearer 84ec207ad0154a508f798e615a998ac1fd752926d00f955fb1df3e144cba44ab" \
-XGET \
https://moneybird.com/api/v2/123/users.json?
Response
Status: 200 OK
[
{
"id": "407012673267434805",
"name": "John Doe",
"created_at": "2023-12-12T10:39:14.666Z",
"updated_at": "2023-12-12T10:39:14.672Z",
"email": "john+3@doe.nl",
"email_validated": true,
"language": "nl",
"time_zone": "Europe/Amsterdam",
"permissions": [
"time_entries"
]
},
{
"id": "407012429583615648",
"name": "Mo Neybird",
"created_at": "2023-12-12T10:35:22.273Z",
"updated_at": "2023-12-12T10:35:22.457Z",
"email": "info@moneybird.nl",
"email_validated": true,
"language": "nl",
"time_zone": "Europe/Amsterdam",
"permissions": [
"sales_invoices",
"documents",
"estimates",
"bank",
"settings",
"ownership",
"time_entries"
]
}
]