mirror of
https://github.com/forcedotcom/afv-library.git
synced 2026-08-06 15:59:59 +08:00
118 lines
4.7 KiB
JSON
118 lines
4.7 KiB
JSON
|
|
{
|
|||
|
|
"sections": [
|
|||
|
|
"title",
|
|||
|
|
"description",
|
|||
|
|
"fields",
|
|||
|
|
"special_access_rules"
|
|||
|
|
],
|
|||
|
|
"title": "ApexCalloutEventLog - Data API",
|
|||
|
|
"description": "Apex Callout event logs contain details about callouts (external requests) during Apex code execution. This object is available in API version 55.0 and later.",
|
|||
|
|
"fields_columns": [
|
|||
|
|
"type",
|
|||
|
|
"properties",
|
|||
|
|
"description"
|
|||
|
|
],
|
|||
|
|
"fields": {
|
|||
|
|
"BotIdentifier": {
|
|||
|
|
"type": "string",
|
|||
|
|
"properties": "Filter, Group, Nillable, Sort",
|
|||
|
|
"description": "The ID of the bot."
|
|||
|
|
},
|
|||
|
|
"BotSessionIdentifier": {
|
|||
|
|
"type": "string",
|
|||
|
|
"properties": "Filter, Group, Nillable, Sort",
|
|||
|
|
"description": "The bot session ID."
|
|||
|
|
},
|
|||
|
|
"ClientIp": {
|
|||
|
|
"type": "string",
|
|||
|
|
"properties": "Filter, Group, Nillable, Sort",
|
|||
|
|
"description": "The IP address of the client that’s using Salesforce services. A Salesforce internal IP (such as a login from AppExchange) is shown as “Salesforce.com IP”. For example: 96.43.144.26."
|
|||
|
|
},
|
|||
|
|
"CpuTime": {
|
|||
|
|
"type": "double",
|
|||
|
|
"properties": "Filter, Nillable, Sort",
|
|||
|
|
"description": "The CPU time in milliseconds used to complete the request. This field indicates the amount of activity taking place in the app server layer."
|
|||
|
|
},
|
|||
|
|
"IsSuccess": {
|
|||
|
|
"type": "boolean",
|
|||
|
|
"properties": "Defaulted on create, Filter, Group, Sort",
|
|||
|
|
"description": "Indicates whether the callout request was successful."
|
|||
|
|
},
|
|||
|
|
"LoginKey": {
|
|||
|
|
"type": "string",
|
|||
|
|
"properties": "Filter, Group, Nillable, Sort",
|
|||
|
|
"description": "The string that ties together all events in a given user’s login session. It starts with a login event and ends with either a logout event or the user session expiring. For example: GeJCsym5eyvtEK2I."
|
|||
|
|
},
|
|||
|
|
"Method": {
|
|||
|
|
"type": "string",
|
|||
|
|
"properties": "Filter, Group, Nillable, Sort",
|
|||
|
|
"description": "The HTTP method of the callout. For example: GET, POST, PUT, and so on."
|
|||
|
|
},
|
|||
|
|
"PlannerIdentifier": {
|
|||
|
|
"type": "string",
|
|||
|
|
"properties": "Filter, Group, Nillable, Sort",
|
|||
|
|
"description": "The ID of the agent planner."
|
|||
|
|
},
|
|||
|
|
"RequestIdentifier": {
|
|||
|
|
"type": "string",
|
|||
|
|
"properties": "Filter, Group, Nillable, Sort",
|
|||
|
|
"description": "The unique ID of a single transaction. A transaction can contain one or more events. Each event in a given transaction has the same RequestId. For example: 3nWgxWbDKWWDIk0FKfF5DV."
|
|||
|
|
},
|
|||
|
|
"RequestSize": {
|
|||
|
|
"type": "double",
|
|||
|
|
"properties": "Filter, Nillable, Sort",
|
|||
|
|
"description": "The size of the callout request body, in bytes."
|
|||
|
|
},
|
|||
|
|
"RequestTime": {
|
|||
|
|
"type": "double",
|
|||
|
|
"properties": "Filter, Nillable, Sort",
|
|||
|
|
"description": "The amount of time that the request took in milliseconds."
|
|||
|
|
},
|
|||
|
|
"ResponseSize": {
|
|||
|
|
"type": "double",
|
|||
|
|
"properties": "Filter, Nillable, Sort",
|
|||
|
|
"description": "The size of the callout response, in bytes."
|
|||
|
|
},
|
|||
|
|
"RunTime": {
|
|||
|
|
"type": "double",
|
|||
|
|
"properties": "Filter, Nillable, Sort",
|
|||
|
|
"description": "Not used for this event type. Use the RequestTime field instead."
|
|||
|
|
},
|
|||
|
|
"SessionKey": {
|
|||
|
|
"type": "string",
|
|||
|
|
"properties": "Filter, Group, Nillable, Sort",
|
|||
|
|
"description": "The user’s unique session ID. You can use this value to identify all user events within a session. When a user logs out and logs in again, a new session is started. For example: d7DEq/ANa7nNZZVD."
|
|||
|
|
},
|
|||
|
|
"StatusCode": {
|
|||
|
|
"type": "int",
|
|||
|
|
"properties": "Filter, Group, Nillable, Sort",
|
|||
|
|
"description": "The returned status code of the request."
|
|||
|
|
},
|
|||
|
|
"Timestamp": {
|
|||
|
|
"type": "dateTime",
|
|||
|
|
"properties": "Filter, Nillable, Sort",
|
|||
|
|
"description": "The access time of Salesforce services in GMT. For example, 2020-01-20T19:12:26.965Z. Milliseconds are the most granular setting."
|
|||
|
|
},
|
|||
|
|
"Type": {
|
|||
|
|
"type": "string",
|
|||
|
|
"properties": "Filter, Group, Nillable, Sort",
|
|||
|
|
"description": "The type of Apex callout. For example: REST or AJAX."
|
|||
|
|
},
|
|||
|
|
"Uri": {
|
|||
|
|
"type": "string",
|
|||
|
|
"properties": "Filter, Group, Nillable, Sort",
|
|||
|
|
"description": "The URI of the page that’s receiving the request. For example: /home/home.jsp."
|
|||
|
|
},
|
|||
|
|
"Url": {
|
|||
|
|
"type": "string",
|
|||
|
|
"properties": "Filter, Nillable, Sort",
|
|||
|
|
"description": "The callout endpoint URL. For example, www.salesforce.com."
|
|||
|
|
},
|
|||
|
|
"UserIdentifier": {
|
|||
|
|
"type": "string",
|
|||
|
|
"properties": "Filter, Group, Nillable, Sort",
|
|||
|
|
"description": "The ID of the user who’s using Salesforce services through the UI or the API. For example: 00530000009M943."
|
|||
|
|
}
|
|||
|
|
},
|
|||
|
|
"special_access_rules": "To access this object, you must have the View Event Log Object Data user permission."
|
|||
|
|
}
|