Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 1.24 KB

CreateApprovalRequestRequest.md

File metadata and controls

30 lines (24 loc) · 1.24 KB

LaunchDarklyApi::CreateApprovalRequestRequest

Properties

Name Type Description Notes
resource_id String String representation of the resource specifier
comment String Optional comment describing the approval request [optional]
description String A brief description of the changes you're requesting
instructions Array<Hash>
notify_member_ids Array<String> An array of member IDs. These members are notified to review the approval request. [optional]
notify_team_keys Array<String> An array of team keys. The members of these teams are notified to review the approval request. [optional]
integration_config Hash<String, Object> [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::CreateApprovalRequestRequest.new(
  resource_id: proj/projKey:env/envKey:flag/flagKey,
  comment: optional comment,
  description: Requesting to update targeting,
  instructions: null,
  notify_member_ids: [&quot;1234a56b7c89d012345e678f&quot;],
  notify_team_keys: [&quot;example-reviewer-team&quot;],
  integration_config: null
)