Retrieve details for a specific data connector execution result. Always includes request/response bodies and the sanitised request URL.
Security
bearerAuth
Intercom-Versionstring(intercom_version)
Intercom API version.
By default, it's equal to the version set in the app package.
Default:"2.16"
Enum:"1.0""1.1""1.2""1.3""1.4""2.0""2.1""2.2""2.3""2.4"
Example:2.16
- The production API serverhttps://api.intercom.io/data_connectors/{data_connector_id}/execution_results/{id}
- The european API serverhttps://api.eu.intercom.io/data_connectors/{data_connector_id}/execution_results/{id}
- The australian API serverhttps://api.au.intercom.io/data_connectors/{data_connector_id}/execution_results/{id}
curl -i -X GET \
https://api.intercom.io/data_connectors/12345/execution_results/99001 \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Intercom-Version: 2.16'successful
The type of object - data_connector.execution.
Value:"data_connector.execution"
Example:"data_connector.execution"
The unique identifier of the data connector that produced this result.
Example:"12345"
The HTTP method used for the request.
Enum:"get""post""put""delete""patch"
Example:"post"
The type of error that occurred, if any.
Enum:"request_configuration_error""faraday_error""3rd_party_error""response_mapping_error""token_refresh_error""fin_action_response_formatting_error""fin_action_identity_verification_error""email_verification_error""non_fin_standalone_action_identity_verification_error""request_validation_error"
Example:"3rd_party_error"
A human-readable error message. Query parameters, userinfo, and fragments in URLs are redacted.
Example:"Connection refused"
The type of source that triggered this execution.
Enum:"custom_bot""inbound_custom_bot""button_custom_bot""answer""workflow""saved_reply""triggerable_custom_bot""inbox""fin"
Example:"workflow"
The request URL. Query parameters, userinfo, and fragments are redacted.
Example:"https://api.example.com/webhook"
The request body sent to the external API.
Example:"{\"message\": \"hello\"}"
Response
{ "type": "data_connector.execution", "id": "99001", "data_connector_id": "12345", "success": true, "http_status": 200, "http_method": "post", "execution_time_ms": 150, "source_type": "workflow", "source_id": "5001", "conversation_id": "8001", "created_at": "2026-02-10T18:15:32Z", "request_url": "https://api.example.com/webhook", "request_body": "{\"channel\": \"#alerts\", \"text\": \"Conversation updated\"}", "response_body": "{\"ok\": true}", "raw_response_body": "{\"ok\": true}" }