AccessLogEntries REST API

AccessLogEntries REST API documentation and interactive testing.

For the OpenAPI Specification document use this link: https://apis.objectsgrid.com/accesslogentries/contract


Query Access Log Entries

get

This operation supports Elastic Search Query DSL query format

Authorizations
Query parameters
querystringOptional

Elastic Search Query DSL for querying service Accounts.

Example: { "query": { "match_all": {} } }
fromintegerOptional

Defines the starting record number for retrieval.

sizeintegerOptional

Defines the number of records to retrieve.

Header parameters
X-ObjectsGrid-AccessPointstring · enumRequired

EU or US depending on where your Organization Account is located

Possible values:
X-ObjectsGrid-RestApiVersionstringOptional

This header allows targeting an API version. If you want to target the latest API version set its value to 'latest' If you want to target the latest stable API version set its value to 'stable'

X-ObjectsGrid-SessionIDstringOptional

This header allows you to provide a Session ID to be traced through the request stack and returned in the response.

Responses
200
Successfully listed the Access Log Entries
application/json
get
GET /accesslogentries HTTP/1.1
Host: apis.objectsgrid.com
Authorization: Bearer Bearer JWT
X-ObjectsGrid-AccessPoint: EU
Accept: */*
[
  {
    "organizationAccountID": "text",
    "serviceID": "text",
    "serviceVersion": "text",
    "operationID": "text",
    "correlationID": "text",
    "principalID": "text",
    "sessionID": "text",
    "remoteAddr": "text",
    "userAgent": "text",
    "requestDateTime": "2025-07-06T15:19:07.123Z",
    "accessPoint": "text",
    "environment": "text",
    "requestURL": "text",
    "requestBody": "text",
    "httpMethod": "text",
    "responseDateTime": "text",
    "responseCode": 1,
    "responseTimeNanoseconds": 1,
    "objectsAccessGranted": [
      {
        "objectID": "text",
        "objectType": "text",
        "namespace": "text",
        "objectVersion": "text",
        "deleted": true,
        "tags": [
          {
            "name": "text",
            "val": "text"
          }
        ]
      }
    ],
    "objectsAccessDenied": [
      {
        "objectID": "text",
        "objectType": "text",
        "namespace": "text",
        "objectVersion": "text",
        "deleted": true,
        "tags": [
          {
            "name": "text",
            "val": "text"
          }
        ]
      }
    ]
  }
]

Last updated

Was this helpful?