andrzejsydor opened a new issue #13676:
URL: https://github.com/apache/airflow/issues/13676
**Apache Airflow version**: 2.0.0
**What happened**:
Using endpoint
`/dags/{dag_id}/dagRuns/{dag_run_id}/taskInstances/{task_id}/xcomEntries/{xcom_key}`
I got Response Body but without `value` entry. Like:
```
{
"dag_id": "string",
"execution_date": "string",
"key": "string",
"task_id": "string",
"timestamp": "string"
}
```
Instead of:
```
{
"dag_id": "string",
"execution_date": "string",
"key": "string",
"task_id": "string",
"timestamp": "string",
"value": "string"
}
```
The exact value by defined `key` exists.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]