Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This method provides a compact list of groups and is not used for retrieval of full details or management thereof.

URL

(GET) /services/suppliergroups/codes
(POST) /services/suppliergroups/codes
 
 

PARAMETERS

The method has no parameters.

Use the POST variant for autofor Auto-completion and pagination features.

RESULTS

The result is a JSON array with one element per country:

vUnique group ID.int
tName of group.string
dynamicIndicates if the group is dynamic (true) or static (false).bool
taskThe task code

The settings/tasks/codes for which the group is defined. Example: TR, RV, PROOF.

string

...

tasktThe task name such as "Translation", "Revision", etc.string


EXAMPLES

List of countries with 3 letter code and name.

Code Block
 [
  {
    "v": 10,
    "t": "Preferred Translators",
    "dynamic": false,
    "task": "TR",
    "taskt": "Translation"
  },
  {
    "v": 15,
    "t": "Preferred Revisers",
    "dynamic": true,
    "task": "RV",
    "taskt": "Revision"
  },
  ...
]

 

 

...