• Retrieving a list of translation memories with GroupShareKit does not retrieve all translation memories

    Dear all, I am doing a basic test of the GroupShareKit and I created some simple code to retrieve a list of translation memories. Here is the code: var token = await GroupShareClient.GetRequestToken(GsUser, GsPassword, new Uri(strServerName), GroupShareClient…
  • Groupshare TM Update with API or SDK

    I need to update GS TM using API or SDK (GS Kit). I have set of sdlxliffs, I can also extract segment text if needed. Is there any up to date doc on how to do it? Tried Gs Kit but it seems outdated.
  • Unable to use GroupShareKit in a Trados Studio plugin

    We have a plugin for Trados Studio in which we'd like to use GroupShareKit. However, referencing GroupShareKit via NuGet adds two references to... Sdl.Core.Bcm.BcmModel.dll Sdl.TmService.Sdk.dll ... and when Trados Studio, with the plugin installed…
  • Finalisation via GroupShare API

    Can anyone tell me if it's possible to finalise a GroupShare-based project through GroupShare 2017's API? Or is this only possible inside Trados?
  • Automatic translation and download via Groupshare Rest API

    After a project has been created and sent to the Groupshare server, can I use the Groupshare Rest API to translate and download the translated file without user input? (The output would be a combination of TM/MT).
  • Problems when using GroupShareKit on MultiTerm

    Hi I've to write an application, for work that requests Concepts from ConceptIDs from MultiTerm using the Group Share Kit in C#. However some ConceptIDs return nothing (throws an Exception) on existing ConceptIDs some not all. This does not appear…
  • How can I determine if the Rest API is activated for my installation?

    When I run the request : https://myserver.com/documentation/api/index I get the main screen but not the lower section to Post. There is a mesage " Can't read from server. It may not have the appropriate access-control-origin settings." Support has…
  • Accessing termbases via the GroupShareKit

    When attempting to read termbases (client.Terminology.GetTermbases) via the groupsharekit rest api, i get a "Maximum number of CALS reached exception." This is strange because I can read project info without issues with the same connection. Any ideas…
  • GroupshareKit - upload project template does not work

    I am trying to upload a project template to a Groupshare 2017 SR1 server using the Groupshare Kit. Groupshare Kit version is the currently released one obtained through NuGets. My code looks like this: Try Dim TemplateFileName As String…
  • ggrGroupshare Kit: Trying to upload a project template fails

    Hello, I am trying to upload a project template to a Groupshare 2017 SR1 server using the Groupshare Kit and I receive error 400 in the response. Groupshare Kit version is the currently released one obtained through NuGets. My code looks like…
  • RE: GroupShare REST API - ChangeAssignmentRequest function()

    If you're consuming the GS2017 REST API from a .NET application I recommend using GroupShareKit . The phaseID is per project specific and you should retrieve the phases based on the project. An example using GroupShareKit here .
  • RE: Using GroupShare Kit to log on with Windows Authentication

    This is not implemented in the GroupShareKit. The good thing is that the source code is available here . You can make the change and send a pull request.
  • Unable to publish a project to GroupShare usign FileBasedProject.PublishProject

    While building a tool to automate the creation and publishing of projects to GroupShare, I've found that I'm unable to publish projects to GroupShare. The process first of all creates an organisation to which it will upload the project; then it does…
  • RE: Can not query projects using GroupShareKit

    GroupShareKit is async library so you should use the async/await keywords. You can avoid them by using the Result property. You can also look at the unit tests code to see how the librarys was used:
  • GroupShare Web API- Enquiry on direct methods to evoke File analysis, Pre-translation , target document generation.

    Hello there Sub : GroupShare Web API - Enquiry on direct methods to evoke File analysis , Pre-translation , target document generation. Ref. I (SDL Trados Studio 2015 API) : http://producthelp.sdl.com/SDK/ProjectAutomationApi/4.0/html/b986e77a-82d2…
  • RE: MultiTerm Online Interface Adjustments?

    Multiterm Online is not yet available via the GroupShare REST API. Next major release will come with new REST API's among witch one for the MultiTerm Online.
  • RE: Unable to Create Organisation through GroupShare API

    The problem you find is just in the description of the method so nothing changed in the method. Anyway this is a new method which we created last week but the API was always returning just the GUID of the newly created organization (see this page of the…
  • RE: Unable to Create Organisation through GroupShare API

    I see. This error is not very useful and the library might hide a few important details so in order to find a few more details could you please do the following: 1. Download the GroupShareKit source code from github: . 2. Build the solution in debug…