List Request Logs

Beta
GET/v1/core/request-logs

This endpoint is idempotent. Learn more

Returns a paginated list of request logs.

cursoroptional string

Cursor token used to retrieve the next or previous page of results.

limitoptional integer

Maximum number of results per page (default: 100, max: 1000).

qoptional string

Search query used to filter results.

start_dateoptional string (date-time)

Restricts results to request logs on or after this timestamp.

end_dateoptional string (date-time)

Restricts results to request logs on or before this timestamp.

methods[]optional arrayenumValues:GETPOSTPUT

Filter by the HTTP method.

status_codes[]optional array

Filter by the HTTP status code.

error_codes[]optional arrayenumValues:expired_tokenapi_key_expiredapi_key_revoked

Filter by API error code.

account_ids[]optional array

Filter by the account ID targeted by the request. The actor may be operating on behalf of a separate account.

actor_ids[]optional array

Filter by the actor identifier. account_user.id when identity_type=user, or an api_key.id when identity_type=api_key.

actor_types[]optional arrayenumValues:userapi_keyagent

Filter by the actor type.

normalized_routes[]optional array

Filter by the normalized route template. For example PATCH /v1/sales/customers/{id} is the normalized route for a request route PUT /v1/sales/customers/ac_....

hosts[]optional array

Filter by the request host. Typically, api.augno.com.

min_latency_usoptional integer

Filter by the minimum latency in microseconds.

idempotency_keyoptional string

Filter by the user-provided idempotency key.

include[]optional arrayenumValues:accountactoractor.role

Sub-objects to expand in the response. When omitted, sub-objects are returned as null.

objectstringenumValues:list

Resource type identifier.

page_infoobject

Pagination metadata.

next_page_urlstringnullable

URL to fetch the next page, null if no more pages.

previous_page_urlstringnullable

URL to fetch the previous page, null if on the first page.

has_next_pageboolean

Whether more results exist after this page.

has_prev_pageboolean

Whether results exist before this page.

dataarray of object

Resources in this page.

idstring

Request log ID.

objectstringenumValues:request_log

Resource type identifier.

methodstring

HTTP method.

hoststring

Request host. Usually api.augno.com.

pathstring

Non-normalized request path.

normalized_routestring

Normalized route template. For example PATCH /v1/sales/customers/{id} is the normalized route for a request route PUT /v1/sales/customers/ac_....

query_paramsobjectnullable

Query parameters. Encoded as a JSON value (object, array, string, number, boolean, or null), not a JSON-encoded string.

status_codeinteger

HTTP status code.

latency_usinteger

Request latency in microseconds.

api_versionstringnullable

API version used.

client_ipstringnullable

Client IP address.

user_agentstringnullable

User agent.

referrerstringnullable

Referrer header.

error_codestringnullable

API error code.

error_messagestringnullable

Error message.

occurred_atstring (date-time)

When the request occurred.

created_atstring (date-time)

When the log entry was created.

accountobjectExpandablenullable

Account targeted by the request.

idstring

Account ID.

objectstringenumValues:account

Resource type identifier.

namestring

Display name.

default_billing_addressobjectnullable

Default billing address.

Always returned as null in this endpoint.
default_shipping_addressobjectnullable

Default shipping address.

Always returned as null in this endpoint.
brandingobjectnullable

Branding configuration.

Always returned as null in this endpoint.
portalobjectnullable

Portal configuration.

Always returned as null in this endpoint.
created_atstring (date-time)

Creation timestamp.

updated_atstring (date-time)

Last updated timestamp.

actorobjectExpandablenullable

Actor who made the request.

idstring

Actor ID.

objectstringenumValues:actor

Resource type identifier.

typestringenumValues:userapi_keyagent

Actor type.

namestringnullable

Display name.

handlestringnullable

Human-readable handle (email for users, redacted_value for API keys, slug for agents).

roleobjectExpandablenullable

Assigned role.

idstring

Role ID.

objectstringenumValues:role

Resource type identifier.

namestring

Display name.

typestringenumValues:adminuserscanner

Role type code.

The role's type is sometimes used to gate special behaviors in the frontend and to restrict some actions to only certain types of roles. For example, only roles with the type admin can create and manage API keys.

ownerobjectnullable

Owner of this resource.

Always returned as null in this endpoint.
permissionsarray of stringnullable

Permissions in {domain}:{action} format.

created_atstring (date-time)

Creation timestamp.

updated_atstring (date-time)

Last updated timestamp.

idempotency_keystringnullable

User-provided idempotency key.

request_bodyobjectnullable

Request body. Encoded as a JSON value (object, array, string, number, boolean, or null), not a JSON-encoded string.

response_bodyobjectnullable

Response body. Encoded as a JSON value (object, array, string, number, boolean, or null), not a JSON-encoded string.

Responses

200

Successful response for List Request Logs