Raisely is a fundraising platform that enables organizations to create and manage online fundraising campaigns.
Raisely is a fundraising platform that enables organizations to create and manage online fundraising campaigns. On Nagent, Raisely is exposed as a fully-configurable fundraising integration that any agent can call — 61 actions, and API key authentication. No code is required to wire Raisely into your workflow — connect it once via the External Integrations panel and reuse it across every agent you build.
Agent builders use Raisely to automate the kinds of tasks fundraising teams previously handled manually. Concrete examples — each one is a single agent step in Nagent — include:
Every action and trigger is paired with a structured input/output schema (visible in the sections below), so when you wire Raisely into Helix — our agentic agent builder — the editor knows exactly what each step expects and produces. Configure once, deploy anywhere across your Nagent agents.
Every operation an agent can call against Raisely, with input parameters and output schema. Drop these into any step of an agent built in Helix.
RAISELY_CHECK_PROFILE_URLTool to verify if a profile URL is available for a given campaign and get suggestions if unavailable. Use when creating a new profile to ensure the desired URL path is not already taken, or to get alternative path suggestions.
Input parameters
The profile path to check for availability (e.g., 'my-test-profile'). If provided, the endpoint will check if this specific path is available and return suggestions if not.
The profile name to use to generate and check a suggested path. If no 'url' is provided, this will be used to generate potential paths.
Profile type values for URL checking.
The UUID of the campaign to associate with the request. Required to check profile URL availability within a specific campaign context.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_CHECK_USERTool to check if a user is already registered to a campaign with a specific email address. Use when validating sign-up forms to prompt existing users to log in instead of creating duplicate accounts.
Input parameters
Data object containing the user information to check
UUID or public key of the campaign to check user registration against
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_CREATE_CAMPAIGNTool to create a new campaign in Raisely. Use when you need to create a new fundraising campaign or clone an existing one.
Input parameters
Fundraising goal in cents (e.g., 100000 for $1000.00)
The mode to start the campaign in. Use TEST for testing, LIVE for production.
Title of the campaign
Path of the campaign, campaign will become `path`.raisely.com. Must be unique.
The name of the theme to use for the campaign
Theme version. Must be 3.0.0
3 letter ISO currency code (e.g., USD, AUD, GBP)
Internal configuration for cloning campaigns.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_CREATE_DONATIONTool to record an offline donation in Raisely. Use when recording donations that were processed externally (outside of Raisely's payment flow). These donations are marked with type=OFFLINE to indicate they were processed elsewhere.
Input parameters
ID of the payment method used (from the payment gateway)
Date and time (ISO8601 format) the donation was received (for OFFLINE donations only)
Mode of donation - LIVE or TEST.
Type of donation. Use OFFLINE for donations processed externally
Email address of the donor
List of donation items associated with this donation
State or province of the donor
The payment token from the gateway
The total amount of the donation in cents (e.g., 5000 = $50.00)
The payment gateway used. Use OFFLINE for externally processed donations
Public custom fields as key-value pairs
Suburb or city of the donor
Country code (ISO 3166-1 alpha-2)
Message from the donor
Private custom fields as key-value pairs
Line 1 of the donor's address
Line 2 of the donor's address
3 letter currency code (e.g., USD, AUD, GBP)
The customer ID assigned by the payment gateway
Full name of the donor (alternative to providing firstName/lastName)
Last name of the donor
Postal code of the donor
Whether the donor wishes to remain anonymous
First name of the donor
Type of payment method used (e.g., APPLE_PAY, CARD, GOOGLE_PAY, BROWSER_PAY)
Phone number of the donor
Unique identifier for the profile to associate the donation with
Unique identifier for the campaign to associate the donation with
Preferred name or nickname of the donor
Gateway version of donation method, if any
Status of donation on SwiftAid.
Indicates if this transaction is set aside for an upcoming registration
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_CREATE_EXERCISE_LOGTool to create a new exercise log in Raisely. Use when you need to record physical activity data for a user, such as running, cycling, or swimming. Requires userUuid and profileUuid.
Input parameters
Additional contextual data related to this exercise log
ISO 8601 timestamp of when the exercise took place
Time elapsed in seconds
Completed measure in campaign unit
The type of exercise activity
Distance covered in meters
UUID of the user who performed the exercise
Source application of the exercise log (e.g., 'Strava')
UUID of the profile associated with this exercise log
Raw distance value (internal Raisely field)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_CREATE_INTERACTIONTool to create a new interaction in Raisely. Use when you need to record an interaction event. Either categoryUuid or categoryPath must be provided.
Input parameters
Detail object containing additional information about the interaction.
Returns the full record when authenticated.
The user the interaction should belong to.
The path of the category the interaction should belong to. This can be supplied instead of a categoryUuid.
The UUID of the category the interaction should belong to. Either categoryUuid or categoryPath is required.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_CREATE_POSTCreate a new post in Raisely. Use when you need to add a blog post or update to a profile or campaign.
Input parameters
Content/body of the post. May contain HTML formatting.
Publication date of the post in ISO 8601 format.
URL path slug for the post. Must be unique. Used in the post's URL (e.g., 'my-first-post').
Title of the post.
URL to the post's main image or photo.
UUID of the profile that the post should be associated with.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_CREATE_PROMO_CODETool to create a new promo code in Raisely. Use when you need to add discount codes for campaigns, create promotional offers, or set up limited-time discounts.
Input parameters
The user-facing promo code (e.g., '10OFF', 'SUMMER2024'). Must be unique.
The current number of times this promo code has been claimed. Typically set to 0 for new codes.
ISO 8601 timestamp for when this promo code stops being available (e.g., '2022-12-31T23:59:59.999Z').
The maximum number of times this promo code can be claimed/used.
ISO 8601 timestamp for when this promo code starts being available (e.g., '2022-12-01T00:00:00.000Z').
The UUID of the campaign to associate this promo code with. Required field.
Type of discount to apply. PERCENTAGE for percentage-based discounts, FIXED for fixed amount discounts.
The discount value. For PERCENTAGE type, use whole numbers (e.g., 10 for 10%). For FIXED type, use amount in cents (e.g., 1500 for $15.00).
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_CREATE_WEBHOOKTool to add a new webhook to your Raisely account. Use when you need to subscribe to event notifications. By default, webhooks trigger for events across all campaigns unless a specific campaignUuid is provided.
Input parameters
The URL to send the webhooks to. Must be a valid HTTPS endpoint.
Array of events to forward to the webhook. At least one event is required.
A shared secret for use with your webhook. This will be included in the payload from Raisely so you can verify it is authentic.
Filter events to the specific campaign only. If omitted you will receive events for the whole Raisely account.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_DELETE_EXERCISE_LOGTool to delete an exercise log from Raisely. Use when you need to remove a specific exercise log record by its UUID. Returns the deleted exercise log data for confirmation.
Input parameters
The UUID of the exercise log to delete.
Returns the full record when authenticated. Set to true to include private fields in the response.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_DELETE_INTERACTIONTool to delete an existing custom interaction from Raisely. Use when you need to remove a custom interaction by its UUID. Cannot delete system-generated or read-only interactions.
Input parameters
The UUID of the interaction to delete.
If true, returns the full record when authenticated.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_DELETE_POSTTool to delete a post from the Raisely platform. Use when you need to permanently remove a blog post by its path or UUID. Returns the deleted post record upon successful deletion.
Input parameters
The uuid or path of the post to delete. This uniquely identifies the post record.
If true, returns the full record including private fields when authenticated. Defaults to false.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_DELETE_PROFILETool to archive a profile in Raisely. Archived profiles are hidden from the campaign but not permanently deleted. Use when a fundraiser wants to remove their profile from public view or when cleaning up campaign profiles.
Input parameters
The UUID or path of the profile to archive. This can be either the profile's unique identifier (UUID) or its URL path.
If true, returns the full record including private custom fields (requires authentication with proper permissions).
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_DELETE_WEBHOOKTool to delete a webhook from the Raisely platform. Use when you need to permanently remove a webhook subscription by its UUID. Returns the deleted webhook record upon successful deletion.
Input parameters
The uuid of the webhook to delete. This uniquely identifies the webhook record.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_GET_API_DOCSRetrieve a summary of the Raisely API documentation including metadata and sample endpoints. Returns the OpenAPI version, API info (title, version, description, contact), and a sample of available paths. Use this to understand the general structure of the Raisely API.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_GET_AUTHENTICATEAuthenticate a token to confirm it's valid and check the logged-in user. Use to verify token validity, get the authenticated user's details, and find the organisation UUID for future requests.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_GET_AVAILABLE_EVENTSTool to retrieve a list of available Raisely webhook events. Use when you need to know all event types Raisely can send via webhooks.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_GET_CAMPAIGNTool to retrieve a specific campaign from Raisely. Use when you need to get details for a single campaign by UUID, path, or domain.
Input parameters
If true, returns the full record when authenticated with proper permissions.
The UUID, path, or domain of the campaign to retrieve. Required parameter.
If true, also include any tags on this campaign record.
In private queries, removes the campaign.config to reduce request size.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_GET_CAMPAIGN_PROFILETool to retrieve the campaign profile for a Raisely campaign. The campaign profile is the top-level profile for all profiles in the campaign. It is hidden from the fundraising website, but will have the same name, path, and goal as your campaign.
Input parameters
The UUID, path, or domain of the campaign to retrieve the profile for. Required parameter.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_GET_CAMPAIGNSTool to retrieve a paginated list of campaigns from Raisely. Use when you need to list campaigns after obtaining a valid API token.
Input parameters
Full-text search term to filter campaigns.
Filter campaigns by their mode value.
Filter campaigns by their path value.
Field to sort by, e.g., 'createdAt'.
Number of records to return per page (minimum 1).
Sort direction: 'asc' or 'desc' (requires 'sort').
Number of records to skip before starting to return results.
If true, omit configuration block to reduce response size.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_GET_CAMPAIGNS_PROFILESList all fundraising profiles in a Raisely campaign. Profiles represent individuals, teams, or organizations participating in a fundraising campaign. Returns profile details including name, fundraising goal, amount raised, and associated user information. Supports search, pagination, and sorting. Use 'limit' and 'offset' for paging through large result sets.
Input parameters
Search query to filter profiles by name or other searchable fields.
Field to sort results by (e.g., 'createdAt', 'updatedAt', 'total', 'name'). Use with 'order' parameter.
Number of profiles to return per page. Defaults to 100 if not specified.
Sort direction: 'asc' for ascending or 'desc' for descending. Only applies when 'sort' is provided.
Number of records to skip for pagination. Use with 'limit' for paging through results.
When true and authenticated, returns private custom fields of profiles.
UUID or path of the campaign to list profiles for. You can use either the campaign's UUID (e.g., '123e4567-e89b-12d3-a456-426614174000') or its path/slug (e.g., 'my-campaign').
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_GET_EXERCISE_LOGRetrieve a specific exercise log by UUID from the Raisely platform. Use when you need to fetch detailed information about a particular exercise activity.
Input parameters
The UUID of the exercise log record to retrieve.
If true, returns the full record including private fields (requires authentication).
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_GET_INTERACTIONTool to retrieve a specific interaction from Raisely by its UUID. Use when you need to fetch details about a particular interaction record.
Input parameters
The UUID of the interaction record to retrieve. Must be a valid interaction identifier.
If true, returns the full interaction record including private fields (requires authentication).
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_GET_POSTTool to retrieve a specific post from the Raisely fundraising platform. Use when you need to fetch details of a single post by its UUID or path.
Input parameters
The UUID or path of the post to retrieve. This uniquely identifies the post.
If true, returns the full record when authenticated, including private fields.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_GET_PROFILERetrieves a specific fundraising profile from Raisely by UUID or path. Use this tool to get detailed information about an individual, team, or organisation profile including fundraising totals, activity metrics, goals, and associated user information. Set private=true to access private custom fields when authenticated with proper permissions.
Input parameters
The UUID or path of the profile to retrieve.
If true, returns the full record with private custom fields (requires authentication with proper permissions).
The UUID, path, or domain of the campaign to associate with the request. Provides campaign context for the profile.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_GET_PROFILESRetrieves a paginated list of fundraising profiles for a Raisely campaign. Use this tool to: - List all fundraisers (profiles) in a campaign - Search for specific profiles by name or description - Filter profiles by user or organisation - Rank profiles by amount raised, donor count, or activity metrics - Paginate through large result sets The 'campaign' parameter is required and accepts a campaign UUID, path, or domain.
Input parameters
Full-text search query to find profiles matching the given text (searches name, description, etc.).
Rank profiles by total amount raised. 'desc' returns highest fundraisers first, 'asc' returns lowest first.
Field to sort results by. Common values: 'createdAt', 'updatedAt', 'name', 'total', 'goal'.
UUID of the user to filter profiles by. Returns only profiles owned by this user.
Number of records to return per page. Defaults to 100. Maximum 100.
Sort direction: 'asc' for ascending or 'desc' for descending. Only applies when 'sort' is specified.
Number of records to skip for pagination. Defaults to 0.
If true, includes private custom fields in the response (requires authentication with proper permissions).
UUID, path, or domain of the campaign to filter profiles by. Required parameter.
Rank profiles by number of unique donors. 'desc' returns profiles with most donors first.
UUID of the organisation to filter profiles by.
Rank profiles by activity time (e.g., exercise duration). 'desc' returns longest activity time first.
Rank profiles by activity total (e.g., distance or steps tracked). 'desc' returns highest activity first.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_GET_USERTool to retrieve a specific user from Raisely by UUID. Use when you need detailed information about a single user including their contact details, admin status, and custom fields.
Input parameters
The UUID of the user to retrieve.
Returns the full record when authenticated. Includes private fields like email, phone number, and address.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_GET_USER_PROFILESTool to retrieve all profiles associated with a specific user. Use when you have a user UUID and need to list both public and optionally private profiles.
Input parameters
UUID of the user whose profiles are to be retrieved
Include private custom fields when true (requires permissions)
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_GET_USERSRetrieve a paginated list of users from the Raisely platform. Returns all users in the organisation with optional pagination, sorting, and private data. Use the 'private' parameter to include sensitive user details like email, address, and phone number. Default limit is 100 records. Use 'offset' for pagination through large result sets.
Input parameters
Field to sort by, e.g., 'createdAt'.
Number of records to return per page (minimum 1, default 100).
Sort order, either 'asc' (ascending) or 'desc' (descending).
Number of records to skip before starting to return results (minimum 0).
If true, include private custom fields in each user object.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_LIST_CAMPAIGN_DONATIONSTool to retrieve donations from a specific campaign in Raisely. Returns a paginated list of donations in descending order by creation date (most recent first) unless otherwise specified. Use this when you need to view donation history, track fundraising progress, or analyze donor patterns for a campaign.
Input parameters
Search query to find donation records matching the text.
Filter donations by their mode value (e.g., 'live', 'test').
Field name to sort results by (e.g., 'createdAt', 'amount'). Use with 'order' parameter.
Filter donations by their type value.
Filter by user UUID.
Maximum number of donations to return per page.
Sort direction: 'asc' for ascending or 'desc' for descending. Only applied if 'sort' is provided.
Number of records to skip for pagination.
Filter donations by their status value.
If true, returns the full donation record including private fields. Requires authentication.
Filter by profile path or UUID.
The UUID, path, or domain of the campaign to retrieve donations from.
Filter donations by currency code (e.g., 'USD', 'AUD').
Filter donations by their suspicious status flag.
Filter by organisation UUID.
Filter by subscription UUID.
Filter by matched donation config path or UUID.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_LIST_CAMPAIGN_PRODUCTSRetrieves all products available in a Raisely campaign. Use this to list tickets, merchandise, or other items configured for sale in a specific campaign. Products include details such as price, availability, and stock information.
Input parameters
UUID, path, or domain of the campaign to retrieve products from. Required parameter.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_LIST_CAMPAIGN_SUBSCRIPTIONSList all subscriptions for a specific Raisely campaign. Returns a paginated list of recurring donation subscriptions with detailed payment and subscriber information. Use when you need to retrieve subscriptions for a specific campaign by campaign UUID, path, or domain. Supports filtering by status, mode, source, user, and search queries, with sorting and pagination options.
Input parameters
Search query to filter subscriptions by matching text fields.
Filter subscriptions by mode value (e.g., 'live', 'test').
Field name to sort results by (e.g., 'createdAt', 'updatedAt', 'amount'). Use with 'order' parameter.
Filter subscriptions by user UUID.
Maximum number of subscriptions to return per page. Defaults to 100 if not specified.
Sort direction: 'asc' for ascending or 'desc' for descending. Only applies when 'sort' is provided.
Number of records to skip for pagination. Use with 'limit' for paging through results.
Filter subscriptions by source value: 'OFFLINE' or 'ONLINE'.
Filter subscriptions by status value (e.g., 'active', 'cancelled', 'paused').
When true and authenticated, returns the full subscription record including private fields.
Filter subscriptions by profile path or UUID.
The UUID, path, or domain of the campaign to retrieve subscriptions for. You can use the campaign's UUID (e.g., '123e4567-e89b-12d3-a456-426614174000'), path/slug (e.g., 'my-campaign'), or domain.
Filter subscriptions by user UUID to retrieve subscriptions for a specific user.
Filter subscriptions by organisation UUID.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_LIST_DONATIONSRetrieve donations from Raisely. Returns a paginated list of all donations in descending order of creation time (unless specified otherwise). Use this to view donation history, analyze giving patterns, or track specific donations by status, campaign, or user. Supports extensive filtering and sorting options.
Input parameters
Search query to find donation records matching this text.
Filter donations by mode value (e.g., 'live', 'test').
Field name to sort results by (e.g., 'createdAt', 'amount'). Use with 'order' parameter.
Filter donations by type value.
Filter donations by user UUID.
Maximum number of donations to return per page. Default is 100 if not specified.
Sort direction: 'asc' for ascending or 'desc' for descending. Only applied if 'sort' is also provided.
Number of records to skip for pagination. Use with limit for paging through results.
Filter donations by status value (e.g., 'paid', 'refunded').
If true, returns the full donation record including private fields. Requires authentication.
Filter donations by profile path or UUID.
Filter donations by campaign path or UUID.
Filter donations by currency value (e.g., 'USD', 'AUD').
Filter donations by suspicious flag. Set to true to show only suspicious donations.
Filter donations by organisation UUID.
Filter donations by subscription UUID.
Filter donations by matched donation config path or UUID.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_LIST_EXERCISE_LOGSRetrieve exercise logs from Raisely. Returns a paginated list of exercise logs you've previously created, in descending order of when they were created unless specified otherwise. Use this to view exercise activities, track fitness progress, or analyze activity data for fundraising campaigns.
Input parameters
Search query to find exercise logs matching the specified text.
Field name to sort results by (e.g., 'createdAt', 'date', 'distance', 'time'). Use with 'order' parameter.
Filter exercise logs by only returning logs matching the specified person uuid.
Maximum number of exercise logs to return per page.
Sort order for exercise logs.
Number of records to skip for pagination. Use with limit for paging through results.
If true, returns the full exercise log record including private fields. Requires authentication.
Filter exercise logs by only returning logs matching the specified profile (uuid or path).
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_LIST_INTERACTION_CATEGORIESTool to retrieve all interaction categories in the organisation from Raisely. Use when you need to list available interaction categories for categorizing supporter interactions, such as phone calls, emails, or meetings. Supports search, filtering, sorting, and pagination.
Input parameters
Search query to find interaction categories matching the given text.
The record attribute to sort by (e.g., 'createdAt', 'priority'). Use with 'order' parameter.
The number of records to return per page (minimum 1).
The direction to sort results: 'asc' for ascending or 'desc' for descending. Only applied if 'sort' is provided.
The pagination offset - number of records to skip before starting to return results.
If true, returns the full record when authenticated. Requires valid API token.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_LIST_INTERACTIONSTool to retrieve all interactions from Raisely. Use when you need to list user interactions, track engagement history, or audit activity records. Supports filtering by user, category, and text search with pagination and sorting options.
Input parameters
Search query to find records matching the specified text.
The record attribute to sort on (use in conjunction with 'order').
Filter by user uuid.
The number of records to limit per page (minimum 1).
The direction to sort: 'asc' for ascending or 'desc' for descending (only applied if 'sort' is also provided).
The pagination offset (in number of records to skip).
If true, returns the full record when authenticated. Requires valid bearer token.
Filter by interaction category uuid.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_LIST_ORDERSTool to retrieve all orders in a campaign from Raisely. Use when you need to list orders, view order details, or analyze purchase data. Supports filtering, sorting, and pagination.
Input parameters
Field name to sort results by (e.g., 'createdAt', 'date'). Use with 'order' parameter.
Maximum number of orders to return per page. Must be at least 1.
Sort direction: 'asc' for ascending or 'desc' for descending. Use with 'sort' parameter.
Number of records to skip for pagination. Use with limit for paging through results.
If true, returns the full order record including private fields. Requires authentication.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_LIST_POSTSTool to retrieve a list of posts you've previously created on Raisely. Posts are returned in descending order of creation date by default, unless you specify otherwise using the 'sort' and 'order' parameters.
Input parameters
Search query to find posts matching the given text. Searches across post content, title, and other fields.
The record attribute to sort by. Common options: 'createdAt', 'updatedAt', 'date', 'title'. Must be used with 'order'.
The number of posts to return per page. Use for pagination.
The direction to sort: 'asc' for ascending (oldest first), 'desc' for descending (newest first). Only applied if 'sort' is also provided.
The pagination offset (in number of records). Use with 'limit' to paginate through results.
Returns the full record when authenticated. Use when you need private/internal post data.
Filter posts by profile path or UUID. Returns only posts associated with the specified profile.
Filter posts by campaign path or UUID. Returns only posts associated with the specified campaign.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_LIST_PROFILE_DONATIONSRetrieves a paginated list of donations for a specific fundraising profile from Raisely. Returns donations in descending order of creation date by default (most recent first). Use this tool to: - View all donations received by a specific fundraiser profile - Track donation history for reporting and analysis - Search for specific donations by donor information - Filter donations by status, type, currency, or other criteria - Monitor suspicious or fraudulent donations for a profile
Input parameters
Search query to find donations matching the specified text (e.g., donor name, email).
Filter donations by their mode value (e.g., 'LIVE', 'TEST').
The UUID of the profile to retrieve donations for. This identifies the fundraiser profile.
The donation field to sort results by (e.g., 'createdAt', 'amount', 'date'). Use with 'order' parameter.
Filter donations by their type value (e.g., 'donation', 'ticket', 'registration').
Filter donations by user UUID. Returns only donations made by the specified user.
Maximum number of donation records to return per page. Defaults to API's default if not specified.
Sort direction for donation results.
Number of donation records to skip for pagination. Use with limit to page through results.
Filter donations by their status value (e.g., 'PAID', 'PENDING', 'FAILED', 'REFUNDED').
If true, returns the full donation record including private fields. Requires authentication.
Filter donations by profile path or UUID. Additional profile filter beyond the path parameter.
Filter donations by campaign path or UUID. Returns only donations associated with the specified campaign.
Filter donations by their currency code (e.g., 'USD', 'AUD', 'GBP').
Filter donations based on whether they are flagged as suspicious. True returns only suspicious donations.
Filter donations by organisation UUID.
Filter donations by subscription UUID. Returns only donations linked to a specific recurring subscription.
Filter donations by matched donation config path or UUID. Returns donations associated with a matching gift program.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_LIST_PROFILE_MEMBERSRetrieves a paginated list of all members belonging to a team profile in Raisely. Use this tool when you need to list all individual fundraisers who are members of a specific team. The 'path' parameter is required and accepts either the team profile's UUID or its path/slug.
Input parameters
Full-text search query to find member profiles matching the given text (searches name, description, etc.).
The UUID of the team profile to list members for. Required parameter. Note: This endpoint only accepts UUIDs, not path strings.
Field to sort results by. Common values: 'createdAt', 'updatedAt', 'name', 'total'. Use in conjunction with 'order' parameter.
Number of member records to return per page. Use for pagination.
Sort direction: 'asc' for ascending or 'desc' for descending. Only applied if 'sort' is also provided.
Number of member records to skip for pagination. Defaults to 0.
If true, returns the full record including private custom fields when authenticated with proper permissions.
The UUID, path, or domain of the campaign to associate with the request. Filters results to the specified campaign context.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_LIST_PROFILE_POSTSList all posts created by a specific profile in Raisely. Returns posts in descending order of creation date by default (newest first). Use when you need to retrieve a profile's activity feed or blog posts.
Input parameters
Search query to filter posts by title or content.
The uuid or path of the profile to list posts for. Can be a UUID (e.g., '123e4567-e89b-12d3-a456-426614174000') or a path slug (e.g., 'composio2').
Field name to sort results by (e.g., 'createdAt', 'updatedAt', 'title'). Use with 'order' parameter.
Maximum number of posts to return per page. Defaults to API default if not specified.
Sort direction: 'asc' for ascending (oldest first), 'desc' for descending (newest first). Only applies when 'sort' is provided.
Number of posts to skip for pagination. Use with 'limit' for paging through results.
When true and authenticated, returns the full record including private fields.
Filter by profile path or uuid. Additional filter on top of the path parameter.
Filter by campaign path or uuid to show only posts related to a specific campaign.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_LIST_PROMO_CODESTool to retrieve all promo codes in a campaign from Raisely. Use when you need to list available discount codes, view promo code details, or check usage statistics for promotional campaigns.
Input parameters
Maximum number of results to return. Default: 100.
Number of results to skip. Default: 0.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_LIST_SEGMENTSTool to retrieve all segments from Raisely. Use when you need to list previously created segments, view segment definitions, or filter segments by sharing status. Results are returned in descending order of creation time unless specified otherwise.
Input parameters
Search query to find segment records matching the specified text.
The record attribute to sort on (use in conjunction with 'order').
Filter by user uuid.
The number of records to limit per page (minimum 1).
The direction to sort: 'asc' for ascending or 'desc' for descending (only applied if 'sort' is also provided).
The pagination offset (in number of records to skip).
If true, returns the full record when authenticated. Requires valid bearer token.
Filter segments based on their isShared value.
Filter segments based on their isTemporary value.
Filter by organisation uuid.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_LIST_SUBSCRIPTIONS2Tool to retrieve subscriptions from Raisely. Returns a list of subscriptions you've previously created in descending order of creation time. Use when you need to view subscription history, analyze recurring donation patterns, or filter subscriptions by status, campaign, user, or other criteria.
Input parameters
Search query to find records matching.
Filter Subscription based on their mode value.
The record attribute to filter on (use in conjunction with `order`).
Filter by user uuid.
The number of records to limit per page.
The direction to sort (only applied if `sort` is also provided). 'asc' for Ascending or 'desc' for Descending.
The pagination offset (in number of records).
Filter subscriptions based on their source value of 'OFFLINE' or 'ONLINE'.
Filter Subscription based on their status value.
Returns the full record when authenticated.
Filter by profile path or uuid.
Filter by campaign path or uuid.
Filter Subscription based on their userUuid value.
Filter by organisation uuid.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_LIST_TAGSTool to retrieve the list of tags from Raisely. Use when you need to fetch all available tags for categorization or filtering purposes. Note that tags flagged as private will not be included unless the 'private' parameter is set to true (requires authentication).
Input parameters
Search query to find tag records matching this text.
Filter tags based on their path value.
The record attribute to sort on (use in conjunction with 'order' parameter).
Maximum number of tags to return per page.
The direction to sort: 'asc' for ascending or 'desc' for descending. Only applied if 'sort' is also provided.
Number of records to skip for pagination (in number of records).
If true, include tags flagged as private (requires authentication). Unlike other endpoints, any tags flagged as private will not be present unless this is set to 1/true.
Filter tags based on their recordType value.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_LIST_USER_DONATIONSRetrieves a paginated list of donations for a specific user from Raisely. Returns donations in descending order of creation date by default (most recent first). Use this to view all donations created by or associated with a specific user.
Input parameters
Search query to find donations matching the specified text (e.g., donor name, email).
Filter donations by their mode value (e.g., 'LIVE', 'TEST').
The donation field to sort results by (e.g., 'createdAt', 'amount', 'date'). Use with 'order' parameter.
Filter donations by their type value (e.g., 'donation', 'ticket', 'registration').
Filter donations by user UUID. Returns only donations made by the specified user.
The UUID of the user to retrieve donations for.
Maximum number of donation records to return per page. Defaults to API's default if not specified.
Sort direction for donation results.
Number of donation records to skip for pagination. Use with limit to page through results.
Filter donations by their status value (e.g., 'PAID', 'PENDING', 'FAILED', 'REFUNDED').
If true, returns the full donation record including private fields. Requires authentication.
Filter donations by profile path or UUID.
Filter donations by campaign path or UUID. Returns only donations associated with the specified campaign.
Filter donations by their currency code (e.g., 'USD', 'AUD', 'GBP').
Filter donations based on whether they are flagged as suspicious. True returns only suspicious donations.
Filter donations by organisation UUID.
Filter donations by subscription UUID. Returns only donations linked to a specific recurring subscription.
Filter donations by matched donation config path or UUID. Returns donations associated with a matching gift program.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_LIST_USER_INTERACTIONSRetrieves all interactions for a given user from Raisely. Returns a paginated list of user activities including donations, profile updates, comments, and other events. Use this to track user engagement and activity history. Supports filtering by category, search queries, and pagination options.
Input parameters
Search query to find records matching the given text.
Field name to sort results by (e.g., 'createdAt'). Use with 'order' parameter.
The UUID of the user to retrieve interactions for.
Maximum number of interaction records to return per page.
Sort direction: 'asc' for ascending or 'desc' for descending. Only applies when 'sort' is specified.
Number of records to skip for pagination.
If true, returns the full record including private fields when authenticated.
Filter interactions by interaction category UUID.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_LIST_USER_SUBSCRIPTIONSRetrieve subscriptions for a specific user from Raisely. Returns a paginated list of subscriptions in descending order of creation time (unless specified otherwise). Use this to view recurring donation patterns for a specific user, identify their active subscriptions, or track subscription history.
Input parameters
Search query to find subscription records matching this text.
Filter subscriptions by mode value (e.g., 'live', 'test').
Field name to sort results by (e.g., 'createdAt', 'updatedAt', 'amount'). Use with 'order' parameter.
Filter subscriptions by user UUID.
The UUID of the user whose subscriptions to retrieve.
Maximum number of subscriptions to return per page. Default is 100 if not specified.
Sort direction: 'asc' for ascending or 'desc' for descending. Only applied if 'sort' is also provided.
Number of records to skip for pagination. Use with limit for paging through results.
Filter subscriptions by source value of 'OFFLINE' or 'ONLINE'.
Filter subscriptions by status value (e.g., 'active', 'cancelled', 'paused').
If true, returns the full subscription record including private fields. Requires authentication.
Filter subscriptions by profile path or UUID.
Filter subscriptions by campaign path or UUID.
Filter subscriptions by userUuid value.
Filter subscriptions by organisation UUID.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_LIST_WEBHOOKSTool to retrieve the list of webhooks configured for a campaign. Use when you need to list all webhook subscriptions for a specific campaign after authenticating.
Input parameters
Search query to find records matching the specified criteria.
The record attribute to sort by (e.g., 'createdAt', 'url'). Use in conjunction with 'order' parameter.
The number of records to limit per page (minimum 1).
Sort order direction for webhook list.
The pagination offset in number of records (0-indexed).
If true, returns the full record when authenticated with proper permissions.
The UUID, path or domain of the campaign to retrieve webhooks for. Required parameter.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_MOVE_DONATIONTool to move a donation to a different profile in Raisely. Use when you need to reassign a donation from one fundraiser or campaign profile to another. The target profile may be in a different campaign.
Input parameters
The UUID of the donation to move
UUID of the profile to move the donation to
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_POST_LOGOUTTool to invalidate the current user's token and log out. Use when ending an authenticated Raisely session to ensure the token is invalidated.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_POST_USERSCreate a new user in Raisely. Fails if a user with the same email already exists. Use for adding new users to your organization's user database.
Input parameters
Email address of the user. Raisely uses this as a unique identifier and will deduplicate on email
State or province of the user
Public custom fields as key-value pairs
Suburb or city of the user
Country code (ISO 3166-1 alpha-2)
Private custom fields as key-value pairs (only visible to admins)
Line 1 of the user's address
Line 2 of the user's address
Full name of the user (alternative to providing firstName/lastName separately)
Last name of the user
URL to the user's profile photo
Postal code of the user
First name of the user
Phone number of the user
Preferred name or nickname for the user
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_UPDATE_CAMPAIGNTool to update an existing campaign in Raisely. Use when you need to modify campaign settings like name, goal, mode, or custom fields. The campaign can be identified by its UUID, path, or domain. Only provide the fields you want to update.
Input parameters
Campaign data fields to update
If true, return the full record including private fields when authenticated
The uuid, path, or domain of the campaign to update
If true, replace existing 'public' and 'private' values with the values provided. If false or omitted, merge with existing values
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_UPDATE_CAMPAIGN_CONFIGTool to update a specific configuration attribute for a campaign in Raisely. Use when you need to modify campaign settings or custom configuration values.
Input parameters
The value to set for the config attribute. Can be any JSON-serializable type (string, number, object, array, boolean, null).
The uuid, path, or domain of the campaign to update. Use the campaign path (e.g., 'composio2') to avoid 404 errors.
The campaign config key/attribute to update.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_UPDATE_EXERCISE_LOGUpdate an existing exercise log in Raisely. Use when you need to modify distance, time, activity type, or other details of a logged exercise.
Input parameters
Additional contextual data related to this log
ISO 8601 timestamp for when the exercise took place
Time elapsed in seconds
The UUID of the exercise log to update
Completed measure in campaign unit
If true, return the full record including private fields
Exercise activity types supported by Raisely.
Distance completed in meters
Source application of the exercise log (e.g., 'Strava', 'Garmin')
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_UPDATE_POSTTool to update a specified post in Raisely. Use when you need to modify an existing post's title, body, date, path, or photo URL. Requires the post's UUID or path identifier.
Input parameters
Post data fields to update. At least one field should be provided.
The uuid or path of the post to update.
Returns the full record when authenticated.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_UPDATE_PROFILEUpdates a specific profile in Raisely. Use when you need to modify profile details like description, goal, name, photo, or custom fields.
Input parameters
Profile fields to update. Only provided fields will be updated.
The UUID or path of the profile to update. This identifies which profile to modify.
Determines if a record updates public/private values in a merge versus an overwrite.
Returns the full record when authenticated (includes private custom fields).
The UUID, path, or domain of the campaign to associate with the request.
If true, replace the existing 'public' and 'private' values with the values provided. If false or omitted, merge the values.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_UPDATE_USERTool to update a specified user in Raisely. Use when you need to modify an existing user's profile information, contact details, or custom fields.
Input parameters
User fields to update. Only provided fields will be updated.
The UUID of the user to update. This identifies which user to modify.
Returns the full record when authenticated (includes private custom fields).
If true, replace the existing 'public' and 'private' values with the values provided. If false or omitted, merge the values.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_UPDATE_WEBHOOKTool to update a specified webhook in Raisely. Use when you need to modify an existing webhook's URL, events, or secret. Requires the webhook's UUID identifier.
Input parameters
Webhook fields to update. At least one field should be provided.
The uuid of the webhook to update.
Returns the full record when authenticated.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_UPLOAD_CAMPAIGN_MEDIATool to upload one or more files to a campaign's media library in Raisely. Use when you need to add images, documents, or other media files to a specific campaign folder.
Input parameters
File to upload to the campaign media library.
The campaign identifier - can be the campaign UUID, path, or domain.
Folder UUID to upload the file(s) to. This can be any string identifier for organizing media files.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
RAISELY_UPSERT_USERTool to upsert a user record in Raisely, optionally tagging and creating an interaction. Use when accepting form submissions or creating/updating user records. Creates a new user if the email doesn't exist, or updates the existing user if it does.
Input parameters
The user data to upsert. Email is used as the unique identifier for deduplication.
Returns the full record when authenticated (including private fields).
The uuid, path, or domain of the campaign to associate with the request. Required parameter.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
No publicly available marketplace agent is found using this tool yet. There are 57 agents privately built on Nagent that already use Raisely.
Build on Nagent
Connect Raisely to any Nagent agent in minutes — no API key management, no boilerplate. Just configure and deploy.
The five questions agent builders ask before adopting a new integration.
Open the External Integrations panel inside Nagent (app.nagent.ai/externalIntegration), find Raisely, and click "Connect Now." You'll authenticate with an API key — Nagent handles credential storage and refresh automatically. Once connected, Raisely is available to any agent in your workspace.
No. Nagent provides no-code integration for every tool. Once Raisely is connected, you configure its 61 actions directly in the agent builder UI — no API calls, no boilerplate, no schema management.
Helix — Nagent's agentic agent builder — lets you drop Raisely steps into any workflow visually. Pick an action (e.g., one of those listed above), fill in the inputs (Helix knows the required vs. optional schema for each parameter), and connect it to upstream/downstream steps. Triggers run as the entry point of an agent, so when a Raisely event fires, the agent kicks off automatically.
Every Raisely action and trigger ships with a fully-typed schema — input parameters with name, type, required flag, and description, plus the output payload shape. The schemas are documented in the sections above. Helix uses these schemas to validate your configuration at build time and to type-check the data flowing between steps.
Yes. While Raisely ships with 61 pre-built fundraising actions, you can layer custom logic around them inside Helix — pre/post-processing steps, conditional branches, retries, or stitching Raisely together with other connected tools. For deeper customization, talk to our team about Nagent's Agentic AI Lab — forward-deployed engineers who build Raisely-based workflows tailored to your business.