1Password API
  1. api-v1
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
  1. api-v1

Retrieves item usages

POST
/api/v1/itemusages
api-v1
This endpoint requires your JSON Web Token to have the itemusages feature.
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location -g --request POST 'http://localhost:8080/v1/api/v1/itemusages'
响应示例响应示例
200 - 示例 1
{
  "cursor": "aGVsbG8hIGlzIGl0IG1lIHlvdSBhcmUgbG9va2luZyBmb3IK",
  "has_more": true
}

请求参数

无

返回响应

🟢200成功
application/json
Body
allOf {2} 
可选
An object wrapping cursor properties and a list of items usages
object 
可选
items
$ref(#/components/schemas/ItemUsage)[]
可选
Could not resolve '#/components/schemas/ItemUsage'
object (CursorCollection) 
可选
Common cursor properties for collection responses
cursor
string 
可选
Cursor to fetch more data if available or continue the polling process if required
示例值:
aGVsbG8hIGlzIGl0IG1lIHlvdSBhcmUgbG9va2luZyBmb3IK
has_more
boolean 
可选
Whether there may still be more data to fetch using the returned cursor. If true, the subsequent request could still be empty.
🟠401401
🔴500500

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

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

扫码加入交流群
上一页
Performs introspection of the provided Bearer JWT token
下一页
Retrieves sign-in attempts
Built with