Skip to main content

AST Client Management Error Codes (SubSystem 511)

SubSystemErrorCodeHttp CodeNameDetails and TroubleshootingConsole Message
511500500InternalErrorAn unexpected error occurred, check for details in the logs."An unexpected error occurred"
511503503ServiceUnavailableThe service's availability was disrupted, look for details in the message."The service's availability was disrupted"
511status.code()statusGenericHttpErrorGeneral http error, look for details in the message and status code.message ?: status.reasonPhrase()
511401401UnauthorizedBearer header was missing on the request. Ensure all the required fields are present and correct in request"A proper Authorization: Bearer header was missing on the request"
5114011401TlsClientAuthMissingNo valid client certificate provided. Ensure client certificate is present in the request and valid."TLS Client Authentication is required but was missing on the request"
511400400BadRequestInvalid data found in the request. Check the response for additional details."Invalid data found in the request"
5114001400MissingFieldMissing required field in Json object. Ensure all the required fields available in the Json object, check the response for missing field"Missing required $location"
5114002400MalformedFieldMalformed field in Json object. Check the response for additional details"Malformed $locationAndReason"
5114003400MalformedBodyMalformed request body. Check the request body"Malformed request body" + (reason?.let { ": $it" } ?: "")
5114004400BadFilterError while applying filter to access resources in storage. Check the query parameters that are used for filtering"Bad filter: '$filter': $reason"
5114041404ClientNotFoundThe client with required ID was not found. Check if a client with the required ID exists in the database"The client with ID <$astClientId> was not found"
5114041404UserNotFoundThe user with required ID was not found. Check if a user with the required ID exists in the database"The user with ID <$userId> was not found"
5114042404LinkedUsersNotFoundLinked users for the client with required ID were not found. Check if there are users associated with a client with a given ID in the database"Linked users for the client with ID <$astClientId> were not found"
5114043404LinkedClientsNotFoundLinked clients for the user with required ID and filter were not found. Check if there are clients associated with a user with a given ID in the database or check filters"Linked clients for the user with ID <$userId> ${if (filter != null) "and filter <$filter> " else " "}were not found"
5114044404UserLinkNotFoundUser link for the user with required ID and for the client with required ID was not found. Check links between required user and client in the database"User link for the user with ID <$userId> and for the client with ID <$astClientId> was not found"
5114044404UserMultiLinkNotFoundUser link for the user with required ID and for the clients with required IDs was not found. Check links between required user and clients in the database"User link for the user with ID <$userId> and for the clients with IDs <$astClientIds> was not found"
5114045406ClientAlreadyLockedCurrent client already locked. Check client locking status in the database"Current client already locked."
5114046406ClientNotLockedCurrent client not locked and unlock operation cannot be performed. Check client locking status in the database"Current client not locked and unlock operation cannot be performed."
5114048409LocalesDuplicateLocales already exist for tenantID, userID and clientID. Check locales for for tenantID, userID and clientID in the database"Locales already exist for tenantID, userID and clientID."
5114049304LocalesNotUpdatedPreferred user's locales was not updated. Check service and database availability"Preferred user's locales was not updated."
5114050403ClientIsLinkedClient is linked to user and cannot be deleted. Check all client links before deleting"Client is linked to user and cannot be deleted."
5114051404LocalesNotFoundNo locales found"No locales found"
5114052404ClientsNotFoundClients not found. Check if a clients exist."Clients not found. IDs: ${clientIds.joinToString()}"
5114053HttpResponseStatus.UNPROCESSABLE_ENTITYUnprocessableEntityUnprocessable entitymessage: String? = null
5115001500DbErrorDatabase Error. Check the availability and functionality of the database. See service log for additional details"Database Error" + (details?.let { ": $it" } ?: "")
5115002500KafkaErrorKafka Error. Check the availability and functionality of the kafka service. See service log for additional details"Kafka Error" + (details?.let { ": $it" } ?: "")
5115003503KafkaDownKafka service is unavailable. Check the availability and functionality of the kafka service. See service log for additional details"Kafka is down. This operation cannot be performed."
51150010500UnknownTopicRoutingKeyEncountered an outbox item with the unknown topic routing key. Check topic routing key of the required OutboxItem in the database. See service log for additional details"Encountered an outbox item with the unknown topic routing key '$key'"