Last active
January 4, 2023 22:22
-
-
Save NilsDannemann/5ba4e208c4ac6a279a0e4ba152213900 to your computer and use it in GitHub Desktop.
api endpoints
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://localhost:3000/api/v1/sections/ | |
// -> state: down | |
// -> ✅ permissions: included (for sections) | |
http://localhost:3000/api/v1/sections/section1 | |
// -> state: running (but some sections missing) | |
// -> ✅ permissions: included (for sections) | |
http://localhost:3000/api/v1/sections/section1/?getUnits=true | |
// -> ✅ state: running | |
// -> ✅ permissions: included (for units) | |
// -> ✅ blocks: included | |
http://localhost:3000/api/v1/units/ | |
// -> ✅ state: running | |
// -> permissions: missing (for units) | |
// -> blocks: missing | |
http://localhost:3000/api/v1/units/unit1 | |
// -> ✅ state: running | |
// -> permissions: missing (for units) | |
// -> blocks: missing | |
http://localhost:3000/api/v1/units/unit1/?getBlocks=true | |
// -> state: down | |
// -> permissions: missing | |
// -> blocks: missing | |
http://localhost:3000/api/v1/blocks/ | |
// -> state: down (not needed?) | |
// -> permissions: missing | |
http://localhost:3000/api/v1/blocks/block1 | |
// -> state: down (not needed?) | |
// -> permissions: missing | |
http://localhost:3000/api/v1/blocks/block1/?getFields=true | |
// -> state: down (not needed?) | |
// -> permissions: missing (not needed?) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment