Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/ImportAccountsRequest.md
2025-04-01 09:23:12 -04:00

1.0 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-import-accounts-request ImportAccountsRequest ImportAccountsRequest ImportAccountsRequest pythonsdk
python
Python
sdk
ImportAccountsRequest
V2025ImportAccountsRequest
/tools/sdk/python/v2025/models/import-accounts-request
SDK
Software Development Kit
ImportAccountsRequest
V2025ImportAccountsRequest

ImportAccountsRequest

Properties

Name Type Description Notes
file bytearray The CSV file containing the source accounts to aggregate. [optional]
disable_optimization str Use this flag to reprocess every account whether or not the data has changed. [optional]
}

Example

from sailpoint.v2025.models.import_accounts_request import ImportAccountsRequest

import_accounts_request = ImportAccountsRequest(
file=bytes(b'blah'),
disable_optimization='true'
)

[Back to top]