Skip to main content

BusinessApplication

A Business Application groups machine identities (for example AI agents or applications) under a common owner and sanctioned status, either discovered from a source or defined by an administrator.

Properties

NameTypeDescriptionNotes
idstrBusiness Application ID. Assigned by the service on create.[optional] [readonly]
namestrHuman-readable display name. Must be unique within the tenant.[required]
descriptionstrFree-text description of the Business Application.[optional]
vendorstrVendor or publisher of the Business Application.[optional]
signatures[]BusinessApplicationSignatureSignatures used to automatically correlate machine identities to this Business Application. Modifying this field requires the custom Business Application feature to be enabled.[optional]
ownerBusinessApplicationOwner[optional]
additional_owners[]BusinessApplicationAdditionalOwnersInnerAdditional (secondary) owners of the Business Application.[optional]
sanctioned_statusSanctionedStatusSanctioned status of the Business Application. Defaults to UNKNOWN.[optional]
originBusinessApplicationOrigin[optional] [readonly]
sourceBusinessApplicationSource[optional]
createddatetimeTime the Business Application was created.[optional] [readonly]
modifieddatetimeTime the Business Application was last modified.[optional] [readonly]
}

Example

from sailpoint.business_applications.models.business_application import BusinessApplication

business_application = BusinessApplication(
id='a1b2c3d4-e5f6-7890-abcd-ef1234567890',
name='Cursor',
description='AI coding assistant used by the platform engineering team.',
vendor='Cursor',
signatures=[
sailpoint.business_applications.models.business_application_signature.Business Application Signature(
type = 'AI Agent',
name = 'cursor', )
],
owner=sailpoint.business_applications.models.business_application_owner.BusinessApplication_owner(),
additional_owners=[
null
],
sanctioned_status='SANCTIONED',
origin='CUSTOM',
source=sailpoint.business_applications.models.business_application_source.BusinessApplication_source(),
created='2026-01-15T13:45:12.312Z',
modified='2026-02-20T09:31:47.882Z'
)

[Back to top]