We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When attempting to call $apiInstance->getAllTransactions() with the parameter types set to 'WITHDRAWAL', the following error occurs:
$apiInstance->getAllTransactions()
Invalid value 'NOT_APPLICABLE' for 'status', must be one of 'PENDING', 'COMPLETED', 'CANCELED', 'REVERSED'
The error arises because the API response contains a status value of 'NOT_APPLICABLE', which is not currently handled by the FeeResponse file.
'NOT_APPLICABLE'
FeeResponse
To resolve this issue, we need to update the FeeResponse file to include support for the 'NOT_APPLICABLE' status.
The FeeResponse file should be updated to recognize and handle the 'NOT_APPLICABLE' status returned by the API.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem:
When attempting to call
$apiInstance->getAllTransactions()
with the parameter types set to 'WITHDRAWAL', the following error occurs:Cause:
The error arises because the API response contains a status value of
'NOT_APPLICABLE'
, which is not currently handled by theFeeResponse
file.Proposed Solution:
To resolve this issue, we need to update the
FeeResponse
file to include support for the'NOT_APPLICABLE'
status.Steps to Reproduce:
$apiInstance->getAllTransactions()
with the types parameter set to 'WITHDRAWAL'.Expected Behavior:
The FeeResponse file should be updated to recognize and handle the 'NOT_APPLICABLE' status returned by the API.
The text was updated successfully, but these errors were encountered: