Skip to main content

AST Client Properties Error Codes (SubSystem 512)

SubSystemErrorCodeHttp CodeNameDetails and TroubleshootingConsole Message
512500500InternalAn unexpected error occurred, check for details in the logs"An unexpected error occurred"
512503503ServiceUnavailableThe service's availability was disrupted, look for details in the message."The service's availability was disrupted"
512status.code()statusGenericHttpErrorGeneral http error, look for details in the message and status code.message ?: status.reasonPhrase()
512400400BadRequestInvalid data found in the request. Check the response for additional details."Invalid data found in the request"
5124001400MissingFieldMissing required field in Json object. Ensure all the required fields available in the Json object, check the response for missing field"Missing required $location"
5124002400MalformedFieldMalformed field in Json object. Check the response for additional details"Malformed $locationAndReason"
5124003400BadPaginationBad pagination parameters. Check the query parameters that are used for pagination. Expected page >= 1 and 5 <= pageSize <= 100"Bad pagination parameters: Expected page >= 1 and 5 <= pageSize <= 100, " + "but got page = $page and pageSize = $pageSize"
5124004400BadFilterError while applying filter to access resources in storage. Check the query parameters that are used for filtering"Bad filter: '$filter': $reason"
5124005400MalformedBodyMalformed request body. Check the request body"Malformed request body" + (reason?.let { ": $it" } ?: "")
5124006406NotUpdatedPropertyProperty was not updated. Check for the existence of a property in the database or sql query parameters"Property was not updated"
5124007406NotCreatedPropertyProperty was not created. Check the correctness of the property that needs to be saved to the database"Property was not created"
5124008406NotDeletedPropertyProperty was not deleted. Check for the existence of a property in the database or sql query parameters"Property was not deleted"
5124009404NotFoundPropertyNo Property was found for the specified tenant. Check for the existence of a property in the database or sql query parameters"No Property was found for tenant <$tenant>"
5124011406ReadOnlyPropertyReadOnly Property can't be changed or deleted. Check the readOnly flag of the property. If it is active, the property cannot be manipulated"ReadOnly Property can't be changed or deleted"
5124012406InvalidSecretIdInvalid SessionKey Id value. Check if the received key from the storage is correctmessage: String = "Invalid SessionKey Id value"
5124013406NonExistSecretIdNon-exist SessionKey Id. Check for the existence of key in the storagemessage: String = "Non-exist SessionKey Id"
5124014406DecryptionSessionKeyError at decrypting Session Key. Check the correctness of the received key or its presence. Check the response for additional detailsmessage: String = "Error at decrypting Session Key"
5124015406EncryptSessionKeyErrorError at encrypting Session Key. Check the correctness of the received key or its presence. Check the response for additional detailsmessage: String = "Error at encrypting Session Key"
5124031403MissingUserIdThe userId is missing in the access token. Check the access token from the request"The userId is missing in the access token"
5124032403MissingUserNameThe user name is missing in the access token. Check the access token from the request"The user name is missing in the access token"
5124033403MissingClientIdThe AST Client ID is missing in the access token. Check the access token from the request"The AST Client ID is missing in the access token"
5124034403InvalidRoleInvalid user role. Check the user and his roles"The user does not have valid permission to access the resource"
5124035409DuplicatePropertyDuplicate property. Check the name of the property you are saving, as a property with that name already exists and will be overwritten"Duplicate property"
5124036400WrongUserForPropertyProperty for wrong userId. Check if the property belongs to the user, manipulating a property that doesn't belong to it causes an error"Property for wrong userId"
5124037400WrongClientForPropertyProperty for wrong astClientId. Property for wrong userId. Check if the property belongs to the user, manipulating a property that doesn't belong to it causes an error"Property for wrong astClientId"
5124040403ConcurrentModificationThe property was concurrently modified. Check if the property is currently being modified elsewhere before manipulating it"The property was concurrently modified"
5124041403AccessDeniedCheck if you have all required rights to access this resource"The user does not have required rights to access the resource"
512401401UnauthorizedBearer header was missing on the request. Ensure all the required fields are present and correct in request"A proper Authorization: Bearer header was invalid or missing on the request"
5124011401TlsClientAuthMissingNo 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"
5125001500DbErrorDatabase Error. Check the availability and functionality of the database. See service log for additional details"Database Error" + (details?.let { ": $it" } ?: "")
5125002500KafkaErrorKafka Error. Check the availability and functionality of the kafka service. See service log for additional details"Kafka Error" + (details?.let { ": $it" } ?: "")
5125003500RedisErrorRedis Error. Check the availability and functionality of the redis service. See service log for additional details"Redis Error" + (details?.let { ": $it" } ?: (": Error occurred at getting sessionKey from storage"))
51250010500UnknownTopicRoutingKeyEncountered 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'"
51250020500TrustStoreDoesNotExistDatabase Error. Truststore does not exist"The configured $purpose truststore file at <$file> does not exist"
51250021500TrustStoreRequiredDatabase Error. Truststore is required"A trust store is required for SSL mode $mode, but non is configured"