Audit Logs
Retrieve operation history (sent, viewed, signed, etc.) for documents.
|
Endpoints
| GET | /api/v1/sign/documents/{id}/audit-logs | List audit logs |
| GET | /api/v1/sign/audit-logs | List audit logs |
GET
/api/v1/sign/documents/{id}/audit-logsList audit logs
Authentication required— Include session cookie or Bearer token
Path Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | Optional | Document ID |
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
action | string | Optional | Filter by action (create / update / delete) |
limit | integer | Optional | Number of items to return (default: 50, max: 200) |
offset | integer | Optional | Number of items to skip |
Response Fields
| Name | Type | Required | Description |
|---|---|---|---|
items | AuditLog[] | Optional | List of audit logs |
total | integer | Optional | Total count |
limit | integer | Optional | Number of items returned |
offset | integer | Optional | Number of items skipped |
Code Examples
curl "https://api.blueai.jp/api/v1/sign/documents/doc_123e4567e89b12d3a456426614174000/audit-logs" \
-H "Cookie: better-auth.session_token=<token>"GET
/api/v1/sign/audit-logsList audit logs
Retrieve audit logs across the entire Sign domain.
Authentication required— Include session cookie or Bearer token
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
entity_type | string | Optional | Filter by entity type |
entity_id | string | Optional | Filter by entity ID |
action | string | Optional | Filter by action (create / update / delete) |
limit | integer | Optional | Number of items to return (default: 50, max: 200) |
offset | integer | Optional | Number of items to skip |
Response Fields
| Name | Type | Required | Description |
|---|---|---|---|
items | AuditLog[] | Optional | List of audit logs |
total | integer | Optional | Total count |
limit | integer | Optional | Number of items returned |
offset | integer | Optional | Number of items skipped |
Code Examples
curl "https://api.blueai.jp/api/v1/sign/audit-logs" \
-H "Cookie: better-auth.session_token=<token>"