getPendingCredentials

Retrieves credentials that are pending deployment or have failed deployment.

Returns all credentials with deployment status PENDING or FAILED. These are credentials that have not been confirmed on-chain and may need attention (retry, sync, or delete).

Return

List of pending and failed credentials (empty if none exist)

Throws

if reading fails

Example:

val pendingCredentials = manager.getPendingCredentials()
for (cred in pendingCredentials) {
println("${cred.credentialId}: ${cred.deploymentStatus}")
}