Skip to main content

PutIdentityCollectorV1409Response

Properties

NameTypeDescriptionNotes
detail_codestrFine-grained error code providing more detail of the error.[optional]
tracking_idstrUnique tracking id for the error.[optional]
messages[]PutIdentityCollectorV1409ResponseMessagesInnerGeneric localized reason for error.[optional]
}

Example

from sailpoint.data_access_security.models.put_identity_collector_v1409_response import PutIdentityCollectorV1409Response

put_identity_collector_v1409_response = PutIdentityCollectorV1409Response(
detail_code='409.1 Conflict',
tracking_id='e7eab60924f64aa284175b9fa3309599',
messages=[
sailpoint.data_access_security.models.put_identity_collector_v1_409_response_messages_inner.putIdentityCollectorV1_409_response_messages_inner(
locale = 'en-US',
locale_origin = 'DEFAULT',
text = 'An identity collector with the same name already exists.', )
]
)

[Back to top]