diff --git a/helpers/Dojo/DojoBackendHelper.ts b/helpers/Dojo/DojoBackendHelper.ts
index 7475376fb003f3661e1363f3c437098b04ad6082..025c3876bc73bd9a6887279171a27668963f990f 100644
--- a/helpers/Dojo/DojoBackendHelper.ts
+++ b/helpers/Dojo/DojoBackendHelper.ts
@@ -3,7 +3,7 @@ import ClientsSharedConfig from '../../config/ClientsSharedConfig.js';
 
 
 class DojoBackendHelper {
-    public getApiUrl(route: ApiRoute, options?: Partial<{ assignmentNameOrUrl: string, exerciseIdOrUrl: string, gitlabProjectId: string }>): string {
+    public getApiUrl(route: ApiRoute, options?: Partial<{ assignmentNameOrUrl: string, exerciseIdOrUrl: string, gitlabProjectId: string, tagName: string }>): string {
         let url = `${ ClientsSharedConfig.apiURL }${ route }`;
 
         if ( options ) {
@@ -18,6 +18,10 @@ class DojoBackendHelper {
             if ( options.gitlabProjectId ) {
                 url = url.replace('{{gitlabProjectId}}', encodeURIComponent(options.gitlabProjectId));
             }
+
+            if ( options.tagName ) {
+                url = url.replace('{{tagName}}', encodeURIComponent(options.tagName));
+            }
         }
 
         return url;
diff --git a/models/TagSubmit.ts b/models/TagProposal.ts
similarity index 65%
rename from models/TagSubmit.ts
rename to models/TagProposal.ts
index 241ff1c73a5f86d7e6af8e915485734a9b753f35..94c3c8c8ccd9cc8f88f4d04ee1e784a602fb777c 100644
--- a/models/TagSubmit.ts
+++ b/models/TagProposal.ts
@@ -1,7 +1,9 @@
-interface TagSubmit {
+interface TagProposal {
     name: string;
     type: 'Language' | 'Framework' | 'Theme' | 'UserDefined';
     state: 'PendingApproval' | 'Declined' | 'Approved';
+    details: string;
 }
 
-export default TagSubmit;
+
+export default TagProposal;
diff --git a/types/Dojo/ApiRoute.ts b/types/Dojo/ApiRoute.ts
index b966d111e48a694e8ab4f828df7fcee3b7fc3f9b..9d5b40f3625caae3ad9c2f0c1cc0bf4874e12ba9 100644
--- a/types/Dojo/ApiRoute.ts
+++ b/types/Dojo/ApiRoute.ts
@@ -11,11 +11,11 @@ enum ApiRoute {
     ASSIGNMENT_CORRECTION_UPDATE_DELETE = '/assignments/{{assignmentNameOrUrl}}/corrections/{{exerciseIdOrUrl}}',
     EXERCISE_CREATE                     = '/assignments/{{assignmentNameOrUrl}}/exercises',
     EXERCISE_ASSIGNMENT                 = '/exercises/{{exerciseIdOrUrl}}/assignment',
-    EXERCISE_RESULTS                    = '/exercises/{{exerciseIdOrUrl}}/results'
-    ADD_TAG                      = '/tags',
-    DELETE_TAG                   = '/tags/{{tageName}}',
-    PROPOSE_TAG                  = '/tags/proposals/{{tagState}}',
-    //ANSWER_TAG_PROPOSAL          = '/tags/proposals/{{tagProposalName}}'
+    EXERCISE_RESULTS                    = '/exercises/{{exerciseIdOrUrl}}/results',
+    TAG_CREATE                          = '/tags',
+    TAG_DELETE                          = '/tags/{{tagName}}',
+    TAG_PROPOSAL_GET_CREATE             = '/tags/proposals',
+    TAG_PROPOSAL_UPDATE                 = '/tags/proposals/{{tagName}}',
 }