GET
/
organizations
List organizations
curl --request GET \
  --url https://api.vollna.com/v1/organizations \
  --header 'X-API-TOKEN: <api-key>'
{
  "data": [
    {
      "id": 1,
      "label": "ACME, Inc.",
      "type": "agency",
      "lastSyncAt": "2023-11-07T05:31:56Z",
      "members": [
        {
          "id": 1,
          "fullName": "John Doe"
        }
      ],
      "connectsBalance": 123
    }
  ]
}

Authorizations

X-API-TOKEN
string
header
required

API token for authentication

Query Parameters

type
enum<string>

Filter organizations by type

Available options:
freelancer,
agency
page
integer
default:1

Page number

Required range: x >= 1
limit
integer
default:20

Items per page

Required range: 10 <= x <= 100

Response

200
application/json

Successful operation

The response is of type object.