1. Activity
1Password API
  • auth
    • Performs introspection of the provided Bearer JWT token
      GET
  • api-v1
    • Retrieves item usages
      POST
    • Retrieves sign-in attempts
      POST
  • Activity
    • Retrieve a list of API Requests that have been made.
      GET
  • Vaults
    • Get all Vaults
      GET
    • Get Vault details and metadata
      GET
  • Items
    • Get all items for inside a Vault
      GET
    • Create a new Item
      POST
    • Get the details of an Item
      GET
    • Update an Item
      PUT
    • Delete an Item
      DELETE
    • Update a subset of Item attributes
      PATCH
  • Files
    • Get all the files inside an Item
      GET
    • Get the content of a File
      GET
    • Get the details of a File
      GET
  • Health
    • Ping the server for liveness
      GET
    • Get state of the server and its dependencies.
      GET
  • Metrics
    • Query server for exposed Prometheus metrics
      GET
  • 数据模型
    • Schemas
      • Client
      • ErrorResponse
      • Cursor
      • File
      • CursorCollection
      • Vault
      • DateTimeRFC3339
      • GeneratorRecipe
      • Details
      • Item
      • Error
      • FullItem
      • Introspection
      • Field
      • ItemUsage
      • APIRequest
      • ItemUsageItems
      • Patch
      • ResetCursor
      • ServiceDependency
      • SignInAttempt
      • SignInAttemptItems
      • UUID
      • User
    • Response
      • GenericErrorResponse
      • IntrospectResponse
      • ItemUsagesResponse
      • SignInAttemptsResponse
      • UnauthorizedErrorResponse
    • RequestBodies
      • CursorRequest
  1. Activity

Retrieve a list of API Requests that have been made.

GET
/activity

请求参数

Query 参数

返回响应

🟢200成功
application/json
OK
Headers

Body

🟠401没有权限
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'http://localhost:8080/v1/activity'
响应示例响应示例
200 - 示例 1
[
    {
        "requestId": "d385ab22-0f51-4b97-9ecd-b8ff3fd4fcb6",
        "timestamp": "2019-08-24T14:15:22.123Z",
        "action": "READ",
        "result": "SUCCESS",
        "actor": {
            "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
            "account": "string",
            "jti": "string",
            "userAgent": "string",
            "requestIp": "string"
        },
        "resource": {
            "itemVersion": 0,
            "type": "ITEM",
            "vault": {
                "id": "string"
            },
            "item": {
                "id": "string"
            }
        }
    }
]

【1Password】API开发者 微信交流群

用微信扫右侧二维码,加入【1Password】API开发者 交流群,互助沟通

扫码加入交流群
修改于 2024-11-22 03:30:27
上一页
Retrieves sign-in attempts
下一页
Get all Vaults
Built with