Back to API Reference Home

GET v1/tms/{tmGuid}/custommetascheme

Gets the custom meta scheme of the translation memory specified by a Guid.

Request information

Uri parameters

NameTypeDescriptionAdditional information
tmGuidGuidThe Guid of the translation memory

Response information

Response return type

NameTypeDescription
ListList<TMMetaScheme>
PropertyTypeTMPropertyTypes (enum)Possible enum values: 0:PlainText; 1:Integer; 2:Date; 3:PickListSingle; 4:PickListMultiple; The type of the custom meta property.
NameStringThe name of the custom meta property.
ValueSetString[]The valueset of the custom meta property.

Response body formats

application/json

Sample:
[
  {
    "PropertyType": 1,
    "Name": "Custom meta",
    "ValueSet": [
      "1"
    ]
  },
  {
    "PropertyType": 1,
    "Name": "Custom meta",
    "ValueSet": [
      "1"
    ]
  },
  {
    "PropertyType": 1,
    "Name": "Custom meta",
    "ValueSet": [
      "1"
    ]
  }
]