diff --git a/CHANGELOG.md b/CHANGELOG.md
index f07abce..e5480fb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). Please note this changelog affects 
 this package and not the Oxxa API.
 
+## [2.9.0]
+
+### Added
+
+- Add error code for when the Oxxa helpdesk is needed.
+
 ## [2.8.1]
 
 ### Fixed
diff --git a/src/Enum/StatusCode.php b/src/Enum/StatusCode.php
index c9159bb..93f122f 100644
--- a/src/Enum/StatusCode.php
+++ b/src/Enum/StatusCode.php
@@ -97,4 +97,6 @@ class StatusCode
     public const STATUS_DOMAIN_TRANSFER_UNABLE_LOCK = 'XMLERR 66';
 
     public const STATUS_INSUFFICIENT_FUNDS = 'XMLERR 87';
+
+    public const STATUS_HELPDESK_NEEDED = 'XMLERR 184';
 }
diff --git a/src/Oxxa.php b/src/Oxxa.php
index cd100c5..fe16f69 100644
--- a/src/Oxxa.php
+++ b/src/Oxxa.php
@@ -15,7 +15,7 @@ class Oxxa implements OxxaClient
 {
     private const TIMEOUT = 180;
 
-    private const VERSION = '2.8.1';
+    private const VERSION = '2.9.0';
 
     private const USER_AGENT = 'oxxa-api-client/'.self::VERSION;