Skip to main content
GET
/
revenueOrganization
/
members
/
list
List members
curl --request GET \
  --url https://api.getcargo.io/v1/revenueOrganization/members/list \
  --header 'Authorization: Bearer <token>'
{
  "members": [
    {
      "uuid": "<string>",
      "firstName": "<string>",
      "lastName": "<string>",
      "profileImage": "<string>",
      "email": "<string>",
      "connectors": [
        {
          "uuid": "<string>",
          "userId": "<string>"
        }
      ],
      "meta": {},
      "workspaceUuid": "<string>",
      "archivedAt": "<string>",
      "createdAt": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

Successful response

Response body schema.

members
Members · object[]
required

List of members.