1Password Connect
  1. Schemas
1Password Connect
  • Activity
    • Retrieve a list of API Requests that have been made.
      GET
  • Health
    • Get state of the server and its dependencies.
      GET
    • Ping the server for liveness
      GET
  • Metrics
    • Query server for exposed Prometheus metrics
      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
    • Delete an Item
      DELETE
    • Get the details of an Item
      GET
    • Update a subset of Item attributes
      PATCH
    • Update an Item
      PUT
  • Files
    • Get all the files inside an Item
      GET
    • Get the details of a File
      GET
    • Get the content of a File
      GET
  • Schemas
    • Schemas
      • APIRequest
      • ErrorResponse
      • Field
      • File
      • FullItem
      • GeneratorRecipe
      • Item
      • Patch
      • ServiceDependency
      • Vault
  1. Schemas

APIRequest

Represents a request that was made to the API. Including what Token was used and what resource was accessed.

{
    "action": "READ",
    "actor": {
        "account": "string",
        "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
        "jti": "string",
        "requestIp": "string",
        "userAgent": "string"
    },
    "requestId": "d385ab22-0f51-4b97-9ecd-b8ff3fd4fcb6",
    "resource": {
        "item": {
            "id": "string"
        },
        "itemVersion": 0,
        "type": "ITEM",
        "vault": {
            "id": "string"
        }
    },
    "result": "SUCCESS",
    "timestamp": "2019-08-24T14:15:22Z"
}
Built with