Gets the form data for the specified task

GET /cs-close-api/tasks/{id}/form

Getting form data for a specified task involves accessing and retrieving user-entered data from a task's associated form

Path parameters

  • id integer Required

    The identifier of the task specified.

Query parameters

  • name string

    Filter Tasks based on the name defined. It is not mandatory to pass name for filter the data.

Responses

GET /cs-close-api/tasks/{id}/form
curl \
 --request GET 'http://close-service:8082/cs-close-api/tasks/{id}/form'
Response examples (200)
{
  "additionalProperty1": {
    "elementId": "string",
    "elementType": "string",
    "textValue": "string",
    "booleanValue": "string",
    "optionList": [
      {
        "displayValue": "string",
        "systemValue": "string"
      }
    ],
    "dateLocale": "string",
    "timezone": "string",
    "locale": {
      "language": "string",
      "displayName": "string",
      "country": "string",
      "variant": "string",
      "script": "string",
      "unicodeLocaleAttributes": [
        "string"
      ],
      "unicodeLocaleKeys": [
        "string"
      ],
      "displayLanguage": "string",
      "displayScript": "string",
      "displayCountry": "string",
      "displayVariant": "string",
      "extensionKeys": [
        "string"
      ],
      "iso3Language": "string",
      "iso3Country": "string"
    }
  },
  "additionalProperty2": {
    "elementId": "string",
    "elementType": "string",
    "textValue": "string",
    "booleanValue": "string",
    "optionList": [
      {
        "displayValue": "string",
        "systemValue": "string"
      }
    ],
    "dateLocale": "string",
    "timezone": "string",
    "locale": {
      "language": "string",
      "displayName": "string",
      "country": "string",
      "variant": "string",
      "script": "string",
      "unicodeLocaleAttributes": [
        "string"
      ],
      "unicodeLocaleKeys": [
        "string"
      ],
      "displayLanguage": "string",
      "displayScript": "string",
      "displayCountry": "string",
      "displayVariant": "string",
      "extensionKeys": [
        "string"
      ],
      "iso3Language": "string",
      "iso3Country": "string"
    }
  }
}