v1

latestOpenAPI 3.0.02026-07-24202886.6 KB
Feed File

Provides the detailed processing results of a Feed File. This endpoint is only available in Medallia Experience Cloud 2023 Summer Release as an opt-in feature. Reach out to your Medallia contact to enable this API feature as part of the Early Adopter Program.

get/inbound/v2/feedfiles/{id}/detailed-results

Response

Successfully obtained the detailed results.

input_to_field_mappingsobject

The fields that the input columns are being mapped to.

processing_error_descriptionstring

Processing error description. If available

Example response

{
  "processing_results": [
    {
      "entity_name": "record",
      "successful_results": [
        {
          "input_position": 1,
          "result": "Selected for sampling"
        }
      ],
      "discarded_results": [
        {
          "input_position": 1,
          "input_values": {
            "transaction_date": "2021-03-23T20:15:37.000Z",
            "email": "mary@example.medallia.com"
          },
          "issues": [
            {
              "consequence": "Record discarded",
              "explanation": "missing required value",
              "detail": "First name (e_firstname)",
              "cause": "Issues associated with e_firstname ('First name')"
            }
          ]
        }
      ]
    }
  ]
}