Actions40
- Account Actions
- Contact Actions
- Meter Actions
- Opportunity Actions
- Other Actions
- Purchase Line Item Actions
- Revenue Line Item Actions
- Website Registration Actions
Overview
This node interacts with the SugarCRM API to retrieve multiple records from the "Website Registration" resource. Specifically, the "Get Many" operation fetches many website registration records, optionally filtered or limited by query parameters.
Common scenarios include:
- Retrieving a list of website registrations for reporting or analysis.
- Fetching registrations that match specific criteria using query parameters.
- Controlling the number of results returned or retrieving all available records.
Practical example:
- A marketing team wants to export all website registrations submitted in the last month. They can use this node to get all records without limit or specify query parameters to filter by date.
Properties
| Name | Meaning |
|---|---|
| Send Query Parameters | Whether to send query parameters with the request (true/false). |
| Specify Query Parameters | How to specify query parameters: "Using Fields Below" (individual name-value pairs) or "JSON". |
| Query Parameters | List of query parameters as individual name-value pairs (used if "Using Fields Below" selected). |
| Query Parameters (JSON) | Query parameters specified as a JSON object (used if "JSON" selected). |
| Send JSON Body | Whether to send a JSON body with the request (true/false). |
| JSON Body | JSON object to send as the request body (if "Send JSON Body" is true). |
| Return All | Whether to return all matching results (true) or limit the number of results (false). |
| Limit | Maximum number of results to return (used if "Return All" is false). |
Output
The output is an array of JSON objects representing the retrieved website registration records. Each item corresponds to one record fetched from SugarCRM.
- The
jsonfield contains the record data as returned by the SugarCRM API. - No binary data output is produced by this operation.
Dependencies
- Requires an API key credential for SugarCRM with appropriate permissions.
- The node uses OAuth2 password grant flow to authenticate and obtain an access token.
- The base URL and credentials must be configured in the node's credential settings.
Troubleshooting
- No records found or unexpected API response structure: This error occurs if the API returns no records or the response format is not as expected. Check query parameters and ensure the resource has data.
- Authentication errors: If authentication fails, verify the API credentials (client ID, client secret, username, password) are correct and have sufficient permissions.
- Invalid JSON in query parameters or JSON body: Ensure any JSON input fields contain valid JSON syntax.
- Limit and Return All conflicts: If "Return All" is false but the limit is set too low, fewer records than expected may be returned.