Skip to content
Snippets Groups Projects
Commit c1f36bc3 authored by damjan's avatar damjan
Browse files

[TASK] Readme update - REST API separated by groups

parent fec6669a
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment