1Password Connect
  1. Activity
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
  1. Activity

Retrieve a list of API Requests that have been made.

GET
/activity
Activity
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/activity'
Response Response Example
200 - Example 1
[
  {
    "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"
  }
]

Request

Query Params
limit
integer 
optional
How many API Events should be retrieved in a single request.
offset
integer 
optional
How far into the collection of API Events should the response start

Responses

🟢200OK
application/json
Body
array of:
action
enum<string> 
optional
Allowed values:
READCREATEUPDATEDELETE
actor
object 
optional
account
string 
optional
id
string <uuid>
optional
jti
string 
optional
requestIp
string 
optional
userAgent
string 
optional
requestId
string <uuid>
optional
The unique id used to identify a single request.
resource
object 
optional
item
object 
optional
itemVersion
integer 
optional
type
enum<string> 
optional
Allowed values:
ITEMVAULT
vault
object 
optional
result
enum<string> 
optional
Allowed values:
SUCCESSDENY
timestamp
string <date-time>
read-onlyoptional
The time at which the request was processed by the server.
🟠401Invalid or missing token
Modified at 2022-09-02 07:10:37
Next
Get state of the server and its dependencies.
Built with