Skip to main content
Retrieves a paginated list of webhook logs with optional filtering and ordering using the Rapida API.
For more authentication options, see: https://doc.rapida.ai/api-reference/authentication

Parameters

connectionConfig
ConnectionConfig
required
Configuration for the client connection.
request
GetAllAssistantWebhookLogRequest
required

Usage

from rapida import (
    ConnectionConfig,
    GetAllAssistantWebhookLogRequest,
    get_all_assistant_webhook_log,
)
from pprint import pprint
connection_config = ConnectionConfig.default_connection_config(
    ConnectionConfig.with_sdk("{rapida-api-key}")
)
response = get_all_assistant_webhook_log(
    client_cfg=connection_config,
    request=GetAllAssistantWebhookLogRequest(
        projectId="{project_id}",
        paginate=Paginate(page=0, pageSize=20),
        # criterias=[Criteria(key="KEY", value="VALUE", logic="should")],
    ),
)
pprint(response)

Response

code
int32
Numeric status code for the operation.
success
boolean
Indicates whether the operation was successful.
data
AssistantWebhookLog[]
Array of webhook log entries.
paginated
Paginated
Pagination metadata.
error
object
Error information, if applicable.