Skip to main content

Errorbody

Properties

NameTypeDescriptionNotes
detail_codestrMachine-readable error code returned by the Intelligence service.[optional]
messagestrHuman-readable explanation of the error suitable for client logging.[optional]
}

Example

from sailpoint.intelligence.models.errorbody import Errorbody

errorbody = Errorbody(
detail_code='IDC_BAD_REQUEST',
message='The filters query parameter is required and cannot be empty.'
)

[Back to top]