An execution result from a data connector HTTP request.
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\"}"
{ "type": "data_connector.execution", "id": "99001", "data_connector_id": "12345", "success": true, "http_status": 200, "http_method": "post", "error_type": "3rd_party_error", "error_message": "Connection refused", "execution_time_ms": 245, "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": "{\"message\": \"hello\"}", "response_body": "{\"status\": \"ok\"}", "raw_response_body": "{\"status\": \"ok\"}" }