Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/LauncherRequest.md
2025-08-14 17:03:25 +00:00

1.5 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2025-launcher-request LauncherRequest LauncherRequest LauncherRequest pythonsdk
python
Python
sdk
LauncherRequest
V2025LauncherRequest
/tools/sdk/python/v2025/models/launcher-request
SDK
Software Development Kit
LauncherRequest
V2025LauncherRequest

LauncherRequest

Properties

Name Type Description Notes
name str Name of the Launcher, limited to 255 characters [required]
description str Description of the Launcher, limited to 2000 characters [required]
type Enum [ 'INTERACTIVE_PROCESS' ] Launcher type [required]
disabled bool State of the Launcher [required]
reference LauncherRequestReference [optional]
config str JSON configuration associated with this Launcher, restricted to a max size of 4KB [required]
}

Example

from sailpoint.v2025.models.launcher_request import LauncherRequest

launcher_request = LauncherRequest(
name='Group Create',
description='Create a new Active Directory Group',
type='INTERACTIVE_PROCESS',
disabled=False,
reference=sailpoint.v2025.models.launcher_request_reference.LauncherRequest_reference(
                    type = 'WORKFLOW', 
                    id = '2fd6ff94-2081-4d29-acbc-83a0a2f744a5', ),
config='{"workflowId" : "6b42d9be-61b6-46af-827e-ea29ba8aa3d9"}'
)

[Back to top]