Back to API Reference Home

GET v1/tms?srcLang={srcLang}&targetLang={targetLang}

Gets a list of the translation memories on memoQ server. Filters the TMs by the specified source or target language.

Request information

Uri parameters

NameTypeDescriptionAdditional information
srcLangStringThe source language; Optional
targetLangStringThe target language; Optional

Response information

Response return type

NameTypeDescription
ListList<TMModel>
AccessLevelResourceAccessLevel (enum)Possible enum values: 0:ReadOnly; 1:ReadWrite; 2:Admin; The access level of the translation memory.
ClientStringThe client of the translation memory.
DomainStringThe domain of the translation memory.
SubjectStringThe subject of the translation memory.
ProjectStringThe project of the translation memory.
NumEntriesInt32The number of entries in the translation memory.
FriendlyNameStringThe friendly name of the translation memory.
SourceLangCodeStringThe source language of the translation memory.
TargetLangCodeStringThe target language of the translation memory.
TMGuidStringThe Guid of the translation memory.
TMOwnerStringThe owner of the translation memory.

Response body formats

application/json

Sample:
[
  {
    "AccessLevel": 0,
    "Client": "client",
    "Domain": "domain",
    "Subject": "subject",
    "Project": "project",
    "NumEntries": 200,
    "FriendlyName": "My translation memory",
    "SourceLangCode": "eng",
    "TargetLangCode": "hun",
    "TMGuid": "3bcbbce5-d422-488d-9f26-b07ec2cd6523",
    "TMOwner": "Built-in administrator"
  },
  {
    "AccessLevel": 0,
    "Client": "client",
    "Domain": "domain",
    "Subject": "subject",
    "Project": "project",
    "NumEntries": 200,
    "FriendlyName": "My translation memory",
    "SourceLangCode": "eng",
    "TargetLangCode": "hun",
    "TMGuid": "3bcbbce5-d422-488d-9f26-b07ec2cd6523",
    "TMOwner": "Built-in administrator"
  },
  {
    "AccessLevel": 0,
    "Client": "client",
    "Domain": "domain",
    "Subject": "subject",
    "Project": "project",
    "NumEntries": 200,
    "FriendlyName": "My translation memory",
    "SourceLangCode": "eng",
    "TargetLangCode": "hun",
    "TMGuid": "3bcbbce5-d422-488d-9f26-b07ec2cd6523",
    "TMOwner": "Built-in administrator"
  }
]