ResultMessage
Contains summary messages generated from asynchronous API calls in Salesforce Marketing Cloud. Each message provides status information, execution results, or error diagnostics to assist in monitoring API-based processes.
View-Specific Information
Select
The connector uses the Salesforce Marketing Cloud APIs to process the following WHERE clause operators for all but date-time values: =, !=, <>, >, >=, <, <=, IN. For date-time values, only > and < are supported. The connector processes other filters client-side within the connector.
For example, the following (but not only) queries are processed server side:
SELECT * FROM ResultMessage WHERE RequestID = 123 SELECT * FROM ResultMessage WHERE RequestID IN (123, 456) SELECT * FROM ResultMessage WHERE CreatedDate > '2017/01/25'
Columns
| Name | Type | Description |
| RequestID | String | Specifies the unique identifier (Id) of the initial asynchronous API call that initiated the overall request workflow. |
| ConversationID | String | Specifies the Id that represents the conversation context for the asynchronous API call. All related requests that must be processed as a single unit share this Id. |
| Client_ID | Int | Specifies the Id of the client that is associated with the asynchronous API operation. |
| CreatedDate | Datetime | Indicates the date and time when the result message object was created. |
| OverallStatusCode | String | Defines the overall status returned for the asynchronous API conversation. |
| StatusCode | String | Indicates the status returned for the individual asynchronous API request. |
| StatusMessage | String | Provides a descriptive message that explains the status of the asynchronous API call. |
| ErrorCode | Int | Identifies the error that is associated with the asynchronous API request by using a numeric code. |
| RequestType | String | Defines whether the request that is represented by the result message is processed through synchronous or asynchronous API behavior. |
| ResultType | String | Indicates whether the result that is returned by the system originated from synchronous or asynchronous API processing. |
| ResultDetailXML | String | Contains detailed result information for the request in XML format, enabling structured inspection of outcomes. |
| Client_PartnerClientKey | String | Specifies the user-defined partner key that is associated with the client. |