Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP - Create an alternate members list endpoint
The current api at /controller/network/1111111111767f2f/member Lists only the members' ID and revision number. If you want details, you have to query each specific member. So if you want to make a members list, and you have 10000 members on a network, you need to make 10000 http requests. It's also in a hard to specify and use shape { [member-id-1]: 13, [member-id-2]: 14, ... } GET http://localhost:9993/controller/network/1111111111767f2f/member2 -> ``` [ { "authorized": false, "id": "1122334455", "name": "bob", ... }, { "authorized": true, "id": "46254ec531", "name": "wakka", ... }, { "authorized": false, "id": "2456246824", "name": "bob2", ... } ] ```
- Loading branch information