Skip to main content
GET
/
v1
/
company
/
users
List company users
curl --request GET \
  --url https://api-fundflow.venly.io/v1/v1/company/users \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "result": [
    {
      "id": "<string>",
      "username": "<string>",
      "email": "<string>",
      "firstName": "<string>",
      "lastName": "<string>",
      "enabled": true,
      "role": "COMPANY_ADMIN",
      "invitationUrl": "<string>",
      "invitationStatus": "PENDING"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.venlyfinance.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

OAuth2 authentication via Venly Identity Platform

Response

Successfully retrieved company users

success
boolean
default:true
result
object[]