Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
TypoScript-Backend
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
TYPO3
TypoScript-Backend
Commits
c1f36bc3
Commit
c1f36bc3
authored
9 years ago
by
damjan
Browse files
Options
Downloads
Patches
Plain Diff
[TASK] Readme update - REST API separated by groups
parent
fec6669a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+52
-16
52 additions, 16 deletions
README.md
with
52 additions
and
16 deletions
README.md
+
52
−
16
View file @
c1f36bc3
...
...
@@ -100,22 +100,58 @@ Execute mySql INSERT command. Example of adding new category named "Functions":
This should print something like this:
api_get_type GET ANY ANY /api/types/{id}.{_format}
api_get_type_byurlname GET ANY ANY /api/types/{urlName}/byurlname.{_format}
api_get_types GET ANY ANY /api/types.{_format}
api_post_type POST ANY ANY /api/types.{_format}
api_put_type PUT ANY ANY /api/types/{id}.{_format}
api_delete_type DELETE ANY ANY /api/types/{id}.{_format}
api_patch_type PATCH ANY ANY /api/types/{id}.{_format}
api_get_property GET ANY ANY /api/properties/{id}.{_format}
api_get_properties_byparenttype GET ANY ANY /api/properties/{id}/byparenttype.{_format}
api_get_properties GET ANY ANY /api/properties.{_format}
api_post_property POST ANY ANY /api/properties.{_format}
api_put_property PUT ANY ANY /api/properties/{id}.{_format}
api_delete_property DELETE ANY ANY /api/properties/{id}.{_format}
api_patch_property PATCH ANY ANY /api/properties/{id}.{_format}
api_get_tsref GET ANY ANY /api/tsref.{_format}
api_get_categories GET ANY ANY /api/categories.{_format}
api_typoscript_get_type GET ANY ANY /api/typoscript/types/{id}.{_format}
api_typoscript_get_type_byurlname GET ANY ANY /api/typoscript/types/{urlName}/byurlname.{_format}
api_typoscript_get_types GET ANY ANY /api/typoscript/types.{_format}
api_typoscript_post_type POST ANY ANY /api/typoscript/types.{_format}
api_typoscript_put_type PUT ANY ANY /api/typoscript/types/{id}.{_format}
api_typoscript_delete_type DELETE ANY ANY /api/typoscript/types/{id}.{_format}
api_typoscript_patch_type PATCH ANY ANY /api/typoscript/types/{id}.{_format}
api_typoscript_get_property GET ANY ANY /api/typoscript/properties/{id}.{_format}
api_typoscript_get_properties_byparenttype GET ANY ANY /api/typoscript/properties/{id}/byparenttype.{_format}
api_typoscript_get_properties GET ANY ANY /api/typoscript/properties.{_format}
api_typoscript_post_property POST ANY ANY /api/typoscript/properties.{_format}
api_typoscript_put_property PUT ANY ANY /api/typoscript/properties/{id}.{_format}
api_typoscript_delete_property DELETE ANY ANY /api/typoscript/properties/{id}.{_format}
api_typoscript_patch_property PATCH ANY ANY /api/typoscript/properties/{id}.{_format}
api_typoscript_get_tsref GET ANY ANY /api/typoscript/tsref.{_format}
api_user-tsconfig_get_type GET ANY ANY /api/user-tsconfig/types/{id}.{_format}
api_user-tsconfig_get_type_byurlname GET ANY ANY /api/user-tsconfig/types/{urlName}/byurlname.{_format}
api_user-tsconfig_get_types GET ANY ANY /api/user-tsconfig/types.{_format}
api_user-tsconfig_post_type POST ANY ANY /api/user-tsconfig/types.{_format}
api_user-tsconfig_put_type PUT ANY ANY /api/user-tsconfig/types/{id}.{_format}
api_user-tsconfig_delete_type DELETE ANY ANY /api/user-tsconfig/types/{id}.{_format}
api_user-tsconfig_patch_type PATCH ANY ANY /api/user-tsconfig/types/{id}.{_format}
api_user-tsconfig_get_property GET ANY ANY /api/user-tsconfig/properties/{id}.{_format}
api_user-tsconfig_get_properties_byparenttype GET ANY ANY /api/user-tsconfig/properties/{id}/byparenttype.{_format}
api_user-tsconfig_get_properties GET ANY ANY /api/user-tsconfig/properties.{_format}
api_user-tsconfig_post_property POST ANY ANY /api/user-tsconfig/properties.{_format}
api_user-tsconfig_put_property PUT ANY ANY /api/user-tsconfig/properties/{id}.{_format}
api_user-tsconfig_delete_property DELETE ANY ANY /api/user-tsconfig/properties/{id}.{_format}
api_user-tsconfig_patch_property PATCH ANY ANY /api/user-tsconfig/properties/{id}.{_format}
api_user-tsconfig_get_tsref GET ANY ANY /api/user-tsconfig/tsref.{_format}
api_page-tsconfig_get_type GET ANY ANY /api/page-tsconfig/types/{id}.{_format}
api_page-tsconfig_get_type_byurlname GET ANY ANY /api/page-tsconfig/types/{urlName}/byurlname.{_format}
api_page-tsconfig_get_types GET ANY ANY /api/page-tsconfig/types.{_format}
api_page-tsconfig_post_type POST ANY ANY /api/page-tsconfig/types.{_format}
api_page-tsconfig_put_type PUT ANY ANY /api/page-tsconfig/types/{id}.{_format}
api_page-tsconfig_delete_type DELETE ANY ANY /api/page-tsconfig/types/{id}.{_format}
api_page-tsconfig_patch_type PATCH ANY ANY /api/page-tsconfig/types/{id}.{_format}
api_page-tsconfig_get_property GET ANY ANY /api/page-tsconfig/properties/{id}.{_format}
api_page-tsconfig_get_properties_byparenttype GET ANY ANY /api/page-tsconfig/properties/{id}/byparenttype.{_format}
api_page-tsconfig_get_properties GET ANY ANY /api/page-tsconfig/properties.{_format}
api_page-tsconfig_post_property POST ANY ANY /api/page-tsconfig/properties.{_format}
api_page-tsconfig_put_property PUT ANY ANY /api/page-tsconfig/properties/{id}.{_format}
api_page-tsconfig_delete_property DELETE ANY ANY /api/page-tsconfig/properties/{id}.{_format}
api_page-tsconfig_patch_property PATCH ANY ANY /api/page-tsconfig/properties/{id}.{_format}
api_page-tsconfig_get_tsref GET ANY ANY /api/page-tsconfig/tsref.{_format}
api_get_categories GET ANY ANY /api/categories.{_format}
As you can see, there are 3 main groups of routes, each for different typo script group.
And in each group there are routs to work with types, properties and a rout for downloading tsref.xml.
#### Test with Postman
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment