From be6504a90b9ce68e53070c5a31efe0f4fa896923 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Tue, 4 Nov 2025 16:43:04 +0000 Subject: [PATCH 1/8] Update api-reference/problems/exceed-max-withdraw-limit.mdx --- .../problems/exceed-max-withdraw-limit.mdx | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 api-reference/problems/exceed-max-withdraw-limit.mdx diff --git a/api-reference/problems/exceed-max-withdraw-limit.mdx b/api-reference/problems/exceed-max-withdraw-limit.mdx new file mode 100644 index 0000000..a441db3 --- /dev/null +++ b/api-reference/problems/exceed-max-withdraw-limit.mdx @@ -0,0 +1,21 @@ +--- +title: 400 - Exceed Max Withdraw Limit +--- + +An Exceed Max Withdraw Limit error is returned when a withdrawal request exceeds the maximum allowed withdrawal amount. + +For example, attempting to withdraw an amount greater than the configured maximum withdrawal limit for the profile or asset will result in this error. + +To resolve this error, reduce the withdrawal amount to be within the allowed maximum limit, or contact support to adjust the withdrawal limits if needed. + + +```json Example +{ + "detail": "withdrawal amount exceeds maximum limit", + "meta": {}, + "status": 400, + "title": "Exceed Max Withdraw Limit", + "type": "https://developer.paxos.com/docs/v2/problems/exceed-max-withdraw-limit" +} +``` + From 79fe8cf16764c1fc4d68da97202d650c1853a74c Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Tue, 4 Nov 2025 16:43:16 +0000 Subject: [PATCH 2/8] Update api-reference/problems/below-min-withdraw-limit.mdx --- .../problems/below-min-withdraw-limit.mdx | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 api-reference/problems/below-min-withdraw-limit.mdx diff --git a/api-reference/problems/below-min-withdraw-limit.mdx b/api-reference/problems/below-min-withdraw-limit.mdx new file mode 100644 index 0000000..fffa04c --- /dev/null +++ b/api-reference/problems/below-min-withdraw-limit.mdx @@ -0,0 +1,21 @@ +--- +title: 400 - Below Min Withdraw Limit +--- + +A Below Min Withdraw Limit error is returned when a withdrawal request is below the minimum allowed withdrawal amount. + +For example, attempting to withdraw an amount less than the configured minimum withdrawal limit for the profile or asset will result in this error. + +To resolve this error, increase the withdrawal amount to meet or exceed the minimum required limit. + + +```json Example +{ + "detail": "withdrawal amount is below minimum limit", + "meta": {}, + "status": 400, + "title": "Below Min Withdraw Limit", + "type": "https://developer.paxos.com/docs/v2/problems/below-min-withdraw-limit" +} +``` + From 9e67aa03ccab59dc3332fb1445e5f84a248364b8 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Tue, 4 Nov 2025 16:43:29 +0000 Subject: [PATCH 3/8] Update api-reference/problems/exceed-precision.mdx --- api-reference/problems/exceed-precision.mdx | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 api-reference/problems/exceed-precision.mdx diff --git a/api-reference/problems/exceed-precision.mdx b/api-reference/problems/exceed-precision.mdx new file mode 100644 index 0000000..7a88d51 --- /dev/null +++ b/api-reference/problems/exceed-precision.mdx @@ -0,0 +1,21 @@ +--- +title: 400 - Exceed Precision +--- + +An Exceed Precision error is returned when a request contains a numeric value with more decimal places than allowed for the specified asset or field. + +For example, attempting to create an order with an amount that has more decimal places than the asset's precision limit will result in this error. + +To resolve this error, round the value to the appropriate number of decimal places as defined by the asset's precision requirements. + + +```json Example +{ + "detail": "value exceeds allowed precision", + "meta": {}, + "status": 400, + "title": "Exceed Precision", + "type": "https://developer.paxos.com/docs/v2/problems/exceed-precision" +} +``` + From df0a4798d08b37fe9254e632ff4be3398b662f13 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Tue, 4 Nov 2025 16:43:43 +0000 Subject: [PATCH 4/8] Update api-reference/problems/market-conditions-prevented-execution.mdx --- .../market-conditions-prevented-execution.mdx | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 api-reference/problems/market-conditions-prevented-execution.mdx diff --git a/api-reference/problems/market-conditions-prevented-execution.mdx b/api-reference/problems/market-conditions-prevented-execution.mdx new file mode 100644 index 0000000..cc287e7 --- /dev/null +++ b/api-reference/problems/market-conditions-prevented-execution.mdx @@ -0,0 +1,21 @@ +--- +title: 403 - Market Conditions Prevented Execution +--- + +A Market Conditions Prevented Execution error is returned when current market conditions prevent the execution of a trade or order. + +For example, this error may occur during periods of extreme volatility, insufficient liquidity, or other market conditions that make it impossible to execute the requested operation at the specified parameters. + +To resolve this error, you may need to adjust your order parameters, wait for market conditions to stabilize, or request a new quote. + + +```json Example +{ + "detail": "current market conditions prevented execution", + "meta": {}, + "status": 403, + "title": "Market Conditions Prevented Execution", + "type": "https://developer.paxos.com/docs/v2/problems/market-conditions-prevented-execution" +} +``` + From 1a8d5cc043bfce53902c32907403ba6f6b1f7830 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Tue, 4 Nov 2025 16:43:57 +0000 Subject: [PATCH 5/8] Update api-reference/problems/minimum-commission-exceeds-notional.mdx --- .../minimum-commission-exceeds-notional.mdx | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 api-reference/problems/minimum-commission-exceeds-notional.mdx diff --git a/api-reference/problems/minimum-commission-exceeds-notional.mdx b/api-reference/problems/minimum-commission-exceeds-notional.mdx new file mode 100644 index 0000000..f12748e --- /dev/null +++ b/api-reference/problems/minimum-commission-exceeds-notional.mdx @@ -0,0 +1,21 @@ +--- +title: 400 - Minimum Commission Exceeds Notional +--- + +A Minimum Commission Exceeds Notional error is returned when the minimum commission required for a trade exceeds the notional value of the trade itself. + +For example, attempting to execute a very small trade where the minimum commission fee would be greater than the trade amount will result in this error. + +To resolve this error, increase the trade size so that the notional value exceeds the minimum commission requirement. + + +```json Example +{ + "detail": "minimum commission exceeds notional value", + "meta": {}, + "status": 400, + "title": "Minimum Commission Exceeds Notional", + "type": "https://developer.paxos.com/docs/v2/problems/minimum-commission-exceeds-notional" +} +``` + From ba9a0ca15d705f0245634c3ae58512de7550063b Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Tue, 4 Nov 2025 16:44:11 +0000 Subject: [PATCH 6/8] Update api-reference/problems/notional-value-too-large.mdx --- .../problems/notional-value-too-large.mdx | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 api-reference/problems/notional-value-too-large.mdx diff --git a/api-reference/problems/notional-value-too-large.mdx b/api-reference/problems/notional-value-too-large.mdx new file mode 100644 index 0000000..afb693a --- /dev/null +++ b/api-reference/problems/notional-value-too-large.mdx @@ -0,0 +1,21 @@ +--- +title: 403 - Notional Value Too Large +--- + +A Notional Value Too Large error is returned when the total notional value of a trade or order exceeds the maximum allowed limit. + +For example, attempting to create an order with a notional value that exceeds the configured maximum for the profile, market, or trading limits will result in this error. + +To resolve this error, reduce the order size to bring the notional value within the allowed limits, or contact support to adjust trading limits if needed. + + +```json Example +{ + "detail": "notional value exceeds maximum allowed", + "meta": {}, + "status": 403, + "title": "Notional Value Too Large", + "type": "https://developer.paxos.com/docs/v2/problems/notional-value-too-large" +} +``` + From 984d7640426a2c739ccef2f6f5d27ed53dc20a42 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Tue, 4 Nov 2025 16:44:23 +0000 Subject: [PATCH 7/8] Update api-reference/problems/unavailable-market.mdx --- api-reference/problems/unavailable-market.mdx | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 api-reference/problems/unavailable-market.mdx diff --git a/api-reference/problems/unavailable-market.mdx b/api-reference/problems/unavailable-market.mdx new file mode 100644 index 0000000..deb6a2a --- /dev/null +++ b/api-reference/problems/unavailable-market.mdx @@ -0,0 +1,21 @@ +--- +title: 403 - Unavailable Market +--- + +An Unavailable Market error is returned when attempting to trade on a market that is currently unavailable or disabled. + +For example, this error may occur when a market is temporarily closed for maintenance, suspended due to regulatory requirements, or permanently disabled. + +To resolve this error, check the market status and wait for the market to become available, or select a different available market for your trade. + + +```json Example +{ + "detail": "market is currently unavailable", + "meta": {}, + "status": 403, + "title": "Unavailable Market", + "type": "https://developer.paxos.com/docs/v2/problems/unavailable-market" +} +``` + From 01b2af15b7547f42a2bc788371e04949417ead95 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Tue, 4 Nov 2025 16:44:42 +0000 Subject: [PATCH 8/8] Update docs.json --- docs.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs.json b/docs.json index a92855d..b99d36a 100644 --- a/docs.json +++ b/docs.json @@ -956,10 +956,17 @@ { "group": "Problems", "pages": [ + "api-reference/problems/already-exists", + "api-reference/problems/below-min-withdraw-limit", + "api-reference/problems/exceed-max-withdraw-limit", + "api-reference/problems/exceed-precision", "api-reference/problems/expired", "api-reference/problems/insufficient-funds", + "api-reference/problems/market-conditions-prevented-execution", + "api-reference/problems/minimum-commission-exceeds-notional", + "api-reference/problems/notional-value-too-large", "api-reference/problems/rejected", - "api-reference/problems/already-exists" + "api-reference/problems/unavailable-market" ] } ]