Get Translated Value of a Survey Field

After a survey field is translated into a particular language, you can use this resource to get the translated value of the survey field. This resource is available in REST API version 48.0 and later.

Syntax

This URI can only be used for the flow process type Survey.

Note

URI
/services/data/vXX.X/localizedvalue/record/developerName/language
Formats
JSON
HTTP methods
GET
Authentication
Authorization: Bearer token
Request body
None
Request parameters
Path Parameter Description
developerName Required. The developer name of the flow field. For example, Flow.Flow.MyFlow.1.Choice.Choice_1_Master.InputLabel
language Required. Language of the translated field. Possible values are:
  • da
  • nl_NL
  • fi
  • fr
  • de
Response parameters
Parameter Description
createdBy ID of the user who translated the flow field.
createdDate Date and time the flow field was translated.
developerName Developer name of the flow field.
language Language into which the flow field was translated.
value Translated value of the flow field.
isOutofDate Indicates if the flow field is out of date.

Example

{
  "createdBy": "005xxx",
  "createdDate": "2018-09-14T00:10:30Z",
  "developerName": "Flow.Flow.MyFlow.1.Choice.Choice_1_Master.InputLabel",
  "language": "zh_CN",
  "value": "中國",
  "isOutOfDate": true
}