Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 838 Bytes

File metadata and controls

24 lines (18 loc) · 838 Bytes

TalonOne::CreateManagementKey

Properties

Name Type Description Notes
name String Name for management key.
expiry_date Time The date the management key expires.
endpoints Array<Endpoint> The list of endpoints that can be accessed with the key
allowed_application_ids Array<Integer> A list of Application IDs that you can access with the management key. An empty or missing list means the management key can be used for all Applications in the account. [optional]

Example

require 'talon_one_sdk'

instance = TalonOne::CreateManagementKey.new(
  name: My generated key,
  expiry_date: 2023-08-24T14:00:00Z,
  endpoints: null,
  allowed_application_ids: [1, 2, 3]
)