Search Results for

    Show / Hide Table of Contents

    Interface ISecurityLogsApiExecutor

    Namespace: Crowdin.Api.SecurityLogs
    Assembly: Crowdin.Api.dll
    Syntax
    public interface ISecurityLogsApiExecutor

    Methods

    | Improve this Doc View Source

    GetOrganizationSecurityLog(Int64)

    Declaration
    Task<SecurityLog> GetOrganizationSecurityLog(long securityLogId)
    Parameters
    Type Name Description
    System.Int64 securityLogId
    Returns
    Type Description
    Task<SecurityLog>
    | Improve this Doc View Source

    GetUserSecurityLog(Int64, Int64)

    Declaration
    Task<SecurityLog> GetUserSecurityLog(long userId, long securityLogId)
    Parameters
    Type Name Description
    System.Int64 userId
    System.Int64 securityLogId
    Returns
    Type Description
    Task<SecurityLog>
    | Improve this Doc View Source

    ListOrganizationSecurityLogs(Int32, Int32, Nullable<SecurityLogEventType>, Nullable<String>, Nullable<Int64>)

    Declaration
    Task<ResponseList<SecurityLog>> ListOrganizationSecurityLogs(int limit = 25, int offset = 0, SecurityLogEventType? eventType = null, string? ipAddress = null, long? userId = null)
    Parameters
    Type Name Description
    System.Int32 limit
    System.Int32 offset
    System.Nullable<SecurityLogEventType> eventType
    System.Nullable<System.String> ipAddress
    System.Nullable<System.Int64> userId
    Returns
    Type Description
    Task<ResponseList<SecurityLog>>
    | Improve this Doc View Source

    ListUserSecurityLogs(Int64, Int32, Int32, Nullable<SecurityLogEventType>, Nullable<String>)

    Declaration
    Task<ResponseList<SecurityLog>> ListUserSecurityLogs(long userId, int limit = 25, int offset = 0, SecurityLogEventType? eventType = null, string? ipAddress = null)
    Parameters
    Type Name Description
    System.Int64 userId
    System.Int32 limit
    System.Int32 offset
    System.Nullable<SecurityLogEventType> eventType
    System.Nullable<System.String> ipAddress
    Returns
    Type Description
    Task<ResponseList<SecurityLog>>
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX