<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://uat.community.rws.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>How to create a GroupShare project using Swagger UI</title><link>https://uat.community.rws.com/developers-more/trados-portfolio/groupshare-developers/w/groupshare-api/3449/how-to-create-a-groupshare-project-using-swagger-ui</link><description /><dc:language>en-US</dc:language><generator>Telligent Community 12 Non-Production</generator><item><title>How to create a GroupShare project using Swagger UI</title><link>https://uat.community.rws.com/developers-more/trados-portfolio/groupshare-developers/w/groupshare-api/3449/how-to-create-a-groupshare-project-using-swagger-ui</link><pubDate>Mon, 14 Jan 2019 13:15:44 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:bac6adb9-6c48-451b-8611-ae6732ac63a7</guid><dc:creator>Andrea-Melinda Ghisa</dc:creator><comments>https://uat.community.rws.com/developers-more/trados-portfolio/groupshare-developers/w/groupshare-api/3449/how-to-create-a-groupshare-project-using-swagger-ui#comments</comments><description>Current Revision posted to GroupShare API by Andrea-Melinda Ghisa on 1/14/2019 1:15:44 PM&lt;br /&gt;
&lt;p&gt;Before trying to create a project, please make sure you fill the &lt;em&gt;username, password and token&lt;/em&gt; fields. If you don&amp;#39;t know how to obtain the token please read following &lt;a href="/developers-more/developers/language-developers/w/wiki/3420.how-to-make-calls-to-groupshare-api-using-swagger-ui"&gt;post&lt;/a&gt;.&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;Project creation&lt;/h3&gt;
&lt;p&gt;In order to create a project we need to make several calls :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;First call is a POST to&amp;nbsp;&amp;nbsp;&lt;a href="http://gs2017dev.sdl.com:41234/documentation/api/index#!/ProjectsV2/ProjectsV2_CreateProject"&gt;/api/projectserver/v2/projects&lt;/a&gt;&amp;nbsp;endpoint.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The response of the server will be the an Id associated to the project. We&amp;#39;ll use this id to make further calls&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-03-53/PrjPost.jpg"&gt;&lt;img src="/resized-image/__size/940x648/__key/communityserver-wikis-components-files/00-00-00-03-53/PrjPost.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;In the body of the post we need to send additional information like: name of the project, Organization Id, description and so on. This information is sent in a JSON Format. (More information about JSON can be found &lt;a href="https://www.w3schools.com/js/js_json_intro.asp"&gt;here&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;By default&amp;nbsp;project box is empty, click on &amp;quot;body&amp;quot; box area to populate the&amp;nbsp; project box with default&amp;nbsp;structure of the object which we need to send to the server&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-03-53/here.jpg"&gt;&lt;img src="/resized-image/__size/940x333/__key/communityserver-wikis-components-files/00-00-00-03-53/here.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;How&amp;nbsp;to get the information needed in the project body object&lt;/h3&gt;
&lt;p&gt;After we fill the name of the project and the description we need to add OrganizationId and ProjectTemplateId.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;We&amp;#39;ll make a GET to&amp;nbsp;&lt;a href="http://gs2017dev.sdl.com:41234/documentation/api/index#!/ProjectTemplates/ProjectTemplates_Get"&gt;/api/projectserver/v2/projects/templates&lt;/a&gt;&amp;nbsp;. From the response we&amp;#39;ll take the id of the template we want to use and the organization Id.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-03-53/TemplResp.jpg"&gt;&lt;img src="/resized-image/__size/620x338/__key/communityserver-wikis-components-files/00-00-00-03-53/TemplResp.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;From the response take the &amp;quot;Id&amp;quot; (which is the id of the template) and OrganizationId value.&lt;/p&gt;
&lt;p&gt;Replace the values in project object, and hit &amp;quot;Try it out&amp;quot; button:&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-03-53/PrjCompl.jpg"&gt;&lt;img src="/resized-image/__size/940x576/__key/communityserver-wikis-components-files/00-00-00-03-53/PrjCompl.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;How to upload files&amp;nbsp;&lt;/h3&gt;
&lt;p&gt;Next step is to add files to the project created above using this endpoint&amp;nbsp;&lt;a href="http://gs2017dev.sdl.com:41234/documentation/api/index#!/UploadFilesForProjectCreating/UploadFilesForProjectCreating_Post"&gt;/api/projectserver/v2/projects/{projectId}/files/upload&lt;/a&gt;. We&amp;#39;ll use the &lt;em&gt;Project Id&lt;/em&gt; we received in the response of the project creation POST call.&lt;/p&gt;
&lt;p&gt;In order to make this call we need to use PostMan. Please see following &lt;a href="/developers-more/developers/language-developers/w/wiki/3451.how-to-upload-files-to-an-existing-gs-project"&gt;wiki&lt;/a&gt;&amp;nbsp;where is explained step by step how to upload a file to GroupShare.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: Documentation, Tips&amp;Tricks&lt;/div&gt;
</description></item><item><title>How to create a GroupShare project using Swagger UI</title><link>https://uat.community.rws.com/developers-more/trados-portfolio/groupshare-developers/w/groupshare-api/3449/how-to-create-a-groupshare-project-using-swagger-ui/revision/12</link><pubDate>Mon, 14 Jan 2019 13:15:24 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:bac6adb9-6c48-451b-8611-ae6732ac63a7</guid><dc:creator>Andrea-Melinda Ghisa</dc:creator><comments>https://uat.community.rws.com/developers-more/trados-portfolio/groupshare-developers/w/groupshare-api/3449/how-to-create-a-groupshare-project-using-swagger-ui#comments</comments><description>Revision 12 posted to GroupShare API by Andrea-Melinda Ghisa on 1/14/2019 1:15:24 PM&lt;br /&gt;
&lt;p&gt;Before trying to create a project, please make sure you fill the &lt;em&gt;username, password and token&lt;/em&gt; fields. If you don&amp;#39;t know how to obtain the token please read following &lt;a href="/developers-more/developers/language-developers/w/wiki/3420.how-to-make-calls-to-groupshare-api-using-swagger-ui"&gt;post&lt;/a&gt;.&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;Project creation&lt;/h3&gt;
&lt;p&gt;In order to create a project we need to make several calls :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;First call is a POST to&amp;nbsp;&amp;nbsp;&lt;a href="http://gs2017dev.sdl.com:41234/documentation/api/index#!/ProjectsV2/ProjectsV2_CreateProject"&gt;/api/projectserver/v2/projects&lt;/a&gt;&amp;nbsp;endpoint.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The response of the server will be the an Id associated to the project. We&amp;#39;ll use this id to make further calls&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjPost.jpg"&gt;&lt;img src="/resized-image/__size/940x648/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjPost.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;In the body of the post we need to send additional information like: name of the project, Organization Id, description and so on. This information is sent in a JSON Format. (More information about JSON can be found &lt;a href="https://www.w3schools.com/js/js_json_intro.asp"&gt;here&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;By default&amp;nbsp;project box is empty, click on &amp;quot;body&amp;quot; box area to populate the&amp;nbsp; project box with default&amp;nbsp;structure of the object which we need to send to the server&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-39/here.jpg"&gt;&lt;img src="/resized-image/__size/940x333/__key/communityserver-wikis-components-files/00-00-00-00-39/here.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;How&amp;nbsp;to get the information needed in the project body object&lt;/h3&gt;
&lt;p&gt;After we fill the name of the project and the description we need to add OrganizationId and ProjectTemplateId.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;We&amp;#39;ll make a GET to&amp;nbsp;&lt;a href="http://gs2017dev.sdl.com:41234/documentation/api/index#!/ProjectTemplates/ProjectTemplates_Get"&gt;/api/projectserver/v2/projects/templates&lt;/a&gt;&amp;nbsp;. From the response we&amp;#39;ll take the id of the template we want to use and the organization Id.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-39/TemplResp.jpg"&gt;&lt;img src="/resized-image/__size/620x338/__key/communityserver-wikis-components-files/00-00-00-00-39/TemplResp.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;From the response take the &amp;quot;Id&amp;quot; (which is the id of the template) and OrganizationId value.&lt;/p&gt;
&lt;p&gt;Replace the values in project object, and hit &amp;quot;Try it out&amp;quot; button:&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjCompl.jpg"&gt;&lt;img src="/resized-image/__size/940x576/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjCompl.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;How to upload files&amp;nbsp;&lt;/h3&gt;
&lt;p&gt;Next step is to add files to the project created above using this endpoint&amp;nbsp;&lt;a href="http://gs2017dev.sdl.com:41234/documentation/api/index#!/UploadFilesForProjectCreating/UploadFilesForProjectCreating_Post"&gt;/api/projectserver/v2/projects/{projectId}/files/upload&lt;/a&gt;. We&amp;#39;ll use the &lt;em&gt;Project Id&lt;/em&gt; we received in the response of the project creation POST call.&lt;/p&gt;
&lt;p&gt;In order to make this call we need to use PostMan. Please see following &lt;a href="/developers-more/developers/language-developers/w/wiki/3451.how-to-upload-files-to-an-existing-gs-project"&gt;wiki&lt;/a&gt;&amp;nbsp;where is explained step by step how to upload a file to GropuShare.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: documentation, Tips&amp;Tricks&lt;/div&gt;
</description></item><item><title>How to create a GroupShare project using Swagger UI</title><link>https://uat.community.rws.com/developers-more/trados-portfolio/groupshare-developers/w/groupshare-api/3449/how-to-create-a-groupshare-project-using-swagger-ui/revision/11</link><pubDate>Mon, 14 Jan 2019 13:11:36 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:bac6adb9-6c48-451b-8611-ae6732ac63a7</guid><dc:creator>Andrea-Melinda Ghisa</dc:creator><comments>https://uat.community.rws.com/developers-more/trados-portfolio/groupshare-developers/w/groupshare-api/3449/how-to-create-a-groupshare-project-using-swagger-ui#comments</comments><description>Revision 11 posted to GroupShare API by Andrea-Melinda Ghisa on 1/14/2019 1:11:36 PM&lt;br /&gt;
&lt;p&gt;Before trying to create a project, please make sure you fill the &lt;em&gt;username, password and token&lt;/em&gt; fields. If you don&amp;#39;t know how to obtain the token please read following &lt;a href="/developers-more/developers/language-developers/w/wiki/3420.how-to-make-calls-to-groupshare-api-using-swagger-ui"&gt;post&lt;/a&gt;.&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;Project creation&lt;/h3&gt;
&lt;p&gt;In order to create a project we need to make several calls :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;First call is a POST to&amp;nbsp;&amp;nbsp;&lt;a href="http://gs2017dev.sdl.com:41234/documentation/api/index#!/ProjectsV2/ProjectsV2_CreateProject"&gt;/api/projectserver/v2/projects&lt;/a&gt;&amp;nbsp;endpoint.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The response of the server will be the an Id associated to the project. We&amp;#39;ll use this id to make further calls&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjPost.jpg"&gt;&lt;img src="/resized-image/__size/940x648/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjPost.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;In the body of the post we need to send additional information like: name of the project, Organization Id, description and so on. This information is sent in a JSON Format. (More information about JSON can be found &lt;a href="https://www.w3schools.com/js/js_json_intro.asp"&gt;here&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;By default&amp;nbsp;project box is empty, to be populated with the structure of the object which we need to send to the server, click on &amp;quot;body&amp;quot; box area.&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-39/here.jpg"&gt;&lt;img src="/resized-image/__size/940x333/__key/communityserver-wikis-components-files/00-00-00-00-39/here.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;How&amp;nbsp;to get the information needed in the project body object&lt;/h3&gt;
&lt;p&gt;After we fill the name of the project and the description we need to add OrganizationId and ProjectTemplateId.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;We&amp;#39;ll make a GET to&amp;nbsp;&lt;a href="http://gs2017dev.sdl.com:41234/documentation/api/index#!/ProjectTemplates/ProjectTemplates_Get"&gt;/api/projectserver/v2/projects/templates&lt;/a&gt;&amp;nbsp;. From the response we&amp;#39;ll take the id of the template we want to use and the organization Id.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-39/TemplResp.jpg"&gt;&lt;img src="/resized-image/__size/620x338/__key/communityserver-wikis-components-files/00-00-00-00-39/TemplResp.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;From the response take the &amp;quot;Id&amp;quot; (which is the id of the template) and OrganizationId value.&lt;/p&gt;
&lt;p&gt;Replace the values in project object, and hit &amp;quot;Try it out button&amp;quot;:&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjCompl.jpg"&gt;&lt;img src="/resized-image/__size/940x576/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjCompl.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;How to upload files&amp;nbsp;&lt;/h3&gt;
&lt;p&gt;Next step is to add files to the project created above using this endpoint&amp;nbsp;&lt;a href="http://gs2017dev.sdl.com:41234/documentation/api/index#!/UploadFilesForProjectCreating/UploadFilesForProjectCreating_Post"&gt;/api/projectserver/v2/projects/{projectId}/files/upload&lt;/a&gt;. We&amp;#39;ll use the &lt;em&gt;Project Id&lt;/em&gt; we received in the response of the project creation POST call.&lt;/p&gt;
&lt;p&gt;In order to make this call we need to use PostMan. Please see following &lt;a href="/developers-more/developers/language-developers/w/wiki/3451.how-to-upload-files-to-an-existing-gs-project"&gt;wiki&lt;/a&gt;&amp;nbsp;where is explained step by step how to upload a file to GropuShare.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: documentation, Tips&amp;Tricks&lt;/div&gt;
</description></item><item><title>How to create a GroupShare project using Swagger UI</title><link>https://uat.community.rws.com/developers-more/trados-portfolio/groupshare-developers/w/groupshare-api/3449/how-to-create-a-groupshare-project-using-swagger-ui/revision/10</link><pubDate>Mon, 14 Jan 2019 13:10:14 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:bac6adb9-6c48-451b-8611-ae6732ac63a7</guid><dc:creator>Andrea-Melinda Ghisa</dc:creator><comments>https://uat.community.rws.com/developers-more/trados-portfolio/groupshare-developers/w/groupshare-api/3449/how-to-create-a-groupshare-project-using-swagger-ui#comments</comments><description>Revision 10 posted to GroupShare API by Andrea-Melinda Ghisa on 1/14/2019 1:10:14 PM&lt;br /&gt;
&lt;p&gt;Before trying to create a project, please make sure you fill the &lt;em&gt;username, password and token&lt;/em&gt; fields. If you don&amp;#39;t know how to obtain the token please read following &lt;a href="/developers-more/developers/language-developers/w/wiki/3420.how-to-make-calls-to-groupshare-api-using-swagger-ui"&gt;post&lt;/a&gt;.&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;Project creation&lt;/h3&gt;
&lt;p&gt;In order to create a project we need to make several calls :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;First call is a POST to&amp;nbsp;&amp;nbsp;&lt;a href="http://gs2017dev.sdl.com:41234/documentation/api/index#!/ProjectsV2/ProjectsV2_CreateProject"&gt;/api/projectserver/v2/projects&lt;/a&gt;&amp;nbsp;endpoint.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The response of the server will be the an Id associated to the project. We&amp;#39;ll use this id to make further calls&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjPost.jpg"&gt;&lt;img src="/resized-image/__size/940x648/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjPost.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;In the body of the post we need to send additional information like: name of the project, Organization Id, description and so on. This information is sent in a JSON Format. (More information about JSON can be found &lt;a href="https://www.w3schools.com/js/js_json_intro.asp"&gt;here&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;By default&amp;nbsp;project box is empty, to be populated with the structure of the object which we need to send to the server, click on &amp;quot;body&amp;quot; box area.&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-39/here.jpg"&gt;&lt;img src="/resized-image/__size/940x333/__key/communityserver-wikis-components-files/00-00-00-00-39/here.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;How&amp;nbsp;to get the information needed in the project body object&lt;/h3&gt;
&lt;p&gt;After we fill the name of the project and the description we need to add OrganizationId and ProjectTemplateId.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;We&amp;#39;ll make a GET to&amp;nbsp;&lt;a href="http://gs2017dev.sdl.com:41234/documentation/api/index#!/ProjectTemplates/ProjectTemplates_Get"&gt;/api/projectserver/v2/projects/templates&lt;/a&gt;&amp;nbsp;. From the response we&amp;#39;ll take the id of the template we want to use and the organization Id.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-39/TemplResp.jpg"&gt;&lt;img src="/resized-image/__size/620x338/__key/communityserver-wikis-components-files/00-00-00-00-39/TemplResp.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;From the response take the &amp;quot;Id&amp;quot; (which is the id of the template) and OrganizationId value.&lt;/p&gt;
&lt;p&gt;Replace the values in project object, and hit &amp;quot;Try it out button&amp;quot;:&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjCompl.jpg"&gt;&lt;img src="/resized-image/__size/940x576/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjCompl.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;How to upload files&amp;nbsp;&lt;/h3&gt;
&lt;p&gt;Next step is to add files to the project created above using this endpoint&amp;nbsp;&lt;a href="http://gs2017dev.sdl.com:41234/documentation/api/index#!/UploadFilesForProjectCreating/UploadFilesForProjectCreating_Post"&gt;/api/projectserver/v2/projects/{projectId}/files/upload&lt;/a&gt;. We&amp;#39;ll use the &lt;em&gt;Project Id&lt;/em&gt; we received in the response of the project creation POST call.&lt;/p&gt;
&lt;p&gt;In order to make this call we need to use PostMan. Please see following &lt;a href="/developers-more/developers/language-developers/w/wiki/3451.how-to-upload-files-to-an-existing-gs-project"&gt;wiki&lt;/a&gt;&amp;nbsp;on how to use PostMan to upload files to a server.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: documentation, Tips&amp;Tricks&lt;/div&gt;
</description></item><item><title>How to create a GroupShare project using Swagger UI</title><link>https://uat.community.rws.com/developers-more/trados-portfolio/groupshare-developers/w/groupshare-api/3449/how-to-create-a-groupshare-project-using-swagger-ui/revision/9</link><pubDate>Mon, 14 Jan 2019 11:34:00 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:bac6adb9-6c48-451b-8611-ae6732ac63a7</guid><dc:creator>Andrea-Melinda Ghisa</dc:creator><comments>https://uat.community.rws.com/developers-more/trados-portfolio/groupshare-developers/w/groupshare-api/3449/how-to-create-a-groupshare-project-using-swagger-ui#comments</comments><description>Revision 9 posted to GroupShare API by Andrea-Melinda Ghisa on 1/14/2019 11:34:00 AM&lt;br /&gt;
&lt;p&gt;Before trying to create a project, please make sure you fill the &lt;em&gt;username, password and token&lt;/em&gt; fields. If you don&amp;#39;t know how to obtain the token please read following &lt;a href="/developers-more/developers/language-developers/w/wiki/3420.how-to-make-calls-to-groupshare-api-using-swagger-ui"&gt;post&lt;/a&gt;.&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;Project creation&lt;/h3&gt;
&lt;p&gt;In order to create a project we need to make several calls :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;First call is a POST to&amp;nbsp;&amp;nbsp;&lt;a href="http://gs2017dev.sdl.com:41234/documentation/api/index#!/ProjectsV2/ProjectsV2_CreateProject"&gt;/api/projectserver/v2/projects&lt;/a&gt;&amp;nbsp;endpoint.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The response of the server will be the an Id associated to the project. We&amp;#39;ll use this id to make further calls&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjPost.jpg"&gt;&lt;img src="/resized-image/__size/940x648/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjPost.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;In the body of the post we need to send additional information like: name of the project, Organization Id, description and so on. This information is sent in a JSON Format. (More information about JSON can be found &lt;a href="https://www.w3schools.com/js/js_json_intro.asp"&gt;here&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;By default&amp;nbsp;project box is empty, to be populated with the structure of the object which we need to send to the server, click on &amp;quot;body&amp;quot; box area.&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-39/here.jpg"&gt;&lt;img src="/resized-image/__size/940x333/__key/communityserver-wikis-components-files/00-00-00-00-39/here.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;How&amp;nbsp;to get the information needed in the project body object&lt;/h3&gt;
&lt;p&gt;After we fill the name of the project and the description we need to add OrganizationId and ProjectTemplateId.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;We&amp;#39;ll make a GET to&amp;nbsp;&lt;a href="http://gs2017dev.sdl.com:41234/documentation/api/index#!/ProjectTemplates/ProjectTemplates_Get"&gt;/api/projectserver/v2/projects/templates&lt;/a&gt;&amp;nbsp;. From the response we&amp;#39;ll take the id of the template we want to use and the organization Id.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-39/TemplResp.jpg"&gt;&lt;img src="/resized-image/__size/620x338/__key/communityserver-wikis-components-files/00-00-00-00-39/TemplResp.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;From the response take the &amp;quot;Id&amp;quot; (which is the id of the template) and OrganizationId value.&lt;/p&gt;
&lt;p&gt;Replace the values in project object, and hit &amp;quot;Try it out button&amp;quot;:&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjCompl.jpg"&gt;&lt;img src="/resized-image/__size/940x576/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjCompl.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;How to upload files&amp;nbsp;&lt;/h3&gt;
&lt;p&gt;Next step is to add files to the project created above. We&amp;#39;ll use the &lt;em&gt;Project Id&lt;/em&gt; we received in the response of the project creation POST call.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: documentation, Tips&amp;Tricks&lt;/div&gt;
</description></item><item><title>How to create a GroupShare project using Swagger UI</title><link>https://uat.community.rws.com/developers-more/trados-portfolio/groupshare-developers/w/groupshare-api/3449/how-to-create-a-groupshare-project-using-swagger-ui/revision/8</link><pubDate>Mon, 14 Jan 2019 11:30:16 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:bac6adb9-6c48-451b-8611-ae6732ac63a7</guid><dc:creator>Andrea-Melinda Ghisa</dc:creator><comments>https://uat.community.rws.com/developers-more/trados-portfolio/groupshare-developers/w/groupshare-api/3449/how-to-create-a-groupshare-project-using-swagger-ui#comments</comments><description>Revision 8 posted to GroupShare API by Andrea-Melinda Ghisa on 1/14/2019 11:30:16 AM&lt;br /&gt;
&lt;p&gt;Before trying to create a project, please make sure you fill the &lt;em&gt;username, password and token&lt;/em&gt; fields. If you don&amp;#39;t know how to obtain the token please read following &lt;a href="/developers-more/developers/language-developers/w/wiki/3420.how-to-make-calls-to-groupshare-api-using-swagger-ui"&gt;post&lt;/a&gt;.&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;Project creation&lt;/h3&gt;
&lt;p&gt;In order to create a project we need to make several calls :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;First call is a POST to&amp;nbsp;&amp;nbsp;&lt;a href="http://gs2017dev.sdl.com:41234/documentation/api/index#!/ProjectsV2/ProjectsV2_CreateProject"&gt;/api/projectserver/v2/projects&lt;/a&gt;&amp;nbsp;endpoint.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The response of the server will be the an Id associated to the project. We&amp;#39;ll use this id to make further calls&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjPost.jpg"&gt;&lt;img src="/resized-image/__size/940x648/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjPost.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;In the body of the post we need to send additional information like: name of the project, Organization Id, description and so on. This information is sent in a JSON Format. (More information about JSON can be found &lt;a href="https://www.w3schools.com/js/js_json_intro.asp"&gt;here&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;By default&amp;nbsp;project box is empty, to be populated with the structure of the object which we need to send to the server, click on &amp;quot;body&amp;quot; box area.&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-39/here.jpg"&gt;&lt;img src="/resized-image/__size/940x333/__key/communityserver-wikis-components-files/00-00-00-00-39/here.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;How&amp;nbsp;to get the information needed in the project body object&lt;/h3&gt;
&lt;p&gt;After we fill the name of the project and the description we need to add OrganizationId and ProjectTemplateId.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;We&amp;#39;ll make a GET to&amp;nbsp;&lt;a href="http://gs2017dev.sdl.com:41234/documentation/api/index#!/ProjectTemplates/ProjectTemplates_Get"&gt;/api/projectserver/v2/projects/templates&lt;/a&gt;&amp;nbsp;. From the response we&amp;#39;ll take the id of the template we want to use and the organization Id.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-39/TemplResp.jpg"&gt;&lt;img src="/resized-image/__size/620x338/__key/communityserver-wikis-components-files/00-00-00-00-39/TemplResp.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;From the response take the &amp;quot;Id&amp;quot; (which is the id of the template) and OrganizationId value.&lt;/p&gt;
&lt;p&gt;Replace the values in project object, and hit &amp;quot;Try it out button&amp;quot;:&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjCompl.jpg"&gt;&lt;img src="/resized-image/__size/940x576/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjCompl.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: documentation, Tips&amp;Tricks&lt;/div&gt;
</description></item><item><title>How to create a GroupShare project using Swagger UI</title><link>https://uat.community.rws.com/developers-more/trados-portfolio/groupshare-developers/w/groupshare-api/3449/how-to-create-a-groupshare-project-using-swagger-ui/revision/7</link><pubDate>Mon, 14 Jan 2019 11:24:38 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:bac6adb9-6c48-451b-8611-ae6732ac63a7</guid><dc:creator>Andrea-Melinda Ghisa</dc:creator><comments>https://uat.community.rws.com/developers-more/trados-portfolio/groupshare-developers/w/groupshare-api/3449/how-to-create-a-groupshare-project-using-swagger-ui#comments</comments><description>Revision 7 posted to GroupShare API by Andrea-Melinda Ghisa on 1/14/2019 11:24:38 AM&lt;br /&gt;
&lt;p&gt;Before trying to create a project, please make sure you fill the &lt;em&gt;username, password and token&lt;/em&gt; fields. If you don&amp;#39;t know how to obtain the token please read following &lt;a href="/developers-more/developers/language-developers/w/wiki/3420.how-to-make-calls-to-groupshare-api-using-swagger-ui"&gt;post&lt;/a&gt;.&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;Project creation&lt;/h3&gt;
&lt;p&gt;In order to create a project we need to make several calls :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;First call is a POST to&amp;nbsp;&amp;nbsp;&lt;a href="http://gs2017dev.sdl.com:41234/documentation/api/index#!/ProjectsV2/ProjectsV2_CreateProject"&gt;/api/projectserver/v2/projects&lt;/a&gt;&amp;nbsp;endpoint.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The response of the server will be the an Id associated to the project. We&amp;#39;ll use this id to make further calls&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjPost.jpg"&gt;&lt;img src="/resized-image/__size/940x648/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjPost.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;In the body of the post we need to send additional information like: name of the project, Organization Id, description and so on. This information is sent in a JSON Format. (More information about JSON can be found &lt;a href="https://www.w3schools.com/js/js_json_intro.asp"&gt;here&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;By default&amp;nbsp;project box is empty, to be populated with the structure of the object which we need to send to the server, click on &amp;quot;body&amp;quot; box area.&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-39/here.jpg"&gt;&lt;img src="/resized-image/__size/940x333/__key/communityserver-wikis-components-files/00-00-00-00-39/here.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;How&amp;nbsp;to get the information needed in the project body object&lt;/h3&gt;
&lt;p&gt;After we fill the name of the project and the description we need to add OrganizationId and ProjectTemplateId.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;We&amp;#39;ll make a GET to&amp;nbsp;&lt;a href="http://gs2017dev.sdl.com:41234/documentation/api/index#!/ProjectTemplates/ProjectTemplates_Get"&gt;/api/projectserver/v2/projects/templates&lt;/a&gt;&amp;nbsp;. From the response we&amp;#39;ll take the id of the template we want to use and the organization Id.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-39/TemplResp.jpg"&gt;&lt;img src="/resized-image/__size/620x338/__key/communityserver-wikis-components-files/00-00-00-00-39/TemplResp.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: documentation, Tips&amp;Tricks&lt;/div&gt;
</description></item><item><title>How to create a GroupShare project using Swagger UI</title><link>https://uat.community.rws.com/developers-more/trados-portfolio/groupshare-developers/w/groupshare-api/3449/how-to-create-a-groupshare-project-using-swagger-ui/revision/6</link><pubDate>Mon, 14 Jan 2019 11:04:44 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:bac6adb9-6c48-451b-8611-ae6732ac63a7</guid><dc:creator>Andrea-Melinda Ghisa</dc:creator><comments>https://uat.community.rws.com/developers-more/trados-portfolio/groupshare-developers/w/groupshare-api/3449/how-to-create-a-groupshare-project-using-swagger-ui#comments</comments><description>Revision 6 posted to GroupShare API by Andrea-Melinda Ghisa on 1/14/2019 11:04:44 AM&lt;br /&gt;
&lt;p&gt;Before trying to create a project, please make sure you fill the &lt;em&gt;username, password and token&lt;/em&gt; fields. If you don&amp;#39;t know how to obtain the token please read following &lt;a href="/developers-more/developers/language-developers/w/wiki/3420.how-to-make-calls-to-groupshare-api-using-swagger-ui"&gt;post&lt;/a&gt;.&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;Project creation&lt;/h3&gt;
&lt;p&gt;In order to create a project we need to make several calls :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;First call is a POST to&amp;nbsp;&amp;nbsp;&lt;a href="http://gs2017dev.sdl.com:41234/documentation/api/index#!/ProjectsV2/ProjectsV2_CreateProject"&gt;/api/projectserver/v2/projects&lt;/a&gt;&amp;nbsp;endpoint.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The response of the server will be the an Id associated to the project. We&amp;#39;ll use this id to make further calls&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjPost.jpg"&gt;&lt;img src="/resized-image/__size/940x648/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjPost.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;In the body of the post we need to send additional information like: name of the project, Organization Id, description and so on. This information is sent in a JSON Format. (More information about JSON can be found &lt;a href="https://www.w3schools.com/js/js_json_intro.asp"&gt;here&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;By default&amp;nbsp;project box is empty, to be populated with the structure of the object which we need to send to the server, click on &amp;quot;body&amp;quot; box area.&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-39/here.jpg"&gt;&lt;img src="/resized-image/__size/940x333/__key/communityserver-wikis-components-files/00-00-00-00-39/here.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: documentation, Tips&amp;Tricks&lt;/div&gt;
</description></item><item><title>How to create a GroupShare project using Swagger UI</title><link>https://uat.community.rws.com/developers-more/trados-portfolio/groupshare-developers/w/groupshare-api/3449/how-to-create-a-groupshare-project-using-swagger-ui/revision/5</link><pubDate>Mon, 14 Jan 2019 08:48:35 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:bac6adb9-6c48-451b-8611-ae6732ac63a7</guid><dc:creator>Andrea-Melinda Ghisa</dc:creator><comments>https://uat.community.rws.com/developers-more/trados-portfolio/groupshare-developers/w/groupshare-api/3449/how-to-create-a-groupshare-project-using-swagger-ui#comments</comments><description>Revision 5 posted to GroupShare API by Andrea-Melinda Ghisa on 1/14/2019 8:48:35 AM&lt;br /&gt;
&lt;p&gt;Before trying to create a project, please make sure you fill the &lt;em&gt;username, password and token&lt;/em&gt; fields. If you don&amp;#39;t know how to obtain the token please read following &lt;a href="/developers-more/developers/language-developers/w/wiki/3420.how-to-make-calls-to-groupshare-api-using-swagger-ui"&gt;post&lt;/a&gt;.&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;Project creation&lt;/h3&gt;
&lt;p&gt;In order to create a project we need to make a POST call to&amp;nbsp;&amp;nbsp;&lt;a href="http://gs2017dev.sdl.com:41234/documentation/api/index#!/ProjectsV2/ProjectsV2_CreateProject"&gt;/api/projectserver/v2/projects&lt;/a&gt;&amp;nbsp;endpoint.&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjPost.jpg"&gt;&lt;img src="/resized-image/__size/940x648/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjPost.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;In the body of the post we need to send additional information like: name of the project, Organization Id, description and so on. This information is sent in a JSON Format. (More information about JSON can be found &lt;a href="https://www.w3schools.com/js/js_json_intro.asp"&gt;here&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;By default&amp;nbsp;project box is empty, to be populated with the structure of the object which we need to send to the server, click on &amp;quot;body&amp;quot; box area.&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-39/here.jpg"&gt;&lt;img src="/resized-image/__size/940x333/__key/communityserver-wikis-components-files/00-00-00-00-39/here.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: documentation, Tips&amp;Tricks&lt;/div&gt;
</description></item><item><title>How to create a GroupShare project using Swagger UI</title><link>https://uat.community.rws.com/developers-more/trados-portfolio/groupshare-developers/w/groupshare-api/3449/how-to-create-a-groupshare-project-using-swagger-ui/revision/4</link><pubDate>Mon, 14 Jan 2019 08:44:32 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:bac6adb9-6c48-451b-8611-ae6732ac63a7</guid><dc:creator>Andrea-Melinda Ghisa</dc:creator><comments>https://uat.community.rws.com/developers-more/trados-portfolio/groupshare-developers/w/groupshare-api/3449/how-to-create-a-groupshare-project-using-swagger-ui#comments</comments><description>Revision 4 posted to GroupShare API by Andrea-Melinda Ghisa on 1/14/2019 8:44:32 AM&lt;br /&gt;
&lt;p&gt;Before trying to create a project, please make sure you fill the &lt;em&gt;username, password and token&lt;/em&gt; fields. If you don&amp;#39;t know how to obtain the token please read following &lt;a href="/developers-more/developers/language-developers/w/wiki/3420.how-to-make-calls-to-groupshare-api-using-swagger-ui"&gt;post&lt;/a&gt;.&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;Project creation&lt;/h3&gt;
&lt;p&gt;In order to create a project we need to make a POST call to&amp;nbsp;&amp;nbsp;&lt;a href="http://gs2017dev.sdl.com:41234/documentation/api/index#!/ProjectsV2/ProjectsV2_CreateProject"&gt;/api/projectserver/v2/projects&lt;/a&gt;&amp;nbsp;endpoint.&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjPost.jpg"&gt;&lt;img src="/resized-image/__size/940x648/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjPost.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;In the body of the post we need to send additional information like: name of the project, Organization Id, description and so on. This information is sent in a JSON Format. (More information about Json can be found &lt;a href="https://www.w3schools.com/js/js_json_intro.asp"&gt;here&lt;/a&gt;)&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: documentation, Tips&amp;Tricks&lt;/div&gt;
</description></item><item><title>How to create a GroupShare project using Swagger UI</title><link>https://uat.community.rws.com/developers-more/trados-portfolio/groupshare-developers/w/groupshare-api/3449/how-to-create-a-groupshare-project-using-swagger-ui/revision/3</link><pubDate>Mon, 14 Jan 2019 08:40:49 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:bac6adb9-6c48-451b-8611-ae6732ac63a7</guid><dc:creator>Andrea-Melinda Ghisa</dc:creator><comments>https://uat.community.rws.com/developers-more/trados-portfolio/groupshare-developers/w/groupshare-api/3449/how-to-create-a-groupshare-project-using-swagger-ui#comments</comments><description>Revision 3 posted to GroupShare API by Andrea-Melinda Ghisa on 1/14/2019 8:40:49 AM&lt;br /&gt;
&lt;p&gt;Before trying to create a project, please make sure you fill the &lt;em&gt;username, password and token&lt;/em&gt; fields. If you don&amp;#39;t know how to obtain the token please read following &lt;a href="/developers-more/developers/language-developers/w/wiki/3420.how-to-make-calls-to-groupshare-api-using-swagger-ui"&gt;post&lt;/a&gt;.&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;Project creation&lt;/h3&gt;
&lt;p&gt;In order to create a project we need to make a POST call to&amp;nbsp;&amp;nbsp;&lt;a href="http://gs2017dev.sdl.com:41234/documentation/api/index#!/ProjectsV2/ProjectsV2_CreateProject"&gt;/api/projectserver/v2/projects&lt;/a&gt;&amp;nbsp;endpoint.&lt;/p&gt;
&lt;p&gt;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjPost.jpg"&gt;&lt;img src="/resized-image/__size/940x648/__key/communityserver-wikis-components-files/00-00-00-00-39/PrjPost.jpg" alt=" " /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: documentation, Tips&amp;Tricks&lt;/div&gt;
</description></item><item><title>How to create a GroupShare project using Swagger UI</title><link>https://uat.community.rws.com/developers-more/trados-portfolio/groupshare-developers/w/groupshare-api/3449/how-to-create-a-groupshare-project-using-swagger-ui/revision/2</link><pubDate>Mon, 14 Jan 2019 08:36:28 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:bac6adb9-6c48-451b-8611-ae6732ac63a7</guid><dc:creator>Andrea-Melinda Ghisa</dc:creator><comments>https://uat.community.rws.com/developers-more/trados-portfolio/groupshare-developers/w/groupshare-api/3449/how-to-create-a-groupshare-project-using-swagger-ui#comments</comments><description>Revision 2 posted to GroupShare API by Andrea-Melinda Ghisa on 1/14/2019 8:36:28 AM&lt;br /&gt;
&lt;p&gt;Before trying to create a project, please make sure you fill the &lt;em&gt;username, password and token&lt;/em&gt; fields. If you don&amp;#39;t know how to obtain the token please read following &lt;a href="/developers-more/developers/language-developers/w/wiki/3420.how-to-make-calls-to-groupshare-api-using-swagger-ui"&gt;post&lt;/a&gt;.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: documentation, Tips&amp;Tricks&lt;/div&gt;
</description></item><item><title>How to create a GroupShare project using Swagger UI</title><link>https://uat.community.rws.com/developers-more/trados-portfolio/groupshare-developers/w/groupshare-api/3449/how-to-create-a-groupshare-project-using-swagger-ui/revision/1</link><pubDate>Mon, 14 Jan 2019 08:33:54 GMT</pubDate><guid isPermaLink="false">10acfa76-f078-475b-a7ef-fc5b3e8d2934:bac6adb9-6c48-451b-8611-ae6732ac63a7</guid><dc:creator>Andrea-Melinda Ghisa</dc:creator><comments>https://uat.community.rws.com/developers-more/trados-portfolio/groupshare-developers/w/groupshare-api/3449/how-to-create-a-groupshare-project-using-swagger-ui#comments</comments><description>Revision 1 posted to GroupShare API by Andrea-Melinda Ghisa on 1/14/2019 8:33:54 AM&lt;br /&gt;
&lt;p&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: documentation, Tips&amp;Tricks&lt;/div&gt;
</description></item></channel></rss>