Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 728 Bytes

SetUserApiKeyRequest.md

File metadata and controls

20 lines (14 loc) · 728 Bytes

TrieveRubyClient::SetUserApiKeyRequest

Properties

Name Type Description Notes
name String The name which will be assigned to the new api key.
role Integer The role which will be assigned to the new api key. Either 0 (read), 1 (read and write at the level of the currently auth'ed user). The auth'ed user must have a role greater than or equal to the role being assigned which means they must be an admin (1) or owner (2) of the organization to assign write permissions with a role of 1.

Example

require 'trieve_ruby_client'

instance = TrieveRubyClient::SetUserApiKeyRequest.new(
  name: null,
  role: null
)