Page tree

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Next »

Provides access to the associations between tasks and language resources.

URL:

/editor/languageresourcetaskassoc

Available Methods:

GET / POST / DELETE

Specialities:

Datasets can not be edited, only deleted and created.

Resource Layout

Name

Type

Info

id

integer

GET only, auto incremented

languageResourceId

integer

The language resource which should be assigned to the task. (table name → LEK_languageresources field name → 'id')

taskGuidstringUnique task guid identifier. (table name → LEK_task field name → taskGuid)

segmentsUpdateable

integer

Segments will be updated in the language resources. (default is 0)


Get request example

{

  data:{

       "id":1

  }
}

Post request example

{

 data:{

       "languageResourceId":1,

"taskGuid":"{341d3dab-8c0b-4469-a8a8-30e9ddb81a26}",

"segmentsUpdateable":0

 }
}

Delete request example

{

  data:{

       "id":1

  }
}

  • No labels