Back to API Reference Home

GET v1/tms/{tmGuid}

Gets the translation memory by the specified Guid.

Request information

Uri parameters

NameTypeDescriptionAdditional information
tmGuidGuidThe Guid of the translation memory

Response information

Response return type

NameTypeDescription
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"
}