External Events
An ExternalEvent is a log that is sent to the cloud from a client application such as the Files.com CLI.
List External Events
SDK Method
ExternalEvent.List();
Return Object
FilesList<ExternalEvent>
Authorization Requirement
Requires either a Site-Wide API key or User API key or session from a User with Site Admin permissions.
Additional Arguments
Show External Event
SDK Method
ExternalEvent.Find();
Return Object
ExternalEvent
Authorization Requirement
Requires either a Site-Wide API key or User API key or session from a User with Site Admin permissions.
Method Arguments
| Argument | Description |
|---|---|
| id int64 Required | External Event ID. |
Create External Event
SDK Method
ExternalEvent.Create();
Return Object
ExternalEvent
Authorization Requirement
Available to all authenticated keys or sessions.
Method Arguments
| Argument | Description |
|---|---|
| status string Required | Status of event. Possible values: success, failure, partial_failure, in_progress, skipped |
| body string Required | Event body |
The ExternalEvent Object
Some of the methods above return a ExternalEvent object. The attributes of this object are listed below.
| Attribute | Description |
|---|---|
| id int64 | Event ID |
| event_type string | Type of event being recorded. Possible values: ldap_sync, remote_server_sync, lockout, ldap_login, saml_login, client_log, pending_work, siem_http_destination |
| status string | Status of event. Possible values: success, failure, partial_failure, in_progress, skipped |
| body string | Event body |
| created_at date-time | External event create date/time |
| body_url string | Link to log file. |