Hierarchy

  • MessagingServiceScanLogsService

Constructors

Methods

  • Get a list of messaging service scan logs Use this API to get a list of messaging service scan logs that match the given parameters.

    Token Permissions: [ messaging_service_scan:read ]

    Returns

    MessagingServiceScanLogListResponse The list of messaging service scan logs and the accompanying metadata.

    Throws

    ApiError

    Parameters

    • __namedParameters: {
          pageNumber?: number;
          pageSize?: number;
          scanId: string;
          sort?: string;
          xContextId?: string;
      }
      • Optional pageNumber?: number

        The page number to get. *

      • Optional pageSize?: number

        The number of messaging service scan logs to get per page. *

      • scanId: string

        The ID of the messaging service scan we want logs for. *

      • Optional sort?: string

        Sort based on the provided parameters.
        The value can be either a standalone field name (?sort=<field>) or a field and direction, delimited by a colon (?sort=<field>:<asc|desc>). If the direction is not specified, the default is ascending. *

      • Optional xContextId?: string

        Optional context id the request is running. *

    Returns CancelablePromise<MessagingServiceScanLogListResponse>