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": "433546377755100217",
    "name": "John Doe",
    "created_at": "2024-09-30T07:41:07.126Z",
    "updated_at": "2024-09-30T07:41:07.132Z",
    "email": "john+3@doe.nl",
    "email_validated": true,
    "language": "nl",
    "time_zone": "Europe/Amsterdam",
    "permissions": [
      "time_entries"
    ]
  },
  {
    "id": "433546158174897960",
    "name": "Mo Neybird",
    "created_at": "2024-09-30T07:37:37.718Z",
    "updated_at": "2024-09-30T07:37:37.898Z",
    "email": "info@moneybird.nl",
    "email_validated": true,
    "language": "nl",
    "time_zone": "Europe/Amsterdam",
    "permissions": [
      "sales_invoices",
      "documents",
      "estimates",
      "bank",
      "settings",
      "ownership",
      "time_entries"
    ]
  }
]
      

Example: only includes permission for users with this 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": "433546377855763515",
    "name": "A. Arend.",
    "created_at": "2024-09-30T07:41:07.222Z",
    "updated_at": "2024-09-30T07:41:07.487Z",
    "email": "john+3@doe.nl",
    "email_validated": true,
    "language": "nl",
    "time_zone": "Europe/Amsterdam",
    "permissions": [
      "time_entries"
    ]
  },
  {
    "id": "433546158174897960",
    "name": "Mo Neybird",
    "created_at": "2024-09-30T07:37:37.718Z",
    "updated_at": "2024-09-30T07:37:37.898Z",
    "email": "info@moneybird.nl",
    "email_validated": true,
    "language": "nl",
    "time_zone": "Europe/Amsterdam",
    "permissions": [
      "sales_invoices",
      "documents",
      "estimates",
      "bank",
      "settings",
      "ownership",
      "time_entries"
    ]
  }
]