> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://developers.alephant.io/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://developers.alephant.io/_mcp/server.

# Getsaaslogs

GET https://analytics.alephant.io/v1/analytics/saas/logs

Business request-log list with pagination metadata.

**Time window — provide one of:**

* `dateFrom` + `dateTo` (`YYYY-MM-DD`), or
* `start` + `end` (ISO 8601 datetimes).

If **both** pairs are present, the **ISO** `start`/`end` pair wins.

**Filters:** at most one of `agentId` vs `memberId`; do not combine `entityType` with agent/member ids (`40028`). `entityType` ∈ `agent` | `user` | `member` (`member` maps to user internally). `search` non-empty must be UUID (`40027`). `masterKeyId` / `departmentId` optional UUIDs.

**Pagination:** `limit` (default 20, max 200), `offset` **or** `page` + optional `pageSize`.

**Success `data`:** `{ "period", "data": [...], "meta": { "total", "hasMore", "limit", "offset", ... } }`

Reference: https://developers.alephant.io/sdk-reference/analytics-sdk/analytics-api/analytics-saas/getsaaslogs

## Authentication

- `Authorization` header (bearer token, required) — Bearer credential containing a JWT, Virtual Key, or PAT.

## Servers

- `https://analytics.alephant.io` (Production, default)
- `https://analytics-dev.alephant.io` (Development (Test / staging analytics API (analytics-dev).))

## Request

### Query parameters

- `dateFrom` (string, optional) — Calendar start `YYYY-MM-DD` (use with `dateTo` unless ISO pair used).
- `dateTo` (string, optional) — Calendar end `YYYY-MM-DD`.
- `start` (datetime, optional) — ISO 8601 start (pair with `end`; overrides calendar pair when both pairs present).
- `end` (datetime, optional) — ISO 8601 end; must be after `start`.
- `agentId` (string, optional) — Agent UUID; mutually exclusive with `memberId`.
- `memberId` (string, optional) — Member UUID; mutually exclusive with `agentId`.
- `entityType` (enum, optional) — `agent` | `user` | `member` for type-only filter; not with agentId/memberId.
  - Allowed values: `agent`, `user`, `member`
- `masterKeyId` (string, optional) — Optional master key UUID.
- `departmentId` (string, optional) — Optional department UUID.
- `search` (string, optional) — Non-empty must be UUID (entity/user id search).
- `model` (string, optional) — Exact model filter after trim.
- `limit` (integer, optional, default: 20) — Page size (default 20, max 200).
- `offset` (integer, optional, default: 0) — 0-based offset (alternative to `page`).
- `page` (integer, optional, default: 1) — 1-based page index when not using `offset`.
- `pageSize` (integer, optional) — Used with `page` (capped with `limit` semantics, max 200).
- `status` (integer, optional) — HTTP status filter. Invalid values are currently ignored.

### Headers

- `X-Workspace-Id` (string, optional) — Required for a normal JWT, Virtual Key, or PAT. A JWT may instead send X-Openmodel-User-Id. Not used by the public health endpoint.
- `X-Openmodel-User-Id` (string, optional) — JWT-only alternative to X-Workspace-Id. Must be a UUID equal to the JWT subject; the server uses it as the workspace id. Not valid as the sole workspace header for Virtual Key or PAT authentication.

## Response

### 200

- `code` (integer, required)
- `message` (string, required)
- `data` (any, required)

## Examples

**Response**

```json
{
  "code": 1,
  "message": "string"
}
```

**SDK Code**

```python
import requests

url = "https://analytics.alephant.io/v1/analytics/saas/logs"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.json())
```

```javascript
const url = 'https://analytics.alephant.io/v1/analytics/saas/logs';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://analytics.alephant.io/v1/analytics/saas/logs"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("Authorization", "Bearer <token>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://analytics.alephant.io/v1/analytics/saas/logs")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://analytics.alephant.io/v1/analytics/saas/logs")
  .header("Authorization", "Bearer <token>")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://analytics.alephant.io/v1/analytics/saas/logs', [
  'headers' => [
    'Authorization' => 'Bearer <token>',
  ],
]);

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("https://analytics.alephant.io/v1/analytics/saas/logs");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <token>");
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = ["Authorization": "Bearer <token>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://analytics.alephant.io/v1/analytics/saas/logs")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```