# List user organizations Returns a paginated list of organizations associated with the authenticated user. Endpoint: GET /management/organizations/list Version: 1.0 Security: bearerAuth ## Query parameters: - `page` (string, required) Page number to access - `limit` (string, required) Number of items to be loaded per page ## Header parameters: - `x-fingerprint-id` (string, required) Unique device or session fingerprint identifier used for security and fraud prevention. ## Response 200 fields (application/json): - `statusCode` (integer) - `data` (object) - `data.docs` (array) - `data.docs.id` (string) - `data.docs.document` (object) - `data.docs.document.type` (string) - `data.docs.document.number` (string) - `data.docs.createdAt` (string) - `data.docs.name` (string) - `data.docs.numberOfCollaborators` (integer) - `data.docs.forecastIncome` (object) - `data.docs.forecastIncome.range` (string) Enum: "none", "less-than-10000", "from-10000-to-100000", "from-100000-to-500000", "more-than-500000" - `data.limit` (integer) - `data.currentPage` (integer) - `data.nextPage` (integer) - `data.totalPages` (integer) - `data.totalDocs` (integer) - `data.hasNext` (boolean) ## Response 400 fields (application/json): - `message` (string) Invalid param: [] Example: "Invalid param: []" - `error` (string) Bad Request Example: "Bad Request" - `statusCode` (integer) 400 Example: 400 ## Response 401 fields (application/json): - `message` (string) Invalid field Example: "Unauthorized" - `error` (string) Unauthorized Example: "Unauthorized" - `statusCode` (integer) 401 Example: 401 ## Response 403 fields (application/json): - `message` (string) Forbidden resource Example: "Forbidden resource" - `error` (string) Forbidden Example: "Forbidden" - `statusCode` (integer) 403 Example: 403 ## Response 500 fields (application/json): - `message` (string) Internal server error Example: "Internal server error" - `error` (string) Internal Server Error Example: "Internal Server Error" - `statusCode` (integer) 500 Example: 500