Skip to main content
GET
/
api
/
Organization
Get the Organizations the current user belongs to
curl --request GET \
  --url https://api.virtuoussoftware.com/api/Organization \
  --header 'Authorization: Bearer <token>'
[
  {
    "organizationUserId": 12345,
    "organizationName": "The Human Fund (Sandbox)",
    "organizationTimeZone": "US/Arizona",
    "organizationCulture": "en-US",
    "isAdministrator": true,
    "isEnabled": true
  },
  {
    "organizationUserId": 67890,
    "organizationName": "The Human Fund",
    "organizationTimeZone": "US/Arizona",
    "organizationCulture": "en-US",
    "isAdministrator": true,
    "isEnabled": true
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

OK

organizationUserId
integer
organizationName
string
organizationTimeZone
string
organizationCulture
string
isAdministrator
boolean
isEnabled
boolean
Last modified on June 5, 2026