HTTP status code 200
Returns a list of translators
Body
Media type: application/json
Type: json
Content:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Collection of pairs translator Java method name and name of translator",
"type": "object",
"properties": {
"translators": {
"description": "An array of pairs translator Java method name and name of translator",
"id": "translators",
"type": "array",
"items": {
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Translator description",
"properties": {
"name": {
"description": "Name of the translator",
"type": "string"
},
"translator": {
"description": "Path to java method to process",
"type": "string"
},
"description": {
"description": "Description of the translator",
"type": "string"
}
}
}
},
"totalRecords": {
"description": "total number of records in the array",
"type": "integer"
}
},
"required": [
"translators",
"totalRecords"
]
}
Example:
{
"translators": [
{
"name": "LOOKUP_LINKED_PACKAGE",
"translator": "lookupLinkedPackage",
"description": "Lookup purchase order line UUID by order line number"
},
{
"name": "LOOKUP_SUFFIX",
"translator": "lookupSuffix",
"description": "Lookup suffix UUID for purchase order number"
}
],
"totalRecords": 2
}