Interface AuditTrailApi


  • @Path("/")
    public interface AuditTrailApi
    Agent API

    This document refers to Symphony API calls to send and receive messages and content. They need the on-premise Agent installed to perform decryption/encryption of content. - sessionToken and keyManagerToken can be obtained by calling the authenticationAPI on the symphony back end and the key manager respectively. Refer to the methods described in authenticatorAPI.yaml. - Actions are defined to be atomic, ie will succeed in their entirety or fail and have changed nothing. - If it returns a 40X status then it will have sent no message to any stream even if a request to aome subset of the requested streams would have succeeded. - If this contract cannot be met for any reason then this is an error and the response code will be 50X. - MessageML is a markup language for messages. See reference here: https://rest-api.symphony.com/docs/messagemlv2

    • Method Detail

      • v1AudittrailPrivilegeduserGet

        @GET
        @Path("/v1/audittrail/privilegeduser")
        @Produces("application/json")
        V1AuditTrailInitiatorList v1AudittrailPrivilegeduserGet​(@HeaderParam("sessionToken")
                                                                String sessionToken,
                                                                @HeaderParam("keyManagerToken")
                                                                String keyManagerToken,
                                                                @QueryParam("startTimestamp")
                                                                Long startTimestamp,
                                                                @QueryParam("endTimestamp")
                                                                Long endTimestamp,
                                                                @QueryParam("before")
                                                                String before,
                                                                @QueryParam("after")
                                                                String after,
                                                                @QueryParam("limit")
                                                                Integer limit,
                                                                @QueryParam("initiatorId")
                                                                Long initiatorId,
                                                                @QueryParam("role")
                                                                String role)
        Get a list of actions performed by a privileged account acting as privileged user given a period of time. Get a list of actions performed by a privileged account acting as privileged user given a period of time.