-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
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
Correct HTTP Request Structure #2
Open
indepndnt
wants to merge
20
commits into
ananelson:main
Choose a base branch
from
indepndnt:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…ss' arguments to 'cls' on class methods
…-search for config file; update tests for pytest
…ith separate 'where' args;
…go-style Manager `.objects` on models
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
In the process of upgrading CiviCRM from version 3.3 (on Drupal) to 5.46.3 (on Wordpress), we discovered
that the request structure recommended in the API Explorer (and implemented by civipy) is inconsistent
with the documentation, even though it works
in version 3.3 running on Drupal 7.
Issue
When making a REST API v3 request, an error is returned. In researching the issue, the thing I’ve seen in
common with other folks seeing this issue is running CiviCRM on Wordpress.
Example:
Request
{REST_BASE}?entity=Contribution&action=GET&api_key={USER_KEY}&debug=1&key={SITE_KEY}&json=%7B%22sequential%22%3A+1%2C+%22trxn_id%22%3A+%22{trxn_id}%22%7D
Response
civipy.base.CiviAPIError: {'is_error': 1, '0': 'error_message', '1': 'Unable to decode supplied JSON.'}
Solution
Correcting the call according to the documentation solves the issue. The difference is the
json
queryfield in the request URI: it should be set to 1, and the component fields added to the query as separate
fields.
This request structure works both on CiviCRM 3.3 on Drupal and CiviCrm 5.46.3 on Wordpress.
Example:
Request
{REST_BASE}?entity=Contribution&action=GET&api_key={USER_KEY}&debug=1&key={SITE_KEY}&json=1&sequential=1&trxn_id={trxn_id}
Response
{"is_error":0,"undefined_fields":["is_template","contribution_test","trxn_id"],"version":3,"count":1,"id":<...>,"values":[{<...>}],"xdebug":[]}