GET
/
v1
/
log-repositories
curl --request GET \
  --url https://api.getmaxim.ai/v1/log-repositories \
  --header 'x-maxim-api-key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "workspaceId": "<string>",
      "folderId": "<string>",
      "config": {},
      "customPricingStructureId": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  ]
}

Authorizations

x-maxim-api-key
string
header
required

API key for authentication

Query Parameters

workspaceId
string
required

Unique identifier for the workspace

id
string

Log repository ID to fetch specific repository

name
string

Log repository name

limit
number | null
default:20

Maximum number of records to return (max: 20)

Required range: x <= 20
cursor
string | null

Cursor for pagination

gte
string | null

Filter repositories created after this date (eg: 2023-01-01) //YYYY-MM-DD

lte
string | null

Filter repositories created before this date (eg: 2023-12-31) //YYYY-MM-DD

folderId
string | null

Folder ID to fetch repositories in

Response

200
application/json

Log repositories retrieved successfully

The response is of type object.