> ## Documentation Index
> Fetch the complete documentation index at: https://doc.rapida.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Assistant HTTP Log

Retrieves a specific assistant HTTP log entry, including webhook delivery logs, by its ID using the Rapida API.

<Info>
  For more authentication options, see: [https://doc.rapida.ai/api-reference/authentication](https://doc.rapida.ai/api-reference/authentication)
</Info>

### Parameters

<ParamField body="connectionConfig" type="ConnectionConfig" required>
  Configuration for the client connection.
</ParamField>

<ParamField body="request" type="GetAssistantHTTPLogRequest" required>
  <Expandable>
    <ParamField body="projectId" type="uint64" optional>
      The project identifier for scope filtering.
    </ParamField>

    <ParamField body="id" type="uint64" required>
      The unique identifier of the HTTP log to retrieve.
    </ParamField>
  </Expandable>
</ParamField>

### Usage

<CodeGroup>
  ```python Python theme={null}
  from rapida import (
      ConnectionConfig,
      GetAssistantHTTPLogRequest,
      get_assistant_http_log,
  )
  from pprint import pprint
  connection_config = ConnectionConfig.default_connection_config(
      ConnectionConfig.with_sdk("{rapida-api-key}")
  )
  response = get_assistant_http_log(
      client_cfg=connection_config,
      request=GetAssistantHTTPLogRequest(
          id="{assistant_http_log_id}", projectId="{project_id}"
      ),
  )
  pprint(response)

  ```

  ```go Go theme={null}

  import (
  	"context"
  	"fmt"
  	"os"

  	clients "github.com/rapidaai/rapida-go/rapida/clients"
  	rapida_proto "github.com/rapidaai/rapida-go/rapida/clients/protos"
  	connections "github.com/rapidaai/rapida-go/rapida/connections"
  )

  func main() {
  	// Configure client connection using RAPIDA_PROJECT_CREDENTIAL environment variable
  	connectionConfig := connections.
  		DefaultconnectionConfig(connections.WithSDK(os.Getenv("RAPIDA_PROJECT_CREDENTIAL")))

  	// Retrieve specific HTTP log
  	response, err := clients.GetAssistantHTTPLog(context.Background(), connectionConfig, &rapida_proto.GetAssistantHTTPLogRequest{
  		Id: 567898765456788765,
  	})

  	if err != nil {
  		fmt.Printf("Error while making call using rapida: %+v\n", err)
  		return
  	}

  	// Print the response
  	fmt.Printf("Rapida calling response: %+v\n", response)
  }
  ```

  ```typescript NodeJs theme={null}
  import {
    ConnectionConfig,
    GetAssistantHTTPLog,
    GetAssistantHTTPLogRequest,
  } from "@rapidaai/nodejs";

  (async () => {
    const connectionCfg = ConnectionConfig.DefaultConnectionConfig(
      ConnectionConfig.WithSDK({
        ApiKey: process.env.RAPIDA_PROJECT_CREDENTIAL,
      })
    );
    getAssistantHTTPLog(connectionCfg, 45678903456789);
  })();


  async function getAssistantHTTPLog(connectionCfg, httpLogId) {
    const request = new GetAssistantHTTPLogRequest();
    request.setId(httpLogId);

    try {
      const response = await GetAssistantHTTPLog(connectionCfg, request);
      console.log("Assistant HTTP Log Response:", response.toObject());
    } catch (error) {
      console.error("Error with GetAssistantHTTPLog call:", error);
    }
  }

  ```
</CodeGroup>

### Response

<ParamField body="code" type="int32">
  Numeric status code for the operation.
</ParamField>

<ParamField body="success" type="boolean">
  Indicates whether the operation was successful.
</ParamField>

<ParamField body="data" type="AssistantHTTPLog">
  The assistant HTTP log entry details.

  <Expandable>
    <ParamField body="id" type="uint64">
      Unique identifier for the HTTP log.
    </ParamField>

    <ParamField body="sourceRefId" type="uint64">
      Source record identifier. For webhook deliveries, this is the webhook ID.
    </ParamField>

    <ParamField body="request" type="object">
      The request payload sent to the webhook.
    </ParamField>

    <ParamField body="response" type="object">
      The response received from the webhook.
    </ParamField>

    <ParamField body="status" type="string">
      Status of the webhook execution.
    </ParamField>

    <ParamField body="createdDate" type="timestamp">
      Timestamp when the log entry was created.
    </ParamField>

    <ParamField body="updatedDate" type="timestamp">
      Timestamp when the log entry was last updated.
    </ParamField>

    <ParamField body="assistantId" type="uint64">
      Identifier of the associated assistant.
    </ParamField>

    <ParamField body="projectId" type="uint64">
      Identifier of the associated project.
    </ParamField>

    <ParamField body="organizationId" type="uint64">
      Identifier of the associated organization.
    </ParamField>

    <ParamField body="assistantConversationId" type="uint64">
      Identifier of the associated conversation.
    </ParamField>

    <ParamField body="assetPrefix" type="string">
      Asset prefix used for the webhook.
    </ParamField>

    <ParamField body="sourceEvent" type="string">
      Event type that triggered the HTTP request, such as a call, WebRTC, or conversation webhook event.
    </ParamField>

    <ParamField body="responseStatus" type="uint64">
      HTTP response status code from the webhook.
    </ParamField>

    <ParamField body="timeTaken" type="uint64">
      Time taken for the webhook execution in milliseconds.
    </ParamField>

    <ParamField body="retryCount" type="uint32">
      Number of retry attempts made.
    </ParamField>

    <ParamField body="httpMethod" type="string">
      HTTP method used for the webhook request.
    </ParamField>

    <ParamField body="httpUrl" type="string">
      URL that was called for the webhook.
    </ParamField>

    <ParamField body="source" type="string">
      Source category for the HTTP log.
    </ParamField>

    <ParamField body="contextId" type="string">
      Context identifier associated with the source event, when available.
    </ParamField>

    <ParamField body="errorMessage" type="string">
      Delivery error message, when the HTTP request fails.
    </ParamField>
  </Expandable>
</ParamField>

<ParamField body="error" type="object">
  Error information, if applicable.

  <Expandable>
    <ResponseField name="errorCode" type="uint64">
      Numeric error code.
    </ResponseField>

    <ResponseField name="errorMessage" type="string">
      Detailed error message.
    </ResponseField>

    <ResponseField name="humanMessage" type="string">
      Human-readable error message.
    </ResponseField>
  </Expandable>
</ParamField>
