{"info":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","description":"<html><head></head><body><p>The Virtuous Raise API uses the <a href=\"http://en.wikipedia.org/wiki/Representational_State_Transfer\">REST</a> architectural style. Our API has predictable, resource-oriented URLs and uses HTTP response codes to indicate API errors. We use built-in HTTP features, like HTTP verbs, which off-the-shelf HTTP clients understand. All API responses, including errors, return JSON.</p>\n<p>There is no test mode with our API.</p>\n<p>We strongly encourage you to download <a href=\"http://getpostman.com/downloads\">Postman</a> and use our collection to get started. You can download the complete API collection to run and mock in Postman.</p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>All API requests must be made over HTTPS. Calls made over plain HTTP will fail. API requests without authentication will also fail.</p>\n<p>Passing appropriate headers for the API call is important in order to receive good responses back from the API.</p>\n<p>Authentication is done through API Keys, these keys are static and are valid for 15 years.</p>\n<h2 id=\"how-to-use-api-keys\">How to use API Keys</h2>\n<p>API Keys can be created in the Virtuous Raise UI and do not expire. To create a token, login to Virtuous Raise and then navigate to the API Keys section under settings and click \"New API Key\".</p>\n<img src=\"https://content.pstmn.io/ae5d7c0c-b044-4b67-9e9e-b161f7f4bae5/aW1hZ2UucG5n\">\n\n<p>Enter a name for the key, choose a role, access level, and click save. You will now have the option to view and copy the API Key.</p>\n<img src=\"https://content.pstmn.io/f43acd4a-6496-4b5f-b7cb-03f10ce03421/aW1hZ2UucG5n\">\n\n<p>You can use this token with the authorization header as shown below.</p>\n<p><code>Authorization: Bearer REPLACE_WITH_TOKEN</code></p>\n<h1 id=\"rate-limits\">Rate Limits</h1>\n<p>Virtuous Raise utilizes throttling to prevent erroneous use of the API. The majority of users won't be affected by this, and if you follow the best practices you shouldn't be either!</p>\n<p><strong>Hourly Request Limit:</strong> 1,500</p>\n<p>If you're wondering how to <strong>determine the number of requests used</strong>, we've got you covered. The following headers will be returned with each request.</p>\n<ul>\n<li><p>X-RateLimit-Limit: The total rate limit (1,500/hour).</p>\n</li>\n<li><p>X-RateLimit-Remaining: The total limit remaining.</p>\n</li>\n<li><p>X-RateLimit-Reset: The unix timestamp of when the limit resets.</p>\n</li>\n</ul>\n<p>Once passed the hourly limit, you will start receiving 429 error codes for too many requests.</p>\n<h1 id=\"pagination-sorting\">Pagination &amp; Sorting</h1>\n<p>Most “list” and “query” endpoints accept the following parameters via query string or in the body (for POST endpoints):</p>\n<ul>\n<li><p>skip (int, required):</p>\n<ul>\n<li><p>Number of records to skip before returning results.</p>\n</li>\n<li><p>skip=0 returns the first page.</p>\n</li>\n</ul>\n</li>\n<li><p>take (int, required):</p>\n<ul>\n<li><p>Maximum number of records to return.</p>\n</li>\n<li><p>take=0 will return an empty items array.</p>\n</li>\n<li><p>Recommended values: 20, 50, or 100. Avoid very large values to keep responses fast.</p>\n</li>\n</ul>\n</li>\n<li><p>sortBy (string, optional):</p>\n<ul>\n<li><p>Field name to sort by.</p>\n</li>\n<li><p>Valid values are endpoint-specific. For example, campaigns support id, name, startDate, endDate, givingGoal, and avgGiftGoal.</p>\n</li>\n</ul>\n</li>\n<li><p>descending (bool, optional):</p>\n<ul>\n<li>If true, results are sorted in descending order; otherwise ascending.</li>\n</ul>\n</li>\n</ul>\n<p>Example (campaign list):</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /api/campaign/list?skip=0&amp;take=50&amp;filter=year end&amp;sortBy=startDate&amp;descending=false\nAuthorization: Bearer {token}\n\n</code></pre><h1 id=\"simple-freetext-filter\">Simple free‑text filter</h1>\n<p>Almost all list/query endpoints include a filter field, which is a free‑text search. The behavior depends on the entity:</p>\n<ul>\n<li><p>• Campaigns (GET /api/campaign/list, POST /api/campaign/query):</p>\n<ul>\n<li><p>filter matches:</p>\n<ul>\n<li><p>id (exact numeric match)</p>\n</li>\n<li><p>name (case-insensitive contains)</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p>description (case-insensitive contains)</p>\n<ul>\n<li><p>Donor activities (POST /api/activity/list):</p>\n<ul>\n<li><p>filter is applied to the activity’s display text (case-insensitive contains).</p>\n</li>\n<li><p>Example: filter = \"email\" returns only activities whose description contains “email”</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<p>Example (activities):</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>POST /api/activity/list\nAuthorization: Bearer {token}\nContent-Type: application/json\n{\n  \"selectedActivityOrigins\": [0, 1, 2],\n  \"filter\": \"email\",\n  \"skip\": 0,\n  \"take\": 25\n}\n\n</code></pre><h1 id=\"advanced-queries\">Advanced queries</h1>\n<p>Advanced queries use the query builder model. They allow you to:</p>\n<ul>\n<li><p>Filter on typed fields (date, numbers, strings, enums).</p>\n</li>\n<li><p>Use operators like Is, GreaterThan, LessThanOrEqual, Between, IsKnown, etc.</p>\n</li>\n<li><p>Choose which result columns to return.</p>\n</li>\n</ul>\n<p>Step 1 – Discover options</p>\n<p>Call:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /api/query/options/Campaign\nAuthorization: Bearer {token}\n\n</code></pre><p>This returns:</p>\n<ul>\n<li><p>Allowed parameters (e.g. Giving Goal, Gift Goal, Start Date).</p>\n</li>\n<li><p>The supported operators for each parameter.</p>\n</li>\n<li><p>The available result fields.</p>\n</li>\n</ul>\n<p>Step 2 – Build the query</p>\n<p>Create a QueryRequestModel body:</p>\n<ul>\n<li><p>queryType: e.g. \"Campaign\".</p>\n</li>\n<li><p>groups: list of condition groups (each group has one or more conditions).</p>\n</li>\n<li><p>selectedColumns: optional list of result fields to return.</p>\n</li>\n<li><p>Standard skip, take, filter fields for paging/extra search.</p>\n</li>\n</ul>\n<p>For numeric fields, the Between operator uses value &amp; secondaryValue:</p>\n<ul>\n<li><p>value → lower bound (inclusive).</p>\n</li>\n<li><p>secondaryValue → upper bound (inclusive).</p>\n</li>\n</ul>\n<p>Example: campaigns with Giving Goal between 10,000 and 50,000</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>POST /api/campaign/query\nAuthorization: Bearer {token}\nContent-Type: application/json\n{\n  \"queryType\": \"Campaign\",\n  \"groups\": [\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"Giving Goal\",\n          \"operator\": \"Between\",\n          \"value\": \"10000\",\n          \"secondaryValue\": \"50000\"\n        }\n      ]\n    }\n  ],\n  \"selectedColumns\": [\"Id\", \"Name\", \"Giving Goal\"],\n  \"skip\": 0,\n  \"take\": 50\n}\n\n</code></pre><h1 id=\"best-practices\">Best Practices</h1>\n<p>Hey, you're reading the best practices? Good on you! We have just a few tips to follow to ensure a great experience with our API.</p>\n<h4 id=\"1-webhooks\">1) Webhooks</h4>\n<p>Want to know when an object like a Donor, Gift, or Project is updated? Use our webhooks! Don't query for new or updated gifts. Use webhooks and we'll tell you when something has been created or updated in real-time.</p>\n<h4 id=\"2-obsolete-endpoints\">2) Obsolete Endpoints</h4>\n<p>Endpoints that have been obsoleted will be marked with \"(obsolete)\" and shouldn't be used (I know I know, might seem obvious right?). They will be removed in future releases.</p>\n<h4 id=\"3-read-the-response\">3) Read the Response</h4>\n<p>If a call to an endpoint fails for one reason or another, be sure to read the returned message. Almost anytime you receive a status code other than 200 (success) you should receive a message explaining why that code was received. Please check these and make the corrections prior to reaching out to support.</p>\n<h1 id=\"raise-js-documentation\">Raise JS Documentation</h1>\n<p>Virtuous Raise Forms JS allows users to set default values, override settings, and expose event handlers for form loading and donation success. The success event can be used to track events with Facebook Pixel, Google Analytics, or to display custom messages.</p>\n<h3 id=\"initialization\">Initialization</h3>\n<p>Initialize Virtuous Raise Forms before the embed script loads if you want default items to be set before the form loads. Override items can be set anytime prior to submission.</p>\n<h3 id=\"complete-interface-structure\">Complete Interface Structure</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">window.RaiseDonorsForms = {\n    settings: {\n        // Donor Information\n        donorInfo: {\n            firstName: \"John\",          // Pre-fill first name\n            lastName: \"Doe\",            // Pre-fill last name  \n            email: \"john@example.com\",  // Pre-fill email\n            phone: \"555-123-4567\",      // Pre-fill phone number\n            address1: \"123 Main St\",    // Pre-fill address line 1\n            address2: \"Apt 4B\",         // Pre-fill address line 2\n            city: \"Springfield\",        // Pre-fill city\n            state: \"IL\",                // Pre-fill state/province\n            postal: \"62701\",            // Pre-fill postal/zip code\n            country: \"US\"               // Pre-fill country code\n        },\n        // Gift Information\n        giftInfo: {\n            giftArrays: [               // Custom gift array options\n                {\n                    value: \"25\",\n                    description: \"Small gift\",\n                    displayValue: \"$25\",\n                    isSelected: false,\n                    isDefault: false\n                },\n                {\n                    value: \"50\", \n                    description: \"Standard gift\",\n                    displayValue: \"$50\",\n                    isSelected: false,\n                    isDefault: true\n                }\n            ],\n            amount: 100,                     // Set default amount (number or string)\n            frequency: \"monthly\",            // \"once\", \"monthly\", \"quarterly\", \"annually\"\n            coverCosts: true,                // Whether donor covers processing costs\n            comments: \"Memorial donation\",    // Default comment/note\n            segmentOverrideCode: \"SEG456\",   // Override default segment\n            projectCodeOverride: \"PR123\",    // Override default project (replaces deprecated projectOverrideCode)\n            projectOverrideCode: \"PR123\",    // @deprecated - use projectCodeOverride instead\n            projectCodePreselect: \"PR789\"    // Pre-select project without overriding\n        },\n        // Custom Field Presets\n        customFieldPreset: [\n            {\n                id: \"1234\",                  // Custom field ID (found on custom field edit page)\n                value: \"some value\"          // Default value for the custom field\n            }\n        ],\n        // Google Analytics/UTM Tracking\n        googleTracking: {\n            utmCampaign: \"spring2024\",\n            utmSource: \"facebook\", \n            utmMedium: \"social\",\n            utmContent: \"button1\",\n            utmTerm: \"donate\",\n            utmId: \"campaign_id\",\n            gclid: \"google_click_id\"         // Google Ads click identifier\n        },\n        // Event Handlers\n        onLoad: function() {\n            console.log(\"Form loaded successfully\");\n            // Custom actions when form loads\n        },\n        onSuccess: function(response) {\n            console.log(\"Donation successful\", response);\n            // Example: Track with Google Analytics\n            gtag('event', 'donation_complete', {\n                'transaction_id': response.transactionId,\n                'value': response.amount,\n                'currency': 'USD'\n            });\n        }\n    }\n};\n\n</code></pre>\n<h5 id=\"url-parameters\">URL Parameters</h5>\n<p>You can also pass values via URL parameters. URL parameters take precedence over global object settings:</p>\n<h4 id=\"donor-information-parameters\">Donor Information Parameters</h4>\n<ul>\n<li><p><code>firstname</code>, <code>first-name</code>, <code>fname</code> - Donor first name</p>\n</li>\n<li><p><code>lastname</code>, <code>last-name</code>, <code>lname</code> - Donor last name</p>\n</li>\n<li><p><a href=\"https://null\">email</a> - Donor email address</p>\n</li>\n<li><p><a href=\"https://null\">phone</a> - Donor phone number</p>\n</li>\n<li><p><a href=\"https://null\">address</a>, <a href=\"https://null\">address1</a> - Address line 1</p>\n</li>\n<li><p><a href=\"https://null\">address2</a> - Address line 2</p>\n</li>\n<li><p><a href=\"https://null\">city</a> - City</p>\n</li>\n<li><p><a href=\"https://null\">state</a> - State/province</p>\n</li>\n<li><p><a href=\"https://null\">postal</a> - Postal/zip code</p>\n</li>\n<li><p><a href=\"https://null\">country</a> - Country code</p>\n</li>\n</ul>\n<h4 id=\"gift-information-parameters\">Gift Information Parameters</h4>\n<ul>\n<li><p><a href=\"https://null\">amount</a>, <code>amountpreselect</code>, <code>amountoverride</code>, <code>amt</code> - Gift amount</p>\n</li>\n<li><p><a href=\"https://null\">frequency</a> - Gift frequency (\"once\", \"monthly\", \"quarterly\", \"annually\")</p>\n</li>\n<li><p><a href=\"https://null\">comment</a>, <a href=\"https://null\">comments</a> - Gift comment/note</p>\n</li>\n<li><p><a href=\"https://null\">currencyCode</a> - Currency code (e.g., \"USD\", \"CAD\", \"EUR\")</p>\n</li>\n</ul>\n<h4 id=\"projectsegment-parameters\">Project/Segment Parameters</h4>\n<ul>\n<li><p><code>segmentcode</code>, <code>segmentcodeoverride</code>, <code>src</code>, <code>referencecode</code> - Segment override</p>\n</li>\n<li><p><code>projectcode</code>, <code>projectcodeoverride</code>, <code>projectoverride</code>, <code>fund-code</code> - Project override</p>\n</li>\n<li><p><code>projectcodepreselect</code>, <code>projectpreselect</code> - Project preselection</p>\n</li>\n</ul>\n<h4 id=\"special-parameters\">Special Parameters</h4>\n<ul>\n<li><a href=\"https://null\">array-amounts</a> - Comma-separated list of gift amounts (e.g., \"25,50,100,250\")</li>\n</ul>\n<h5 id=\"response-type\">Response type</h5>\n<p>The structure of the donate response you can then use in event handlers.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">interface DonateResponse {\n    success: boolean;           // Whether the donation was successful\n    message: string | null;     // Success/error message\n    transactionId: string | null; // Transaction identifier\n    amount: number;             // Donation amount\n    frequency?: Frequency;      // Gift frequency enum value\n    segment?: string;           // Segment code\n    giftId?: number | null;     // Internal gift ID\n    projectSplit: ProjectSplit[]; // Array of project allocations\n}\ninterface ProjectSplit {\n    projectId: string;          // Project identifier\n    projectName: string;        // Project display name\n    projectCode?: string;       // Project code\n    amount: string | null;      // Amount allocated to this project\n}\n\n</code></pre>\n<h3 id=\"usage-examples\">Usage Examples</h3>\n<h4 id=\"basic-pre-fill-example\">Basic Pre-fill Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">window.RaiseDonorsForms = {\n    settings: {\n        donorInfo: {\n            firstName: \"John\",\n            lastName: \"Doe\", \n            email: \"john@example.com\"\n        },\n        giftInfo: {\n            amount: 50,\n            frequency: \"monthly\"\n        }\n    }\n};\n\n</code></pre>\n<h4 id=\"custom-gift-array-example\">Custom Gift Array Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">window.RaiseDonorsForms = {\n    settings: {\n        giftInfo: {\n            giftArrays: [\n                { value: \"25\", description: \"\", displayValue: \"$25\", isSelected: false, isDefault: false },\n                { value: \"50\", description: \"\", displayValue: \"$50\", isSelected: false, isDefault: true },\n                { value: \"100\", description: \"\", displayValue: \"$100\", isSelected: false, isDefault: false },\n                { value: \"250\", description: \"\", displayValue: \"$250\", isSelected: false, isDefault: false }\n            ]\n        }\n    }\n};\n\n</code></pre>\n<h4 id=\"analytics-tracking-example\">Analytics Tracking Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">window.RaiseDonorsForms = {\n    settings: {\n        googleTracking: {\n            utmCampaign: \"holiday2024\",\n            utmSource: \"newsletter\", \n            utmMedium: \"email\"\n        },\n        onSuccess: function(response) {\n            // Google Analytics 4\n            gtag('event', 'purchase', {\n                transaction_id: response.transactionId,\n                value: response.amount,\n                currency: 'USD'\n            });\n            // Facebook Pixel\n            fbq('track', 'Purchase', {\n                value: response.amount,\n                currency: 'USD'\n            });\n        }\n    }\n};\n\n</code></pre>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>The <a href=\"https://null\">projectOverrideCode</a> field is deprecated in favor of <a href=\"https://null\">projectCodeOverride</a></p>\n</li>\n<li><p>URL parameters are case-insensitive and take precedence over global object settings</p>\n</li>\n<li><p>Gift arrays in the global object will override component-level gift arrays</p>\n</li>\n<li><p>Custom field IDs can be found on the custom field edit page in your admin interface</p>\n</li>\n</ul>\n<h1 id=\"enums-documentation\">Enums Documentation</h1>\n<p>This documentation provides definitions for various enums used in our API requests. Enums (short for enumerations) are a special \"class\" that represents a group of constants (unchangeable/read-only variables). These enums are used to standardize and simplify the handling of specific sets of related values in our application. Below are the detailed definitions for each enum used in our requests.</p>\n<h2 id=\"activityorigin\">ActivityOrigin</h2>\n<p>Defines the origin of a change to an entity in the Raise system</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Donor</td>\n<td>The donor</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Team</td>\n<td>Someone on your team</td>\n</tr>\n<tr>\n<td>2</td>\n<td>System</td>\n<td>Raise System</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Giving</td>\n<td>Our Giving platform</td>\n</tr>\n<tr>\n<td>4</td>\n<td>CRM</td>\n<td>Your connected CRM</td>\n</tr>\n<tr>\n<td>5</td>\n<td>DonorPortal</td>\n<td>Donor Portal</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"paymentmethodtype\">PaymentMethodType</h2>\n<p>Defines the payment method type when charging against the Raise API</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Credit Card</td>\n<td>Credit Card</td>\n</tr>\n<tr>\n<td>1</td>\n<td>ACH</td>\n<td>ACH Bank</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Paypal</td>\n<td>Paypal</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"paymentprovidertype\">PaymentProviderType</h2>\n<p>Defines the payment provider type when charging against the Raise API</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>None</td>\n<td>None</td>\n</tr>\n<tr>\n<td>1</td>\n<td>VirtuousPayments</td>\n<td>Virtuous Payments</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Stripe</td>\n<td>Stripe</td>\n</tr>\n<tr>\n<td>3</td>\n<td>AuthorizeNet</td>\n<td>AuthorizeNet</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"frequency\">Frequency</h2>\n<p>Defines the frequency of an Recurring Gift</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>52</td>\n<td>Weekly</td>\n<td>Weekly (every 7 days)</td>\n</tr>\n<tr>\n<td>26</td>\n<td>EveryOtherWeek</td>\n<td>Every other week (every 14 days)</td>\n</tr>\n<tr>\n<td>12</td>\n<td>Monthly</td>\n<td>Monthly</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Quarterly</td>\n<td>Quarterly</td>\n</tr>\n<tr>\n<td>2</td>\n<td>BiAnnual</td>\n<td>Biannually (twice a year)</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Annually</td>\n<td>Annually</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"addresstype\">AddressType</h2>\n<p>Defines the type of address.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Other</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Shipping</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Billing</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Technical</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Contact</td>\n</tr>\n<tr>\n<td>5</td>\n<td>None</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"contactmethodtype\">ContactMethodType</h2>\n<p>Defines the type of contact method.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Unknown</td>\n</tr>\n<tr>\n<td>10</td>\n<td>HomeEmail</td>\n</tr>\n<tr>\n<td>11</td>\n<td>WorkEmail</td>\n</tr>\n<tr>\n<td>12</td>\n<td>OtherEmail</td>\n</tr>\n<tr>\n<td>20</td>\n<td>HomePhone</td>\n</tr>\n<tr>\n<td>21</td>\n<td>WorkPhone</td>\n</tr>\n<tr>\n<td>22</td>\n<td>MobilePhone</td>\n</tr>\n<tr>\n<td>99</td>\n<td>Other</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customfielddatatype\">CustomFieldDataType</h2>\n<p>Defines the data type of a custom field.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Date</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Decimal</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Text</td>\n</tr>\n<tr>\n<td>4</td>\n<td>List</td>\n</tr>\n<tr>\n<td>5</td>\n<td>Link</td>\n</tr>\n<tr>\n<td>6</td>\n<td>Integer</td>\n</tr>\n<tr>\n<td>7</td>\n<td>Paragraph</td>\n</tr>\n<tr>\n<td>8</td>\n<td>Multiselect</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customfieldentitytype\">CustomFieldEntityType</h2>\n<p>Defines the entity type of a custom field.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Contact</td>\n</tr>\n<tr>\n<td>1</td>\n<td>ContactIndividual</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Gift</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Event</td>\n</tr>\n<tr>\n<td>4</td>\n<td>EventInvitation</td>\n</tr>\n<tr>\n<td>5</td>\n<td>Project</td>\n</tr>\n<tr>\n<td>6</td>\n<td>VolunteerOpportunity</td>\n</tr>\n<tr>\n<td>7</td>\n<td>Grant</td>\n</tr>\n<tr>\n<td>8</td>\n<td>Premium</td>\n</tr>\n<tr>\n<td>9</td>\n<td>GiftAsk</td>\n</tr>\n<tr>\n<td>10</td>\n<td>MediaOutlet</td>\n</tr>\n<tr>\n<td>11</td>\n<td>PlannedGift</td>\n</tr>\n<tr>\n<td>12</td>\n<td>Pledge</td>\n</tr>\n<tr>\n<td>13</td>\n<td>RecurringGift</td>\n</tr>\n<tr>\n<td>14</td>\n<td>Membership</td>\n</tr>\n<tr>\n<td>15</td>\n<td>ContactNote</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"customfielddataformatter\">CustomFieldDataFormatter</h2>\n<p>Defines the data formatter of a custom field.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>None</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Numeric</td>\n</tr>\n<tr>\n<td>2</td>\n<td>NumericWithFractional</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Currency</td>\n</tr>\n<tr>\n<td>4</td>\n<td>CurrencyWithDecimals</td>\n</tr>\n<tr>\n<td>5</td>\n<td>Dropdown</td>\n</tr>\n<tr>\n<td>6</td>\n<td>ListRadio</td>\n</tr>\n<tr>\n<td>7</td>\n<td>ListCheckbox</td>\n</tr>\n<tr>\n<td>8</td>\n<td>BooleanButton</td>\n</tr>\n<tr>\n<td>9</td>\n<td>BooleanRadio</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"giftstatus\">GiftStatus</h2>\n<p>Defines the gift/donation status.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>Approved</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Declined</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Voided</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Refunded</td>\n</tr>\n<tr>\n<td>5</td>\n<td>Error</td>\n</tr>\n<tr>\n<td>8</td>\n<td>Pending</td>\n</tr>\n<tr>\n<td>9</td>\n<td>Disputed (Won)</td>\n</tr>\n<tr>\n<td>10</td>\n<td>Disputed</td>\n</tr>\n<tr>\n<td>11</td>\n<td>Disputed (Lost)</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"queryoperator\">QueryOperator</h2>\n<p>Defines the operator used in queries.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Is</td>\n</tr>\n<tr>\n<td>1</td>\n<td>IsNot</td>\n</tr>\n<tr>\n<td>2</td>\n<td>IsKnown</td>\n</tr>\n<tr>\n<td>3</td>\n<td>IsNotKnown</td>\n</tr>\n<tr>\n<td>4</td>\n<td>LessThan</td>\n</tr>\n<tr>\n<td>5</td>\n<td>LessThanOrEqual</td>\n</tr>\n<tr>\n<td>6</td>\n<td>GreaterThan</td>\n</tr>\n<tr>\n<td>7</td>\n<td>GreaterThanOrEqual</td>\n</tr>\n<tr>\n<td>8</td>\n<td>Contains</td>\n</tr>\n<tr>\n<td>9</td>\n<td>StartsWith</td>\n</tr>\n<tr>\n<td>10</td>\n<td>EndsWith</td>\n</tr>\n<tr>\n<td>11</td>\n<td>IsTrue</td>\n</tr>\n<tr>\n<td>12</td>\n<td>IsFalse</td>\n</tr>\n<tr>\n<td>13</td>\n<td>IsSet</td>\n</tr>\n<tr>\n<td>14</td>\n<td>IsNotSet</td>\n</tr>\n<tr>\n<td>15</td>\n<td>In</td>\n</tr>\n<tr>\n<td>16</td>\n<td>NotIn</td>\n</tr>\n<tr>\n<td>17</td>\n<td>Between</td>\n</tr>\n<tr>\n<td>18</td>\n<td>Before</td>\n</tr>\n<tr>\n<td>19</td>\n<td>After</td>\n</tr>\n<tr>\n<td>20</td>\n<td>IsAnyOf</td>\n</tr>\n<tr>\n<td>21</td>\n<td>IsNoneOf</td>\n</tr>\n<tr>\n<td>22</td>\n<td>Matches</td>\n</tr>\n<tr>\n<td>23</td>\n<td>IsIn</td>\n</tr>\n<tr>\n<td>24</td>\n<td>IsNotIn</td>\n</tr>\n<tr>\n<td>25</td>\n<td>HasAny</td>\n</tr>\n<tr>\n<td>26</td>\n<td>HasNone</td>\n</tr>\n<tr>\n<td>27</td>\n<td>DoesNotContain</td>\n</tr>\n<tr>\n<td>28</td>\n<td>OnOrBefore</td>\n</tr>\n<tr>\n<td>29</td>\n<td>OnOrAfter</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"querytype\">QueryType</h2>\n<p>Defines the type of query.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>Other</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Donor</td>\n</tr>\n<tr>\n<td>2</td>\n<td>DonorAddress</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Gift</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Project</td>\n</tr>\n<tr>\n<td>5</td>\n<td>Premium</td>\n</tr>\n<tr>\n<td>6</td>\n<td>Page</td>\n</tr>\n<tr>\n<td>7</td>\n<td>RecurringGift</td>\n</tr>\n<tr>\n<td>8</td>\n<td>Campaign</td>\n</tr>\n<tr>\n<td>9</td>\n<td>Segment</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"recurringgiftstatus\">RecurringGiftStatus</h2>\n<p>Defines the recurring gift status.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>Active</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Cancelled</td>\n</tr>\n<tr>\n<td>4</td>\n<td>Suspended</td>\n</tr>\n<tr>\n<td>6</td>\n<td>Retrying</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"conjunctoperator\">ConjunctOperator</h2>\n<p>Defines the conjunct operator used in queries.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>And</td>\n</tr>\n<tr>\n<td>1</td>\n<td>Or</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"eventtype\">EventType</h2>\n<p>Defines the type of event for webhooks.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>10</td>\n<td>Gift_Added</td>\n</tr>\n<tr>\n<td>11</td>\n<td>Gift_Modified</td>\n</tr>\n<tr>\n<td>12</td>\n<td>Gift_Deleted</td>\n</tr>\n<tr>\n<td>20</td>\n<td>Donor_Added</td>\n</tr>\n<tr>\n<td>21</td>\n<td>Donor_Modified</td>\n</tr>\n<tr>\n<td>22</td>\n<td>Donor_Deleted</td>\n</tr>\n<tr>\n<td>30</td>\n<td>RecurringGift_Added</td>\n</tr>\n<tr>\n<td>31</td>\n<td>RecurringGift_Modified</td>\n</tr>\n<tr>\n<td>32</td>\n<td>RecurringGift_Deleted</td>\n</tr>\n<tr>\n<td>40</td>\n<td>Project_Added</td>\n</tr>\n<tr>\n<td>41</td>\n<td>Project_Modified</td>\n</tr>\n<tr>\n<td>42</td>\n<td>Project_Deleted</td>\n</tr>\n<tr>\n<td>50</td>\n<td>Premium_Added</td>\n</tr>\n<tr>\n<td>51</td>\n<td>Premium_Modified</td>\n</tr>\n<tr>\n<td>52</td>\n<td>Premium_Deleted</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"status\">Status</h2>\n<p>Defines the status of a webhook.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>Active</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Paused</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"format\">Format</h2>\n<p>Defines the format of a webhook.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>JSON</td>\n</tr>\n<tr>\n<td>2</td>\n<td>XML</td>\n</tr>\n</tbody>\n</table>\n</div></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication","slug":"authentication"},{"content":"Rate Limits","slug":"rate-limits"},{"content":"Pagination & Sorting","slug":"pagination-sorting"},{"content":"Simple free‑text filter","slug":"simple-freetext-filter"},{"content":"Advanced queries","slug":"advanced-queries"},{"content":"Best Practices","slug":"best-practices"},{"content":"Raise JS Documentation","slug":"raise-js-documentation"},{"content":"Enums Documentation","slug":"enums-documentation"}],"owner":"26507319","collectionId":"e04f1796-5602-405d-9d3a-cf6bab6d911e","publishedId":"2sBXcEizf1","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"20262A","highlight":"006A94"},"publishDate":"2026-02-19T18:23:12.000Z"},"item":[{"name":"Activity","item":[{"name":"Get a paginated list of donor activities across the organization.","id":"b06caf2f-db6f-4b95-a8f6-204ed6aa265f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"filter\": \"string\",\n  \"skip\": 6740,\n  \"take\": 4405,\n  \"sortBy\": \"createdate\",\n  \"descending\": true,\n  \"selectedActivityOrigins\": [\n    2,\n    5\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Activity/list","description":"<p>Example request body:\n<code>\n{\n  \"selectedActivityOrigins\": [0, 1, 2],\n  \"filter\": \"email\",\n  \"skip\": 0,\n  \"take\": 25\n}\n</code></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Activity","list"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[]}},"response":[{"id":"08bd994f-e395-46ee-817c-f4e8e024d626","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"filter\": \"string\",\n  \"skip\": 6740,\n  \"take\": 4405,\n  \"sortBy\": \"createdate\",\n  \"descending\": true,\n  \"selectedActivityOrigins\": [\n    2,\n    5\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Activity/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 3477,\n      \"display\": \"string\",\n      \"activityOrigin\": 2,\n      \"activityType\": 5,\n      \"createdDate\": \"string\",\n      \"createdTime\": \"string\",\n      \"donorId\": 5223,\n      \"donorAddressId\": 1493,\n      \"donorContactMethodId\": 7903,\n      \"giftId\": 413\n    },\n    {\n      \"id\": 6117,\n      \"display\": \"string\",\n      \"activityOrigin\": 2,\n      \"activityType\": 0,\n      \"createdDate\": \"string\",\n      \"createdTime\": \"string\",\n      \"donorId\": 5289,\n      \"donorAddressId\": 8054,\n      \"donorContactMethodId\": 3606,\n      \"giftId\": 7857\n    }\n  ],\n  \"total\": 1604\n}"},{"id":"425d4e56-5fa0-4d33-91e5-01d28b8a82a5","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"filter\": \"string\",\n  \"skip\": 6740,\n  \"take\": 4405,\n  \"sortBy\": \"createdate\",\n  \"descending\": true,\n  \"selectedActivityOrigins\": [\n    2,\n    5\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Activity/list"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"b06caf2f-db6f-4b95-a8f6-204ed6aa265f"}],"id":"19343963-9a5d-43c3-8a78-96fcd94c5074","_postman_id":"19343963-9a5d-43c3-8a78-96fcd94c5074","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}}},{"name":"Campaign","item":[{"name":"Campaign List Campaigns","id":"4d8c9976-2c1c-49d8-918f-c764ecc3e58a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Campaign/list?Filter=string&Skip=8361&Take=8361&SortBy=avggiftgoal&Descending=true","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Campaign","list"],"host":["https://prod-api.raisedonors.com"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":{"content":"<p>Field to sort by (case-insensitive). Valid options: avggiftgoal, enddate, givinggoal, id, name, startdate, totalGiftGoal</p>\n","type":"text/plain"},"key":"SortBy","value":"avggiftgoal"},{"key":"Descending","value":"true"}],"variable":[]}},"response":[{"id":"a655fe86-99f8-406c-b1d6-4ea437a34123","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Campaign/list?Filter=string&Skip=8361&Take=8361&SortBy=avggiftgoal&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Campaign","list"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: avggiftgoal, enddate, givinggoal, id, name, startdate, totalGiftGoal","key":"SortBy","value":"avggiftgoal"},{"key":"Descending","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 6452,\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"startDate\": \"string\",\n      \"endDate\": \"string\",\n      \"givingGoal\": \"string\",\n      \"hasGivingGoal\": false,\n      \"raisedAmount\": \"string\",\n      \"averageGiftGoal\": \"string\",\n      \"hasAverageGiftGoal\": true,\n      \"averageGiftAmount\": \"string\",\n      \"raisedPercentage\": 248.2855675778506,\n      \"totalGiftGoal\": 7112,\n      \"hasTotalGiftGoal\": true,\n      \"totalGifts\": 5434,\n      \"metadata\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    {\n      \"id\": 3717,\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"startDate\": \"string\",\n      \"endDate\": \"string\",\n      \"givingGoal\": \"string\",\n      \"hasGivingGoal\": false,\n      \"raisedAmount\": \"string\",\n      \"averageGiftGoal\": \"string\",\n      \"hasAverageGiftGoal\": true,\n      \"averageGiftAmount\": \"string\",\n      \"raisedPercentage\": 5918.273731003132,\n      \"totalGiftGoal\": 3147,\n      \"hasTotalGiftGoal\": true,\n      \"totalGifts\": 7737,\n      \"metadata\": [\n        \"string\",\n        \"string\"\n      ]\n    }\n  ],\n  \"total\": 2385\n}"},{"id":"372ed1e5-5dd8-43ff-9605-49d53684ca9e","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Campaign/list?Filter=string&Skip=8361&Take=8361&SortBy=avggiftgoal&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Campaign","list"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: avggiftgoal, enddate, givinggoal, id, name, startdate, totalGiftGoal","key":"SortBy","value":"avggiftgoal"},{"key":"Descending","value":"true"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"4d8c9976-2c1c-49d8-918f-c764ecc3e58a"},{"name":"Get a campaign by ID.","id":"4e0b59d8-cb44-4b01-9370-b1cf8a2c0c8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Campaign/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Campaign",":id"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"2f823964-5349-477b-baac-2eb1207409cf","description":{"content":"<p>The ID of the campaign.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"27743796-622f-4c3f-89f8-c52d0cb0a518","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Campaign/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Campaign",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the campaign."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 3304,\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"startDate\": \"string\",\n  \"endDate\": \"string\",\n  \"duration\": \"string\",\n  \"canSync\": true,\n  \"crmKey\": \"string\",\n  \"crmKeyUrls\": {\n    \"key_0\": {\n      \"crmKey\": \"string\",\n      \"url\": \"string\"\n    },\n    \"key_1\": {\n      \"crmKey\": \"string\",\n      \"url\": \"string\"\n    }\n  },\n  \"applySegmentToRecurringGifts\": true,\n  \"givingGoal\": 2498.822554541298,\n  \"givingGoalFormatted\": \"string\",\n  \"hasGivingGoal\": false,\n  \"raisedAmount\": \"string\",\n  \"raisedPercentage\": 931.3198685776025,\n  \"totalGiftGoal\": 5223,\n  \"hasTotalGiftGoal\": true,\n  \"totalGifts\": 4705,\n  \"totalGiftsPercentage\": 526.1911701499256,\n  \"totalDonors\": 3285,\n  \"averageGiftGoal\": 6362.917640728078,\n  \"averageGiftGoalFormatted\": \"string\",\n  \"averageGiftAmount\": \"string\",\n  \"hasAverageGiftGoal\": false,\n  \"totalVisitors\": 7715,\n  \"conversionRate\": \"string\",\n  \"createdDateTime\": \"string\",\n  \"modifiedDateTime\": \"string\"\n}"},{"id":"a984b2c7-df91-4ae5-a580-87f0474e2c0b","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Campaign/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Campaign",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the campaign."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"4e0b59d8-cb44-4b01-9370-b1cf8a2c0c8d"},{"name":"Update a campaign.","id":"e4297992-35de-484c-a099-bd9fb6fc62ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"endDate\": \"2021-03-24T03:29:15.620Z\",\n  \"name\": \"string\",\n  \"startDate\": \"1995-02-21T15:38:49.110Z\",\n  \"description\": \"string\",\n  \"startDateTimeUtc\": \"1985-04-29T12:49:51.199Z\",\n  \"endDateTimeUtc\": \"1994-03-06T13:44:28.972Z\",\n  \"givingGoal\": 2491.55146862319,\n  \"hasGivingGoal\": true,\n  \"totalGiftGoal\": 6570,\n  \"hasTotalGiftGoal\": true,\n  \"averageGiftGoal\": 2701.6913627971207,\n  \"hasAverageGiftGoal\": false,\n  \"crmKey\": \"string\",\n  \"crmKeys\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  },\n  \"applySegmentToRecurringGifts\": true,\n  \"canSync\": true,\n  \"segments\": [\n    {\n      \"campaignId\": 9382,\n      \"code\": \"string\",\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"externalIdentifier\": \"string\"\n    },\n    {\n      \"campaignId\": 6034,\n      \"code\": \"string\",\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"externalIdentifier\": \"string\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Campaign/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Campaign",":id"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"ee3f2e58-008f-495c-a6c1-3056cc776617","description":{"content":"<p>The ID of the campaign.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"f83fc967-ce8a-4b06-918b-f8afc7a2699f","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"endDate\": \"2021-03-24T03:29:15.620Z\",\n  \"name\": \"string\",\n  \"startDate\": \"1995-02-21T15:38:49.110Z\",\n  \"description\": \"string\",\n  \"startDateTimeUtc\": \"1985-04-29T12:49:51.199Z\",\n  \"endDateTimeUtc\": \"1994-03-06T13:44:28.972Z\",\n  \"givingGoal\": 2491.55146862319,\n  \"hasGivingGoal\": true,\n  \"totalGiftGoal\": 6570,\n  \"hasTotalGiftGoal\": true,\n  \"averageGiftGoal\": 2701.6913627971207,\n  \"hasAverageGiftGoal\": false,\n  \"crmKey\": \"string\",\n  \"crmKeys\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  },\n  \"applySegmentToRecurringGifts\": true,\n  \"canSync\": true,\n  \"segments\": [\n    {\n      \"campaignId\": 9382,\n      \"code\": \"string\",\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"externalIdentifier\": \"string\"\n    },\n    {\n      \"campaignId\": 6034,\n      \"code\": \"string\",\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"externalIdentifier\": \"string\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Campaign/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Campaign",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the campaign."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 3304,\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"startDate\": \"string\",\n  \"endDate\": \"string\",\n  \"duration\": \"string\",\n  \"canSync\": true,\n  \"crmKey\": \"string\",\n  \"crmKeyUrls\": {\n    \"key_0\": {\n      \"crmKey\": \"string\",\n      \"url\": \"string\"\n    },\n    \"key_1\": {\n      \"crmKey\": \"string\",\n      \"url\": \"string\"\n    }\n  },\n  \"applySegmentToRecurringGifts\": true,\n  \"givingGoal\": 2498.822554541298,\n  \"givingGoalFormatted\": \"string\",\n  \"hasGivingGoal\": false,\n  \"raisedAmount\": \"string\",\n  \"raisedPercentage\": 931.3198685776025,\n  \"totalGiftGoal\": 5223,\n  \"hasTotalGiftGoal\": true,\n  \"totalGifts\": 4705,\n  \"totalGiftsPercentage\": 526.1911701499256,\n  \"totalDonors\": 3285,\n  \"averageGiftGoal\": 6362.917640728078,\n  \"averageGiftGoalFormatted\": \"string\",\n  \"averageGiftAmount\": \"string\",\n  \"hasAverageGiftGoal\": false,\n  \"totalVisitors\": 7715,\n  \"conversionRate\": \"string\",\n  \"createdDateTime\": \"string\",\n  \"modifiedDateTime\": \"string\"\n}"},{"id":"8d9106b1-01cb-478c-a58f-0e5cb037fb99","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"endDate\": \"2021-03-24T03:29:15.620Z\",\n  \"name\": \"string\",\n  \"startDate\": \"1995-02-21T15:38:49.110Z\",\n  \"description\": \"string\",\n  \"startDateTimeUtc\": \"1985-04-29T12:49:51.199Z\",\n  \"endDateTimeUtc\": \"1994-03-06T13:44:28.972Z\",\n  \"givingGoal\": 2491.55146862319,\n  \"hasGivingGoal\": true,\n  \"totalGiftGoal\": 6570,\n  \"hasTotalGiftGoal\": true,\n  \"averageGiftGoal\": 2701.6913627971207,\n  \"hasAverageGiftGoal\": false,\n  \"crmKey\": \"string\",\n  \"crmKeys\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  },\n  \"applySegmentToRecurringGifts\": true,\n  \"canSync\": true,\n  \"segments\": [\n    {\n      \"campaignId\": 9382,\n      \"code\": \"string\",\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"externalIdentifier\": \"string\"\n    },\n    {\n      \"campaignId\": 6034,\n      \"code\": \"string\",\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"externalIdentifier\": \"string\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Campaign/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Campaign",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the campaign."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"e4297992-35de-484c-a099-bd9fb6fc62ff"},{"name":"Delete a campaign.","id":"5e96f580-2108-4e1c-9bf5-a2380c213fb3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Campaign/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Campaign",":id"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"3eaf3ce5-4d8c-4c80-92aa-285c1ad4831a","description":{"content":"<p>The ID of the campaign.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"56470975-bf98-46bb-ad7b-e266ef0b7bc7","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Campaign/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Campaign",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the campaign."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"fc777818-359e-41e0-b584-624d3590d229","name":"Bad Request","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Campaign/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Campaign",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the campaign."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"5e96f580-2108-4e1c-9bf5-a2380c213fb3"},{"name":"Create a new campaign.","id":"3ee00fc8-45cd-4955-a53e-1ab88ef643e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"endDate\": \"2021-03-24T03:29:15.620Z\",\n  \"name\": \"string\",\n  \"startDate\": \"1995-02-21T15:38:49.110Z\",\n  \"description\": \"string\",\n  \"startDateTimeUtc\": \"1985-04-29T12:49:51.199Z\",\n  \"endDateTimeUtc\": \"1994-03-06T13:44:28.972Z\",\n  \"givingGoal\": 2491.55146862319,\n  \"hasGivingGoal\": true,\n  \"totalGiftGoal\": 6570,\n  \"hasTotalGiftGoal\": true,\n  \"averageGiftGoal\": 2701.6913627971207,\n  \"hasAverageGiftGoal\": false,\n  \"crmKey\": \"string\",\n  \"crmKeys\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  },\n  \"applySegmentToRecurringGifts\": true,\n  \"canSync\": true,\n  \"segments\": [\n    {\n      \"campaignId\": 9382,\n      \"code\": \"string\",\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"externalIdentifier\": \"string\"\n    },\n    {\n      \"campaignId\": 6034,\n      \"code\": \"string\",\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"externalIdentifier\": \"string\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Campaign","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Campaign"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[]}},"response":[{"id":"52cbc80c-271e-4de1-8ff0-9fa70f969e6b","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"endDate\": \"2021-03-24T03:29:15.620Z\",\n  \"name\": \"string\",\n  \"startDate\": \"1995-02-21T15:38:49.110Z\",\n  \"description\": \"string\",\n  \"startDateTimeUtc\": \"1985-04-29T12:49:51.199Z\",\n  \"endDateTimeUtc\": \"1994-03-06T13:44:28.972Z\",\n  \"givingGoal\": 2491.55146862319,\n  \"hasGivingGoal\": true,\n  \"totalGiftGoal\": 6570,\n  \"hasTotalGiftGoal\": true,\n  \"averageGiftGoal\": 2701.6913627971207,\n  \"hasAverageGiftGoal\": false,\n  \"crmKey\": \"string\",\n  \"crmKeys\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  },\n  \"applySegmentToRecurringGifts\": true,\n  \"canSync\": true,\n  \"segments\": [\n    {\n      \"campaignId\": 9382,\n      \"code\": \"string\",\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"externalIdentifier\": \"string\"\n    },\n    {\n      \"campaignId\": 6034,\n      \"code\": \"string\",\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"externalIdentifier\": \"string\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Campaign"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 3304,\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"startDate\": \"string\",\n  \"endDate\": \"string\",\n  \"duration\": \"string\",\n  \"canSync\": true,\n  \"crmKey\": \"string\",\n  \"crmKeyUrls\": {\n    \"key_0\": {\n      \"crmKey\": \"string\",\n      \"url\": \"string\"\n    },\n    \"key_1\": {\n      \"crmKey\": \"string\",\n      \"url\": \"string\"\n    }\n  },\n  \"applySegmentToRecurringGifts\": true,\n  \"givingGoal\": 2498.822554541298,\n  \"givingGoalFormatted\": \"string\",\n  \"hasGivingGoal\": false,\n  \"raisedAmount\": \"string\",\n  \"raisedPercentage\": 931.3198685776025,\n  \"totalGiftGoal\": 5223,\n  \"hasTotalGiftGoal\": true,\n  \"totalGifts\": 4705,\n  \"totalGiftsPercentage\": 526.1911701499256,\n  \"totalDonors\": 3285,\n  \"averageGiftGoal\": 6362.917640728078,\n  \"averageGiftGoalFormatted\": \"string\",\n  \"averageGiftAmount\": \"string\",\n  \"hasAverageGiftGoal\": false,\n  \"totalVisitors\": 7715,\n  \"conversionRate\": \"string\",\n  \"createdDateTime\": \"string\",\n  \"modifiedDateTime\": \"string\"\n}"},{"id":"b224492b-3daa-440e-be5a-a7e2f8782521","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"endDate\": \"2021-03-24T03:29:15.620Z\",\n  \"name\": \"string\",\n  \"startDate\": \"1995-02-21T15:38:49.110Z\",\n  \"description\": \"string\",\n  \"startDateTimeUtc\": \"1985-04-29T12:49:51.199Z\",\n  \"endDateTimeUtc\": \"1994-03-06T13:44:28.972Z\",\n  \"givingGoal\": 2491.55146862319,\n  \"hasGivingGoal\": true,\n  \"totalGiftGoal\": 6570,\n  \"hasTotalGiftGoal\": true,\n  \"averageGiftGoal\": 2701.6913627971207,\n  \"hasAverageGiftGoal\": false,\n  \"crmKey\": \"string\",\n  \"crmKeys\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  },\n  \"applySegmentToRecurringGifts\": true,\n  \"canSync\": true,\n  \"segments\": [\n    {\n      \"campaignId\": 9382,\n      \"code\": \"string\",\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"externalIdentifier\": \"string\"\n    },\n    {\n      \"campaignId\": 6034,\n      \"code\": \"string\",\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"externalIdentifier\": \"string\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Campaign"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"3ee00fc8-45cd-4955-a53e-1ab88ef643e4"},{"name":"Get the count of dependencies for a campaign.","id":"99b10b6b-287d-4dde-873e-9a92fe323921","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Campaign/:campaignId/dependency-count","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Campaign",":campaignId","dependency-count"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"79e14146-6376-473c-af79-c602abb7ff91","description":{"content":"<p>The ID of the campaign.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"campaignId"}]}},"response":[{"id":"45734269-17f9-4ac0-855f-0f0249d26587","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Campaign/:campaignId/dependency-count","host":["https://prod-api.raisedonors.com"],"path":["api","Campaign",":campaignId","dependency-count"],"variable":[{"key":"campaignId","value":"3573","description":"The ID of the campaign."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"pageCount\": 8960\n}"},{"id":"46d0d45d-3835-4ddf-ba7a-683add6b5bfa","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Campaign/:campaignId/dependency-count","host":["https://prod-api.raisedonors.com"],"path":["api","Campaign",":campaignId","dependency-count"],"variable":[{"key":"campaignId","value":"3573","description":"The ID of the campaign."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"99b10b6b-287d-4dde-873e-9a92fe323921"},{"name":"Replace a campaign with another campaign for its dependencies.","id":"febcd5c9-48ae-4b78-99da-95b9beee3f15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"currentCampaignId\": 3941,\n  \"newCampaignId\": 475\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Campaign/replace","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Campaign","replace"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[]}},"response":[{"id":"366c1312-1f1d-49b4-bff2-c2378859bead","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"currentCampaignId\": 3941,\n  \"newCampaignId\": 475\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Campaign/replace"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"b0320d0d-ebdf-48d6-99e5-84866585b7be","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"currentCampaignId\": 3941,\n  \"newCampaignId\": 475\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Campaign/replace"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"febcd5c9-48ae-4b78-99da-95b9beee3f15"},{"name":"Toggle the sync status of a campaign.","id":"ebfd24e8-ca0a-406f-85e2-91636c807544","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Campaign/:campaignId/toggle-sync","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Campaign",":campaignId","toggle-sync"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"a53430a3-9ba0-4723-bfb4-694b43236a8f","description":{"content":"<p>The ID of the campaign</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"campaignId"}]}},"response":[{"id":"5ea2d1c3-f8e7-4523-94b1-e0788676f25a","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Campaign/:campaignId/toggle-sync","host":["https://prod-api.raisedonors.com"],"path":["api","Campaign",":campaignId","toggle-sync"],"variable":[{"key":"campaignId","value":"3573","description":"The ID of the campaign"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"true"},{"id":"04b4647f-29ba-45ff-a1b8-57131b2c2432","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Campaign/:campaignId/toggle-sync","host":["https://prod-api.raisedonors.com"],"path":["api","Campaign",":campaignId","toggle-sync"],"variable":[{"key":"campaignId","value":"3573","description":"The ID of the campaign"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"ebfd24e8-ca0a-406f-85e2-91636c807544"},{"name":"Query campaigns based on specified criteria.","id":"61e987f1-095b-440b-bef9-3bd0e5dfb45b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"filter\": \"string\",\n  \"skip\": 7689,\n  \"take\": 1304,\n  \"sortBy\": \"createdate\",\n  \"descending\": true,\n  \"queryType\": 3,\n  \"groups\": [\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 4,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 19,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    },\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    }\n  ],\n  \"selectedColumns\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Campaign/query","description":"<p>To discover available fields and operators for campaign queries:\nCall <code>/api/query/options/Campaign</code> to retrieve parameters, operators, and result fields.Build one or more groups of conditions using those parameters.POST the resulting RaiseDonors.Api.Models.Query.QueryRequestModel to this endpoint.\nFor numeric fields using the <code>Between</code> operator, provide the lower bound\nin <code>value</code> and the upper bound in <code>secondaryValue</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Campaign","query"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[]}},"response":[{"id":"c18ea5e5-8b2b-4e99-b465-24be787b3a5d","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"filter\": \"string\",\n  \"skip\": 7689,\n  \"take\": 1304,\n  \"sortBy\": \"createdate\",\n  \"descending\": true,\n  \"queryType\": 3,\n  \"groups\": [\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 4,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 19,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    },\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    }\n  ],\n  \"selectedColumns\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Campaign/query"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 6452,\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"startDate\": \"string\",\n      \"endDate\": \"string\",\n      \"givingGoal\": \"string\",\n      \"hasGivingGoal\": false,\n      \"raisedAmount\": \"string\",\n      \"averageGiftGoal\": \"string\",\n      \"hasAverageGiftGoal\": true,\n      \"averageGiftAmount\": \"string\",\n      \"raisedPercentage\": 248.2855675778506,\n      \"totalGiftGoal\": 7112,\n      \"hasTotalGiftGoal\": true,\n      \"totalGifts\": 5434,\n      \"metadata\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    {\n      \"id\": 3717,\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"startDate\": \"string\",\n      \"endDate\": \"string\",\n      \"givingGoal\": \"string\",\n      \"hasGivingGoal\": false,\n      \"raisedAmount\": \"string\",\n      \"averageGiftGoal\": \"string\",\n      \"hasAverageGiftGoal\": true,\n      \"averageGiftAmount\": \"string\",\n      \"raisedPercentage\": 5918.273731003132,\n      \"totalGiftGoal\": 3147,\n      \"hasTotalGiftGoal\": true,\n      \"totalGifts\": 7737,\n      \"metadata\": [\n        \"string\",\n        \"string\"\n      ]\n    }\n  ],\n  \"total\": 2385\n}"},{"id":"cab8d367-5357-4287-959d-67da2352e096","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"filter\": \"string\",\n  \"skip\": 7689,\n  \"take\": 1304,\n  \"sortBy\": \"createdate\",\n  \"descending\": true,\n  \"queryType\": 3,\n  \"groups\": [\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 4,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 19,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    },\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    }\n  ],\n  \"selectedColumns\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Campaign/query"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"61e987f1-095b-440b-bef9-3bd0e5dfb45b"}],"id":"48f8d4af-0e19-4df2-b00e-b678db7baaca","_postman_id":"48f8d4af-0e19-4df2-b00e-b678db7baaca","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}}},{"name":"CustomField","item":[{"name":"Get a paginated list of custom fields.","id":"24b4d703-2210-4795-bc0b-c8dbbcc61a42","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/CustomField/List?Filter=string&Skip=8361&Take=8361&SortBy=datatype&Descending=true","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","CustomField","List"],"host":["https://prod-api.raisedonors.com"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":{"content":"<p>Field to sort by (case-insensitive). Valid options: datatype, enabled, entitytype, id, name</p>\n","type":"text/plain"},"key":"SortBy","value":"datatype"},{"key":"Descending","value":"true"}],"variable":[]}},"response":[{"id":"4f33cbec-b68b-49ab-9b49-2e2f7f29637f","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/CustomField/List?Filter=string&Skip=8361&Take=8361&SortBy=datatype&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","CustomField","List"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: datatype, enabled, entitytype, id, name","key":"SortBy","value":"datatype"},{"key":"Descending","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 4813,\n      \"name\": \"string\",\n      \"entityType\": \"string\",\n      \"dataType\": \"string\",\n      \"source\": \"string\",\n      \"isEnabled\": false,\n      \"rank\": 5746.376510622877,\n      \"required\": true\n    },\n    {\n      \"id\": 7668,\n      \"name\": \"string\",\n      \"entityType\": \"string\",\n      \"dataType\": \"string\",\n      \"source\": \"string\",\n      \"isEnabled\": false,\n      \"rank\": 9907.127272736101,\n      \"required\": true\n    }\n  ],\n  \"total\": 2816\n}"},{"id":"48797709-bec5-48c8-be26-e2a1f31e893f","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/CustomField/List?Filter=string&Skip=8361&Take=8361&SortBy=datatype&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","CustomField","List"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: datatype, enabled, entitytype, id, name","key":"SortBy","value":"datatype"},{"key":"Descending","value":"true"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"24b4d703-2210-4795-bc0b-c8dbbcc61a42"},{"name":"Get a custom field by its ID.","id":"597fb6a0-3a5c-400f-95fc-cc6cbbfca7cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/CustomField/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","CustomField",":id"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"eb721061-939f-41fb-bad4-ee4a064e5788","description":{"content":"<p>The ID of the custom field.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"04dfa2e6-f660-416b-a556-2d343d96f177","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/CustomField/:id","host":["https://prod-api.raisedonors.com"],"path":["api","CustomField",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the custom field."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 5186,\n  \"customCollectionId\": 2342,\n  \"name\": \"string\",\n  \"displayName\": \"string\",\n  \"entityType\": 15,\n  \"entityTypeDisplayName\": \"string\",\n  \"dataType\": 6,\n  \"dataTypeDisplayName\": \"string\",\n  \"isEnabled\": false,\n  \"canSync\": false,\n  \"formatter\": 5,\n  \"listValues\": [\n    {\n      \"id\": 8283,\n      \"value\": \"string\",\n      \"active\": false,\n      \"rank\": 5613\n    },\n    {\n      \"id\": 9504,\n      \"value\": \"string\",\n      \"active\": false,\n      \"rank\": 8452\n    }\n  ],\n  \"rank\": 6070.501483861674,\n  \"required\": true\n}"},{"id":"82c3d723-2d4b-4115-a2a6-650dbe3bac75","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/CustomField/:id","host":["https://prod-api.raisedonors.com"],"path":["api","CustomField",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the custom field."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"597fb6a0-3a5c-400f-95fc-cc6cbbfca7cd"},{"name":"Update an existing custom field.","id":"fd03bc43-050d-4234-976e-15464d929d0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"dataType\": 5,\n  \"entityType\": 1,\n  \"name\": \"string\",\n  \"displayName\": \"string\",\n  \"isEnabled\": true,\n  \"required\": true,\n  \"rank\": 5317.606148084992,\n  \"canSync\": true,\n  \"formatter\": 5,\n  \"listValues\": [\n    {\n      \"id\": 7073,\n      \"value\": \"string\",\n      \"active\": false,\n      \"rank\": 9731\n    },\n    {\n      \"id\": 1452,\n      \"value\": \"string\",\n      \"active\": true,\n      \"rank\": 3401\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/CustomField/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","CustomField",":id"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"8c23d607-efc1-4452-b3bd-49d4587d0d68","description":{"content":"<p>The ID of the custom field.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"182650c7-b012-4716-bf19-7c3921eb15bf","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"dataType\": 5,\n  \"entityType\": 1,\n  \"name\": \"string\",\n  \"displayName\": \"string\",\n  \"isEnabled\": true,\n  \"required\": true,\n  \"rank\": 5317.606148084992,\n  \"canSync\": true,\n  \"formatter\": 5,\n  \"listValues\": [\n    {\n      \"id\": 7073,\n      \"value\": \"string\",\n      \"active\": false,\n      \"rank\": 9731\n    },\n    {\n      \"id\": 1452,\n      \"value\": \"string\",\n      \"active\": true,\n      \"rank\": 3401\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/CustomField/:id","host":["https://prod-api.raisedonors.com"],"path":["api","CustomField",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the custom field."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 5186,\n  \"customCollectionId\": 2342,\n  \"name\": \"string\",\n  \"displayName\": \"string\",\n  \"entityType\": 15,\n  \"entityTypeDisplayName\": \"string\",\n  \"dataType\": 6,\n  \"dataTypeDisplayName\": \"string\",\n  \"isEnabled\": false,\n  \"canSync\": false,\n  \"formatter\": 5,\n  \"listValues\": [\n    {\n      \"id\": 8283,\n      \"value\": \"string\",\n      \"active\": false,\n      \"rank\": 5613\n    },\n    {\n      \"id\": 9504,\n      \"value\": \"string\",\n      \"active\": false,\n      \"rank\": 8452\n    }\n  ],\n  \"rank\": 6070.501483861674,\n  \"required\": true\n}"},{"id":"05dffefa-83cc-4c80-b3ff-43048fda78ca","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"dataType\": 5,\n  \"entityType\": 1,\n  \"name\": \"string\",\n  \"displayName\": \"string\",\n  \"isEnabled\": true,\n  \"required\": true,\n  \"rank\": 5317.606148084992,\n  \"canSync\": true,\n  \"formatter\": 5,\n  \"listValues\": [\n    {\n      \"id\": 7073,\n      \"value\": \"string\",\n      \"active\": false,\n      \"rank\": 9731\n    },\n    {\n      \"id\": 1452,\n      \"value\": \"string\",\n      \"active\": true,\n      \"rank\": 3401\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/CustomField/:id","host":["https://prod-api.raisedonors.com"],"path":["api","CustomField",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the custom field."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"fd03bc43-050d-4234-976e-15464d929d0b"},{"name":"Delete a custom field by its ID.","id":"c3606824-0fb4-40da-91a2-ac59efe9ddea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/CustomField/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","CustomField",":id"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"2f1067d0-901c-4a1e-9631-6afb809364c6","description":{"content":"<p>The ID of the custom field.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"27676de8-7d4b-41b8-a4f9-a467ab52e4e2","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/CustomField/:id","host":["https://prod-api.raisedonors.com"],"path":["api","CustomField",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the custom field."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"6c4e57f6-a3fe-44f2-a9b8-8367cd389036","name":"Bad Request","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/CustomField/:id","host":["https://prod-api.raisedonors.com"],"path":["api","CustomField",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the custom field."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"c3606824-0fb4-40da-91a2-ac59efe9ddea"},{"name":"Create a new custom field.","id":"2bfa3599-526f-4029-9e89-d3d296b57b18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"dataType\": 5,\n  \"entityType\": 1,\n  \"name\": \"string\",\n  \"displayName\": \"string\",\n  \"isEnabled\": true,\n  \"required\": true,\n  \"rank\": 5317.606148084992,\n  \"canSync\": true,\n  \"formatter\": 5,\n  \"listValues\": [\n    {\n      \"id\": 7073,\n      \"value\": \"string\",\n      \"active\": false,\n      \"rank\": 9731\n    },\n    {\n      \"id\": 1452,\n      \"value\": \"string\",\n      \"active\": true,\n      \"rank\": 3401\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/CustomField","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","CustomField"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[]}},"response":[{"id":"aa1a969a-b632-4671-af6b-12252f455201","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"dataType\": 5,\n  \"entityType\": 1,\n  \"name\": \"string\",\n  \"displayName\": \"string\",\n  \"isEnabled\": true,\n  \"required\": true,\n  \"rank\": 5317.606148084992,\n  \"canSync\": true,\n  \"formatter\": 5,\n  \"listValues\": [\n    {\n      \"id\": 7073,\n      \"value\": \"string\",\n      \"active\": false,\n      \"rank\": 9731\n    },\n    {\n      \"id\": 1452,\n      \"value\": \"string\",\n      \"active\": true,\n      \"rank\": 3401\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/CustomField"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 5186,\n  \"customCollectionId\": 2342,\n  \"name\": \"string\",\n  \"displayName\": \"string\",\n  \"entityType\": 15,\n  \"entityTypeDisplayName\": \"string\",\n  \"dataType\": 6,\n  \"dataTypeDisplayName\": \"string\",\n  \"isEnabled\": false,\n  \"canSync\": false,\n  \"formatter\": 5,\n  \"listValues\": [\n    {\n      \"id\": 8283,\n      \"value\": \"string\",\n      \"active\": false,\n      \"rank\": 5613\n    },\n    {\n      \"id\": 9504,\n      \"value\": \"string\",\n      \"active\": false,\n      \"rank\": 8452\n    }\n  ],\n  \"rank\": 6070.501483861674,\n  \"required\": true\n}"},{"id":"522929e9-326a-40ac-97dc-755db1017a7c","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"dataType\": 5,\n  \"entityType\": 1,\n  \"name\": \"string\",\n  \"displayName\": \"string\",\n  \"isEnabled\": true,\n  \"required\": true,\n  \"rank\": 5317.606148084992,\n  \"canSync\": true,\n  \"formatter\": 5,\n  \"listValues\": [\n    {\n      \"id\": 7073,\n      \"value\": \"string\",\n      \"active\": false,\n      \"rank\": 9731\n    },\n    {\n      \"id\": 1452,\n      \"value\": \"string\",\n      \"active\": true,\n      \"rank\": 3401\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/CustomField"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"2bfa3599-526f-4029-9e89-d3d296b57b18"},{"name":"Get the dependency count for a custom field.","id":"f6b00730-c166-4ea6-b058-55d4bcc933d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/CustomField/:id/dependency-count","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","CustomField",":id","dependency-count"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"20c07165-73ea-496b-bf74-d0a6a419527d","description":{"content":"<p>The ID of the custom field.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"b93f493e-fc8d-4a65-91f7-b3889419f098","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/CustomField/:id/dependency-count","host":["https://prod-api.raisedonors.com"],"path":["api","CustomField",":id","dependency-count"],"variable":[{"key":"id","value":"3573","description":"The ID of the custom field."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"8361"},{"id":"47ca3c80-2a4d-4c96-9e72-74646a2b08cb","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/CustomField/:id/dependency-count","host":["https://prod-api.raisedonors.com"],"path":["api","CustomField",":id","dependency-count"],"variable":[{"key":"id","value":"3573","description":"The ID of the custom field."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"f6b00730-c166-4ea6-b058-55d4bcc933d7"}],"id":"54496de7-bfa9-4b3d-9b0c-38e75a9d1cca","_postman_id":"54496de7-bfa9-4b3d-9b0c-38e75a9d1cca","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}}},{"name":"Donor","item":[{"name":"Get a donor by ID.","id":"f4c38693-809b-4c6b-80ee-ea7ef45bb6cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Donor/:donorId","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":donorId"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"5ce1bc8f-761e-4071-8cdf-353793140eb3","description":{"content":"<p>The ID of the donor.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"donorId"}]}},"response":[{"id":"f2a8bdfc-1c62-4ab6-a98d-ac54420e899e","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:donorId","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":donorId"],"variable":[{"key":"donorId","value":"3573","description":"The ID of the donor."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 1989,\n  \"name\": \"string\",\n  \"title\": \"string\",\n  \"firstName\": \"string\",\n  \"middleName\": \"string\",\n  \"lastName\": \"string\",\n  \"suffix\": \"string\",\n  \"email\": \"string\",\n  \"phone\": \"string\",\n  \"createdDate\": \"string\",\n  \"modifiedDate\": \"string\",\n  \"notes\": \"string\",\n  \"isOrganization\": false,\n  \"organizationName\": \"string\",\n  \"crmKeyUrls\": {\n    \"key_0\": {\n      \"crmKey\": \"string\",\n      \"url\": \"string\"\n    },\n    \"key_1\": {\n      \"crmKey\": \"string\",\n      \"url\": \"string\"\n    }\n  },\n  \"crmKey\": \"string\",\n  \"crmSecondKey\": \"string\",\n  \"isTestMode\": false,\n  \"isArchived\": true,\n  \"isGDPRDeleted\": true,\n  \"primaryAddress\": {\n    \"address1\": \"string\",\n    \"address2\": \"string\",\n    \"city\": \"string\",\n    \"state\": \"string\",\n    \"postal\": \"string\",\n    \"countryString\": \"string\",\n    \"addressType\": 3,\n    \"addressTypeDisplay\": \"string\"\n  },\n  \"donorAddresses\": [\n    {\n      \"address1\": \"string\",\n      \"address2\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"postal\": \"string\",\n      \"countryString\": \"string\",\n      \"addressType\": 5,\n      \"addressTypeDisplay\": \"string\"\n    },\n    {\n      \"address1\": \"string\",\n      \"address2\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"postal\": \"string\",\n      \"countryString\": \"string\",\n      \"addressType\": 4,\n      \"addressTypeDisplay\": \"string\"\n    }\n  ],\n  \"donorEmailAddresses\": [\n    {\n      \"id\": 1951,\n      \"donorId\": 6944,\n      \"type\": 0,\n      \"typeDisplay\": \"string\",\n      \"value\": \"string\",\n      \"secondaryValue\": \"string\",\n      \"isPrimary\": true,\n      \"isOptedIn\": true,\n      \"isValid\": true,\n      \"isEmail\": false,\n      \"isPhone\": true,\n      \"isBounced\": false,\n      \"countryCode\": \"string\"\n    },\n    {\n      \"id\": 3744,\n      \"donorId\": 7863,\n      \"type\": 99,\n      \"typeDisplay\": \"string\",\n      \"value\": \"string\",\n      \"secondaryValue\": \"string\",\n      \"isPrimary\": false,\n      \"isOptedIn\": true,\n      \"isValid\": true,\n      \"isEmail\": false,\n      \"isPhone\": false,\n      \"isBounced\": false,\n      \"countryCode\": \"string\"\n    }\n  ],\n  \"donorPhoneNumbers\": [\n    {\n      \"id\": 3232,\n      \"donorId\": 4824,\n      \"type\": 21,\n      \"typeDisplay\": \"string\",\n      \"value\": \"string\",\n      \"secondaryValue\": \"string\",\n      \"isPrimary\": false,\n      \"isOptedIn\": true,\n      \"isValid\": false,\n      \"isEmail\": true,\n      \"isPhone\": true,\n      \"isBounced\": false,\n      \"countryCode\": \"string\"\n    },\n    {\n      \"id\": 7846,\n      \"donorId\": 7880,\n      \"type\": 11,\n      \"typeDisplay\": \"string\",\n      \"value\": \"string\",\n      \"secondaryValue\": \"string\",\n      \"isPrimary\": false,\n      \"isOptedIn\": true,\n      \"isValid\": false,\n      \"isEmail\": true,\n      \"isPhone\": false,\n      \"isBounced\": true,\n      \"countryCode\": \"string\"\n    }\n  ]\n}"},{"id":"8108f59c-08c1-4339-93bf-37d0e94135b6","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:donorId","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":donorId"],"variable":[{"key":"donorId","value":"3573","description":"The ID of the donor."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"f4c38693-809b-4c6b-80ee-ea7ef45bb6cd"},{"name":"Get a paginated list of donors.","id":"15d6bad9-db5a-45f1-a127-b3dfa95832d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Donor/list?Filter=string&Skip=8361&Take=8361&SortBy=createdate&Descending=true","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor","list"],"host":["https://prod-api.raisedonors.com"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":{"content":"<p>Field to sort by (case-insensitive). Valid options: createdate, createddatetime, email, firstname, gifts, giftsum, id, lastname, modifieddatetimeutc, name, phone</p>\n","type":"text/plain"},"key":"SortBy","value":"createdate"},{"key":"Descending","value":"true"}],"variable":[]}},"response":[{"id":"5fb05890-4773-4bbc-b117-3a018059b329","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/list?Filter=string&Skip=8361&Take=8361&SortBy=createdate&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Donor","list"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: createdate, createddatetime, email, firstname, gifts, giftsum, id, lastname, modifieddatetimeutc, name, phone","key":"SortBy","value":"createdate"},{"key":"Descending","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 8935,\n      \"name\": \"string\",\n      \"firstName\": \"string\",\n      \"lastName\": \"string\",\n      \"email\": \"string\",\n      \"phone\": \"string\",\n      \"createdDate\": \"string\",\n      \"isOrganization\": false,\n      \"isArchived\": false,\n      \"isGDPRDeleted\": false,\n      \"primaryAddress\": {\n        \"address1\": \"string\",\n        \"address2\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"postal\": \"string\",\n        \"countryString\": \"string\",\n        \"addressType\": 5,\n        \"addressTypeDisplay\": \"string\"\n      },\n      \"metadata\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    {\n      \"id\": 9838,\n      \"name\": \"string\",\n      \"firstName\": \"string\",\n      \"lastName\": \"string\",\n      \"email\": \"string\",\n      \"phone\": \"string\",\n      \"createdDate\": \"string\",\n      \"isOrganization\": true,\n      \"isArchived\": false,\n      \"isGDPRDeleted\": false,\n      \"primaryAddress\": {\n        \"address1\": \"string\",\n        \"address2\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"postal\": \"string\",\n        \"countryString\": \"string\",\n        \"addressType\": 4,\n        \"addressTypeDisplay\": \"string\"\n      },\n      \"metadata\": [\n        \"string\",\n        \"string\"\n      ]\n    }\n  ],\n  \"total\": 8676\n}"},{"id":"4e1485d6-fd7a-4542-ac4b-ee6cce7ea1c5","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/list?Filter=string&Skip=8361&Take=8361&SortBy=createdate&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Donor","list"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: createdate, createddatetime, email, firstname, gifts, giftsum, id, lastname, modifieddatetimeutc, name, phone","key":"SortBy","value":"createdate"},{"key":"Descending","value":"true"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"15d6bad9-db5a-45f1-a127-b3dfa95832d0"},{"name":"Query donors based on specified criteria.","id":"992571b5-92d6-412a-b7ac-8883a1cef5f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"filter\": \"string\",\n  \"skip\": 7689,\n  \"take\": 1304,\n  \"sortBy\": \"createdate\",\n  \"descending\": true,\n  \"queryType\": 3,\n  \"groups\": [\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 4,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 19,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    },\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    }\n  ],\n  \"selectedColumns\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Donor/query","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor","query"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[]}},"response":[{"id":"66b94deb-0d87-4448-91b9-552521f8b002","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"filter\": \"string\",\n  \"skip\": 7689,\n  \"take\": 1304,\n  \"sortBy\": \"createdate\",\n  \"descending\": true,\n  \"queryType\": 3,\n  \"groups\": [\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 4,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 19,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    },\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    }\n  ],\n  \"selectedColumns\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Donor/query"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 8935,\n      \"name\": \"string\",\n      \"firstName\": \"string\",\n      \"lastName\": \"string\",\n      \"email\": \"string\",\n      \"phone\": \"string\",\n      \"createdDate\": \"string\",\n      \"isOrganization\": false,\n      \"isArchived\": false,\n      \"isGDPRDeleted\": false,\n      \"primaryAddress\": {\n        \"address1\": \"string\",\n        \"address2\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"postal\": \"string\",\n        \"countryString\": \"string\",\n        \"addressType\": 5,\n        \"addressTypeDisplay\": \"string\"\n      },\n      \"metadata\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    {\n      \"id\": 9838,\n      \"name\": \"string\",\n      \"firstName\": \"string\",\n      \"lastName\": \"string\",\n      \"email\": \"string\",\n      \"phone\": \"string\",\n      \"createdDate\": \"string\",\n      \"isOrganization\": true,\n      \"isArchived\": false,\n      \"isGDPRDeleted\": false,\n      \"primaryAddress\": {\n        \"address1\": \"string\",\n        \"address2\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"postal\": \"string\",\n        \"countryString\": \"string\",\n        \"addressType\": 4,\n        \"addressTypeDisplay\": \"string\"\n      },\n      \"metadata\": [\n        \"string\",\n        \"string\"\n      ]\n    }\n  ],\n  \"total\": 8676\n}"},{"id":"a3cdfede-45ab-4b99-997d-9bfdabcf6bfe","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"filter\": \"string\",\n  \"skip\": 7689,\n  \"take\": 1304,\n  \"sortBy\": \"createdate\",\n  \"descending\": true,\n  \"queryType\": 3,\n  \"groups\": [\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 4,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 19,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    },\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    }\n  ],\n  \"selectedColumns\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Donor/query"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"992571b5-92d6-412a-b7ac-8883a1cef5f5"},{"name":"Search for donors by a filter string. Can match on donor ID, first name, last name, organization name,\nphone number, email address, postal code, and state. Supports searching by first/last name combinations,\nname with state, name with postal code, phone n","id":"af90ce16-bb20-4ac1-b1e0-43b122a243b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Donor/search?filter=string","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor","search"],"host":["https://prod-api.raisedonors.com"],"query":[{"description":{"content":"<p>The search term to match against donor fields. Can be ID, name, email, phone, address, or combinations.</p>\n","type":"text/plain"},"key":"filter","value":"string"}],"variable":[]}},"response":[{"id":"fb304f31-5ada-4256-b71d-7ad7615b090f","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/search?filter=string","host":["https://prod-api.raisedonors.com"],"path":["api","Donor","search"],"query":[{"description":"The search term to match against donor fields. Can be ID, name, email, phone, address, or combinations.","key":"filter","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": 8826,\n    \"crmKey\": \"string\",\n    \"name\": \"string\",\n    \"title\": \"string\",\n    \"firstName\": \"string\",\n    \"lastName\": \"string\",\n    \"suffix\": \"string\",\n    \"email\": \"string\",\n    \"phone\": \"string\",\n    \"isOrganization\": false,\n    \"organizationName\": \"string\",\n    \"notes\": \"string\",\n    \"primaryAddress\": {\n      \"address1\": \"string\",\n      \"address2\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"postal\": \"string\",\n      \"countryString\": \"string\",\n      \"addressType\": 2,\n      \"addressTypeDisplay\": \"string\"\n    }\n  },\n  {\n    \"id\": 749,\n    \"crmKey\": \"string\",\n    \"name\": \"string\",\n    \"title\": \"string\",\n    \"firstName\": \"string\",\n    \"lastName\": \"string\",\n    \"suffix\": \"string\",\n    \"email\": \"string\",\n    \"phone\": \"string\",\n    \"isOrganization\": true,\n    \"organizationName\": \"string\",\n    \"notes\": \"string\",\n    \"primaryAddress\": {\n      \"address1\": \"string\",\n      \"address2\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"postal\": \"string\",\n      \"countryString\": \"string\",\n      \"addressType\": 2,\n      \"addressTypeDisplay\": \"string\"\n    }\n  }\n]"},{"id":"67d5fa90-fbe8-4f63-8891-b8bac51a6e90","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/search?filter=string","host":["https://prod-api.raisedonors.com"],"path":["api","Donor","search"],"query":[{"description":"The search term to match against donor fields. Can be ID, name, email, phone, address, or combinations.","key":"filter","value":"string"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"af90ce16-bb20-4ac1-b1e0-43b122a243b4"},{"name":"Update an existing donor (full update).","id":"7288e1e9-3c67-437f-9774-39f504f0fd35","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"firstName\": \"string\",\n  \"lastName\": \"string\",\n  \"title\": \"string\",\n  \"middleName\": \"string\",\n  \"suffix\": \"string\",\n  \"email\": \"GnTZ@rKeNXdJhwZ.mc\",\n  \"phone\": \"string\",\n  \"notes\": \"string\",\n  \"isOrganization\": false,\n  \"organizationName\": \"string\",\n  \"crmKey\": \"string\",\n  \"crmKeys\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\",\n    \"key_2\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Donor/:id","description":"<p>This endpoint performs a full update of the donor record. All fields in the request will replace existing values.\nTo update only specific fields, use the PATCH endpoint instead.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":id"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"1b156b24-59bf-4b3c-aa6d-80727e8dbbc9","description":{"content":"<p>The ID of the donor to update.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"be3a9fea-ae5b-41a2-b624-09bbf90cf9d2","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"firstName\": \"string\",\n  \"lastName\": \"string\",\n  \"title\": \"string\",\n  \"middleName\": \"string\",\n  \"suffix\": \"string\",\n  \"email\": \"GnTZ@rKeNXdJhwZ.mc\",\n  \"phone\": \"string\",\n  \"notes\": \"string\",\n  \"isOrganization\": false,\n  \"organizationName\": \"string\",\n  \"crmKey\": \"string\",\n  \"crmKeys\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\",\n    \"key_2\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor to update."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 7559,\n  \"name\": \"string\",\n  \"title\": \"string\",\n  \"firstName\": \"string\",\n  \"middleName\": \"string\",\n  \"lastName\": \"string\",\n  \"suffix\": \"string\",\n  \"email\": \"string\",\n  \"phone\": \"string\",\n  \"createdDate\": \"string\",\n  \"modifiedDate\": \"string\",\n  \"notes\": \"string\",\n  \"isOrganization\": true,\n  \"organizationName\": \"string\",\n  \"crmKeyUrls\": {\n    \"key_0\": {\n      \"crmKey\": \"string\",\n      \"url\": \"string\"\n    },\n    \"key_1\": {\n      \"crmKey\": \"string\",\n      \"url\": \"string\"\n    },\n    \"key_2\": {\n      \"crmKey\": \"string\",\n      \"url\": \"string\"\n    }\n  },\n  \"crmKey\": \"string\",\n  \"crmSecondKey\": \"string\",\n  \"isTestMode\": false,\n  \"isArchived\": true,\n  \"isGDPRDeleted\": false,\n  \"primaryAddress\": {\n    \"address1\": \"string\",\n    \"address2\": \"string\",\n    \"city\": \"string\",\n    \"state\": \"string\",\n    \"postal\": \"string\",\n    \"countryString\": \"string\",\n    \"addressType\": 1,\n    \"addressTypeDisplay\": \"string\"\n  },\n  \"donorAddresses\": [\n    {\n      \"address1\": \"string\",\n      \"address2\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"postal\": \"string\",\n      \"countryString\": \"string\",\n      \"addressType\": 0,\n      \"addressTypeDisplay\": \"string\"\n    },\n    {\n      \"address1\": \"string\",\n      \"address2\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"postal\": \"string\",\n      \"countryString\": \"string\",\n      \"addressType\": 1,\n      \"addressTypeDisplay\": \"string\"\n    }\n  ],\n  \"donorEmailAddresses\": [\n    {\n      \"id\": 8640,\n      \"donorId\": 5630,\n      \"type\": 99,\n      \"typeDisplay\": \"string\",\n      \"value\": \"string\",\n      \"secondaryValue\": \"string\",\n      \"isPrimary\": true,\n      \"isOptedIn\": false,\n      \"isValid\": true,\n      \"isEmail\": false,\n      \"isPhone\": false,\n      \"isBounced\": true,\n      \"countryCode\": \"string\"\n    },\n    {\n      \"id\": 1974,\n      \"donorId\": 9863,\n      \"type\": 12,\n      \"typeDisplay\": \"string\",\n      \"value\": \"string\",\n      \"secondaryValue\": \"string\",\n      \"isPrimary\": false,\n      \"isOptedIn\": false,\n      \"isValid\": true,\n      \"isEmail\": false,\n      \"isPhone\": true,\n      \"isBounced\": false,\n      \"countryCode\": \"string\"\n    }\n  ],\n  \"donorPhoneNumbers\": [\n    {\n      \"id\": 5597,\n      \"donorId\": 8520,\n      \"type\": 21,\n      \"typeDisplay\": \"string\",\n      \"value\": \"string\",\n      \"secondaryValue\": \"string\",\n      \"isPrimary\": false,\n      \"isOptedIn\": true,\n      \"isValid\": true,\n      \"isEmail\": false,\n      \"isPhone\": false,\n      \"isBounced\": true,\n      \"countryCode\": \"string\"\n    },\n    {\n      \"id\": 6131,\n      \"donorId\": 9452,\n      \"type\": 20,\n      \"typeDisplay\": \"string\",\n      \"value\": \"string\",\n      \"secondaryValue\": \"string\",\n      \"isPrimary\": false,\n      \"isOptedIn\": true,\n      \"isValid\": true,\n      \"isEmail\": false,\n      \"isPhone\": true,\n      \"isBounced\": true,\n      \"countryCode\": \"string\"\n    }\n  ]\n}"},{"id":"bd4fed13-fc6d-4ac8-91aa-7f382066d2ef","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"firstName\": \"string\",\n  \"lastName\": \"string\",\n  \"title\": \"string\",\n  \"middleName\": \"string\",\n  \"suffix\": \"string\",\n  \"email\": \"GnTZ@rKeNXdJhwZ.mc\",\n  \"phone\": \"string\",\n  \"notes\": \"string\",\n  \"isOrganization\": false,\n  \"organizationName\": \"string\",\n  \"crmKey\": \"string\",\n  \"crmKeys\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\",\n    \"key_2\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor to update."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"0d6d6f47-c811-458e-adf2-9a84afe93c14","name":"Not Found","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"firstName\": \"string\",\n  \"lastName\": \"string\",\n  \"title\": \"string\",\n  \"middleName\": \"string\",\n  \"suffix\": \"string\",\n  \"email\": \"GnTZ@rKeNXdJhwZ.mc\",\n  \"phone\": \"string\",\n  \"notes\": \"string\",\n  \"isOrganization\": false,\n  \"organizationName\": \"string\",\n  \"crmKey\": \"string\",\n  \"crmKeys\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\",\n    \"key_2\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor to update."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"7288e1e9-3c67-437f-9774-39f504f0fd35"},{"name":"Partially update an existing donor.","id":"b48185b6-62c2-4b9d-8a84-55fff40faec4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"string\",\n  \"firstName\": \"string\",\n  \"middleName\": \"string\",\n  \"lastName\": \"string\",\n  \"suffix\": \"string\",\n  \"email\": \"cAAoBGakrz5@OLkUXAtVwiXwKbGHiGaqJcEWuxKJ.qb\",\n  \"phone\": \"string\",\n  \"notes\": \"string\",\n  \"isOrganization\": true,\n  \"organizationName\": \"string\",\n  \"crmKeys\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\",\n    \"key_2\": \"string\",\n    \"key_3\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Donor/:id","description":"<p>This endpoint performs a partial update of the donor record. Only fields that are provided (non-null) in the request will be updated.\nAll other fields will remain unchanged. This is useful when you only want to update specific fields without providing the entire donor object.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":id"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"078d065a-bca4-41cf-8934-1473f36f1230","description":{"content":"<p>The ID of the donor to update.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"0859550f-433b-45c4-bab1-0fe6be4ac91a","name":"OK","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"string\",\n  \"firstName\": \"string\",\n  \"middleName\": \"string\",\n  \"lastName\": \"string\",\n  \"suffix\": \"string\",\n  \"email\": \"cAAoBGakrz5@OLkUXAtVwiXwKbGHiGaqJcEWuxKJ.qb\",\n  \"phone\": \"string\",\n  \"notes\": \"string\",\n  \"isOrganization\": true,\n  \"organizationName\": \"string\",\n  \"crmKeys\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\",\n    \"key_2\": \"string\",\n    \"key_3\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor to update."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 7559,\n  \"name\": \"string\",\n  \"title\": \"string\",\n  \"firstName\": \"string\",\n  \"middleName\": \"string\",\n  \"lastName\": \"string\",\n  \"suffix\": \"string\",\n  \"email\": \"string\",\n  \"phone\": \"string\",\n  \"createdDate\": \"string\",\n  \"modifiedDate\": \"string\",\n  \"notes\": \"string\",\n  \"isOrganization\": true,\n  \"organizationName\": \"string\",\n  \"crmKeyUrls\": {\n    \"key_0\": {\n      \"crmKey\": \"string\",\n      \"url\": \"string\"\n    },\n    \"key_1\": {\n      \"crmKey\": \"string\",\n      \"url\": \"string\"\n    },\n    \"key_2\": {\n      \"crmKey\": \"string\",\n      \"url\": \"string\"\n    }\n  },\n  \"crmKey\": \"string\",\n  \"crmSecondKey\": \"string\",\n  \"isTestMode\": false,\n  \"isArchived\": true,\n  \"isGDPRDeleted\": false,\n  \"primaryAddress\": {\n    \"address1\": \"string\",\n    \"address2\": \"string\",\n    \"city\": \"string\",\n    \"state\": \"string\",\n    \"postal\": \"string\",\n    \"countryString\": \"string\",\n    \"addressType\": 1,\n    \"addressTypeDisplay\": \"string\"\n  },\n  \"donorAddresses\": [\n    {\n      \"address1\": \"string\",\n      \"address2\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"postal\": \"string\",\n      \"countryString\": \"string\",\n      \"addressType\": 0,\n      \"addressTypeDisplay\": \"string\"\n    },\n    {\n      \"address1\": \"string\",\n      \"address2\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"postal\": \"string\",\n      \"countryString\": \"string\",\n      \"addressType\": 1,\n      \"addressTypeDisplay\": \"string\"\n    }\n  ],\n  \"donorEmailAddresses\": [\n    {\n      \"id\": 8640,\n      \"donorId\": 5630,\n      \"type\": 99,\n      \"typeDisplay\": \"string\",\n      \"value\": \"string\",\n      \"secondaryValue\": \"string\",\n      \"isPrimary\": true,\n      \"isOptedIn\": false,\n      \"isValid\": true,\n      \"isEmail\": false,\n      \"isPhone\": false,\n      \"isBounced\": true,\n      \"countryCode\": \"string\"\n    },\n    {\n      \"id\": 1974,\n      \"donorId\": 9863,\n      \"type\": 12,\n      \"typeDisplay\": \"string\",\n      \"value\": \"string\",\n      \"secondaryValue\": \"string\",\n      \"isPrimary\": false,\n      \"isOptedIn\": false,\n      \"isValid\": true,\n      \"isEmail\": false,\n      \"isPhone\": true,\n      \"isBounced\": false,\n      \"countryCode\": \"string\"\n    }\n  ],\n  \"donorPhoneNumbers\": [\n    {\n      \"id\": 5597,\n      \"donorId\": 8520,\n      \"type\": 21,\n      \"typeDisplay\": \"string\",\n      \"value\": \"string\",\n      \"secondaryValue\": \"string\",\n      \"isPrimary\": false,\n      \"isOptedIn\": true,\n      \"isValid\": true,\n      \"isEmail\": false,\n      \"isPhone\": false,\n      \"isBounced\": true,\n      \"countryCode\": \"string\"\n    },\n    {\n      \"id\": 6131,\n      \"donorId\": 9452,\n      \"type\": 20,\n      \"typeDisplay\": \"string\",\n      \"value\": \"string\",\n      \"secondaryValue\": \"string\",\n      \"isPrimary\": false,\n      \"isOptedIn\": true,\n      \"isValid\": true,\n      \"isEmail\": false,\n      \"isPhone\": true,\n      \"isBounced\": true,\n      \"countryCode\": \"string\"\n    }\n  ]\n}"},{"id":"6d5cfc86-49e7-4ad5-86f8-1a75bb8ac12b","name":"Bad Request","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"string\",\n  \"firstName\": \"string\",\n  \"middleName\": \"string\",\n  \"lastName\": \"string\",\n  \"suffix\": \"string\",\n  \"email\": \"cAAoBGakrz5@OLkUXAtVwiXwKbGHiGaqJcEWuxKJ.qb\",\n  \"phone\": \"string\",\n  \"notes\": \"string\",\n  \"isOrganization\": true,\n  \"organizationName\": \"string\",\n  \"crmKeys\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\",\n    \"key_2\": \"string\",\n    \"key_3\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor to update."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"554d907e-7823-4d3f-b2bd-c04c59aaf90a","name":"Not Found","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"string\",\n  \"firstName\": \"string\",\n  \"middleName\": \"string\",\n  \"lastName\": \"string\",\n  \"suffix\": \"string\",\n  \"email\": \"cAAoBGakrz5@OLkUXAtVwiXwKbGHiGaqJcEWuxKJ.qb\",\n  \"phone\": \"string\",\n  \"notes\": \"string\",\n  \"isOrganization\": true,\n  \"organizationName\": \"string\",\n  \"crmKeys\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\",\n    \"key_2\": \"string\",\n    \"key_3\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor to update."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"b48185b6-62c2-4b9d-8a84-55fff40faec4"},{"name":"Archive a donor.","id":"5b24ef9d-0070-4bfa-a658-c9241ee42c90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Donor/:id/archive","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":id","archive"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"aadbc259-768d-42be-99db-9146ce2eab8a","type":"any","value":"3573","key":"id"}]}},"response":[{"id":"4b5a30b0-a4a4-47ab-95be-d92f4cf88835","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/archive","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","archive"],"variable":[{"key":"id","value":"3573"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"96bd9a92-5175-4c7f-8117-85d25b893051","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/archive","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","archive"],"variable":[{"key":"id","value":"3573"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"2d53c1d7-5ea2-4e7d-b12c-ac9d4f27e44b","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/archive","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","archive"],"variable":[{"key":"id","value":"3573"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"5b24ef9d-0070-4bfa-a658-c9241ee42c90"},{"name":"Merge two donors.","id":"a896b5a3-ebd0-4ea4-9927-67cbca64817c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Donor/merge?sourceDonorId=3573&targetDonorId=3573","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor","merge"],"host":["https://prod-api.raisedonors.com"],"query":[{"description":{"content":"<p>The ID of the source donor.</p>\n","type":"text/plain"},"key":"sourceDonorId","value":"3573"},{"description":{"content":"<p>The ID of the target donor.</p>\n","type":"text/plain"},"key":"targetDonorId","value":"3573"}],"variable":[]}},"response":[{"id":"d0db683a-a909-4794-af9a-79b945dfc76e","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/merge?sourceDonorId=3573&targetDonorId=3573","host":["https://prod-api.raisedonors.com"],"path":["api","Donor","merge"],"query":[{"description":"The ID of the source donor.","key":"sourceDonorId","value":"3573"},{"description":"The ID of the target donor.","key":"targetDonorId","value":"3573"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"7da1b6eb-f7b6-43de-b227-8a82b536d447","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/merge?sourceDonorId=3573&targetDonorId=3573","host":["https://prod-api.raisedonors.com"],"path":["api","Donor","merge"],"query":[{"description":"The ID of the source donor.","key":"sourceDonorId","value":"3573"},{"description":"The ID of the target donor.","key":"targetDonorId","value":"3573"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"a896b5a3-ebd0-4ea4-9927-67cbca64817c"},{"name":"Update the notes for a donor.","id":"283f092d-05e9-4318-9c4f-1847818f4185","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Donor/:donorId/notes?notes=string","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":donorId","notes"],"host":["https://prod-api.raisedonors.com"],"query":[{"description":{"content":"<p>The updated notes.</p>\n","type":"text/plain"},"key":"notes","value":"string"}],"variable":[{"id":"290e0245-d088-48fa-8697-47b9e32196cc","description":{"content":"<p>The ID of the donor.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"donorId"}]}},"response":[{"id":"838f4493-0b4c-4916-9a95-eb8767e078b4","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:donorId/notes?notes=string","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":donorId","notes"],"query":[{"description":"The updated notes.","key":"notes","value":"string"}],"variable":[{"key":"donorId","value":"3573","description":"The ID of the donor."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"string"},{"id":"a4101403-ed9b-40c6-bfe3-dbdd30c79591","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:donorId/notes?notes=string","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":donorId","notes"],"query":[{"description":"The updated notes.","key":"notes","value":"string"}],"variable":[{"key":"donorId","value":"3573","description":"The ID of the donor."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"283f092d-05e9-4318-9c4f-1847818f4185"},{"name":"Get a specific donor address by ID.","id":"78067469-87aa-4db0-8c6c-21978f83dba5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Donor/:id/address/:addressId","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":id","address",":addressId"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"8f7a0ee8-944c-404b-a5de-90f1a79ca882","type":"any","value":"3573","key":"id"},{"id":"36f34aa4-8084-4f90-a591-82e56b00cb46","description":{"content":"<p>The ID of the donor address.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"addressId"}]}},"response":[{"id":"58c44c22-8e39-4f41-bd1f-bab5b32a1c51","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/address/:addressId","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","address",":addressId"],"variable":[{"key":"id","value":"3573"},{"key":"addressId","value":"3573","description":"The ID of the donor address."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"address1\": \"string\",\n  \"address2\": \"string\",\n  \"city\": \"string\",\n  \"state\": \"string\",\n  \"postal\": \"string\",\n  \"countryString\": \"string\",\n  \"addressType\": 3,\n  \"addressTypeDisplay\": \"string\"\n}"},{"id":"f309d700-390a-41dd-aae6-77f744446689","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/address/:addressId","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","address",":addressId"],"variable":[{"key":"id","value":"3573"},{"key":"addressId","value":"3573","description":"The ID of the donor address."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"f89be9ca-251f-4e54-a5e1-f01ade8130e6","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/address/:addressId","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","address",":addressId"],"variable":[{"key":"id","value":"3573"},{"key":"addressId","value":"3573","description":"The ID of the donor address."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"78067469-87aa-4db0-8c6c-21978f83dba5"},{"name":"Partially update a donor address. Only provided fields will be updated.","id":"15c52228-0e6d-43ab-802a-2a1843e5cf31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"address1\": \"string\",\n  \"address2\": \"string\",\n  \"city\": \"string\",\n  \"state\": \"string\",\n  \"postal\": \"string\",\n  \"countryString\": \"string\",\n  \"addressType\": 3,\n  \"isPrimary\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Donor/:id/address/:addressId","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":id","address",":addressId"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"f7bcb49d-dae6-4d43-bee1-9d7de3c9afff","description":{"content":"<p>The ID of the donor (not used, but required for route).</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"},{"id":"7ef696a6-03f6-4564-9632-fc5380e9695a","description":{"content":"<p>The ID of the donor address.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"addressId"}]}},"response":[{"id":"f3de5bb3-e95f-435c-9172-e846854c29bd","name":"OK","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"address1\": \"string\",\n  \"address2\": \"string\",\n  \"city\": \"string\",\n  \"state\": \"string\",\n  \"postal\": \"string\",\n  \"countryString\": \"string\",\n  \"addressType\": 3,\n  \"isPrimary\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/address/:addressId","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","address",":addressId"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor (not used, but required for route)."},{"key":"addressId","value":"3573","description":"The ID of the donor address."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"address1\": \"string\",\n  \"address2\": \"string\",\n  \"city\": \"string\",\n  \"state\": \"string\",\n  \"postal\": \"string\",\n  \"countryString\": \"string\",\n  \"addressType\": 3,\n  \"addressTypeDisplay\": \"string\"\n}"},{"id":"eec573eb-96ac-4bad-9801-276ce8bdb061","name":"Bad Request","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"address1\": \"string\",\n  \"address2\": \"string\",\n  \"city\": \"string\",\n  \"state\": \"string\",\n  \"postal\": \"string\",\n  \"countryString\": \"string\",\n  \"addressType\": 3,\n  \"isPrimary\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/address/:addressId","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","address",":addressId"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor (not used, but required for route)."},{"key":"addressId","value":"3573","description":"The ID of the donor address."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"b2fb9fe4-7ed9-483e-8ed5-cb30c666a1f5","name":"Not Found","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"address1\": \"string\",\n  \"address2\": \"string\",\n  \"city\": \"string\",\n  \"state\": \"string\",\n  \"postal\": \"string\",\n  \"countryString\": \"string\",\n  \"addressType\": 3,\n  \"isPrimary\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/address/:addressId","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","address",":addressId"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor (not used, but required for route)."},{"key":"addressId","value":"3573","description":"The ID of the donor address."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"15c52228-0e6d-43ab-802a-2a1843e5cf31"},{"name":"Create a new donor address.","id":"778635c3-ba65-4f7b-bef1-d104111734bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"address1\": \"string\",\n  \"address2\": \"string\",\n  \"city\": \"string\",\n  \"state\": \"string\",\n  \"postal\": \"string\",\n  \"countryString\": \"string\",\n  \"addressType\": 1\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Donor/:id/address","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":id","address"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"1a7c9e6c-63d1-4df0-abd5-13ea9cf61cd4","description":{"content":"<p>The ID of the donor.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"b834f36f-24df-46e6-8d04-ef9379dac1e4","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"address1\": \"string\",\n  \"address2\": \"string\",\n  \"city\": \"string\",\n  \"state\": \"string\",\n  \"postal\": \"string\",\n  \"countryString\": \"string\",\n  \"addressType\": 1\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/address","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","address"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"address1\": \"string\",\n  \"address2\": \"string\",\n  \"city\": \"string\",\n  \"state\": \"string\",\n  \"postal\": \"string\",\n  \"countryString\": \"string\",\n  \"addressType\": 3,\n  \"addressTypeDisplay\": \"string\"\n}"},{"id":"eb8fc1cd-62df-4ae8-a732-ee3fa0b0e8b7","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"address1\": \"string\",\n  \"address2\": \"string\",\n  \"city\": \"string\",\n  \"state\": \"string\",\n  \"postal\": \"string\",\n  \"countryString\": \"string\",\n  \"addressType\": 1\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/address","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","address"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"991b591e-ba82-4d78-bc05-ef3a12acd393","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"address1\": \"string\",\n  \"address2\": \"string\",\n  \"city\": \"string\",\n  \"state\": \"string\",\n  \"postal\": \"string\",\n  \"countryString\": \"string\",\n  \"addressType\": 1\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/address","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","address"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"778635c3-ba65-4f7b-bef1-d104111734bb"},{"name":"Update an existing donor address.","id":"868c39ea-0d6d-4217-ae0e-3055f080b229","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"address1\": \"string\",\n  \"address2\": \"string\",\n  \"city\": \"string\",\n  \"state\": \"string\",\n  \"postal\": \"string\",\n  \"countryString\": \"string\",\n  \"addressType\": 1\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Donor/:id/address/:addressId/update","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":id","address",":addressId","update"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"e2e3da6b-5edf-4639-abbe-b2b4348dbfe6","type":"any","value":"3573","key":"id"},{"id":"87dab67f-160b-4448-98d5-54ddb696c16e","description":{"content":"<p>The ID of the donor address to update.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"addressId"}]}},"response":[{"id":"409992a1-c273-4ce7-8299-958891b75f3d","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"address1\": \"string\",\n  \"address2\": \"string\",\n  \"city\": \"string\",\n  \"state\": \"string\",\n  \"postal\": \"string\",\n  \"countryString\": \"string\",\n  \"addressType\": 1\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/address/:addressId/update","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","address",":addressId","update"],"variable":[{"key":"id","value":"3573"},{"key":"addressId","value":"3573","description":"The ID of the donor address to update."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"address1\": \"string\",\n  \"address2\": \"string\",\n  \"city\": \"string\",\n  \"state\": \"string\",\n  \"postal\": \"string\",\n  \"countryString\": \"string\",\n  \"addressType\": 3,\n  \"addressTypeDisplay\": \"string\"\n}"},{"id":"8346ec0e-365d-4deb-a1c2-63d29176728f","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"address1\": \"string\",\n  \"address2\": \"string\",\n  \"city\": \"string\",\n  \"state\": \"string\",\n  \"postal\": \"string\",\n  \"countryString\": \"string\",\n  \"addressType\": 1\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/address/:addressId/update","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","address",":addressId","update"],"variable":[{"key":"id","value":"3573"},{"key":"addressId","value":"3573","description":"The ID of the donor address to update."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"868c39ea-0d6d-4217-ae0e-3055f080b229"},{"name":"Delete a donor address.","id":"c39a901d-6b95-4f1d-8992-01bd2ff88318","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Donor/:id/address/:addressId/delete","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":id","address",":addressId","delete"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"7ab64ca5-6c49-436a-831d-b5ea5a3b89a1","type":"any","value":"3573","key":"id"},{"id":"5c21bd51-1b12-4746-9dcf-48d81fbb8fc4","description":{"content":"<p>The ID of the donor address to delete.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"addressId"}]}},"response":[{"id":"2ebdef2e-1bc0-4944-bca4-8b895cb2c313","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/address/:addressId/delete","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","address",":addressId","delete"],"variable":[{"key":"id","value":"3573"},{"key":"addressId","value":"3573","description":"The ID of the donor address to delete."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"fc46045b-27bb-47f8-9b6c-95cb60289b7b","name":"Bad Request","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/address/:addressId/delete","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","address",":addressId","delete"],"variable":[{"key":"id","value":"3573"},{"key":"addressId","value":"3573","description":"The ID of the donor address to delete."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"0df8d8fe-07c8-4737-bf38-5d292eb317cb","name":"Not Found","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/address/:addressId/delete","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","address",":addressId","delete"],"variable":[{"key":"id","value":"3573"},{"key":"addressId","value":"3573","description":"The ID of the donor address to delete."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"c39a901d-6b95-4f1d-8992-01bd2ff88318"},{"name":"Get a list of addresses for a donor.","id":"51ee6f8c-c9de-4f79-868c-dfc6d4f062fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Donor/:id/address/list","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":id","address","list"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"0735e1ce-da94-444a-b087-9f5efd2eef1f","description":{"content":"<p>The ID of the donor.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"d28e5902-7119-4c48-a5b9-a3f22afcb653","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/address/list","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","address","list"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"address1\": \"string\",\n      \"address2\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"postal\": \"string\",\n      \"countryString\": \"string\",\n      \"addressType\": 1,\n      \"addressTypeDisplay\": \"string\"\n    },\n    {\n      \"address1\": \"string\",\n      \"address2\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"postal\": \"string\",\n      \"countryString\": \"string\",\n      \"addressType\": 1,\n      \"addressTypeDisplay\": \"string\"\n    }\n  ],\n  \"total\": 6535\n}"},{"id":"87dd3bbd-de45-49ef-bcf3-b6b24f3f516a","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/address/list","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","address","list"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"51ee6f8c-c9de-4f79-868c-dfc6d4f062fe"},{"name":"Set a donor address as the primary address. This will unmark any other address as primary.","id":"cecf888a-541e-405c-a819-e1b8cbd019f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Donor/:id/address/:addressId/set-primary","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":id","address",":addressId","set-primary"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"6adc932d-32a3-416f-84b5-c28259e92dde","description":{"content":"<p>The ID of the donor (not used, but required for route).</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"},{"id":"808daa1d-66ca-4470-af0f-4a07e4d875df","description":{"content":"<p>The ID of the donor address to set as primary.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"addressId"}]}},"response":[{"id":"415b8918-81a3-4109-944a-a1ae02989659","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/address/:addressId/set-primary","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","address",":addressId","set-primary"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor (not used, but required for route)."},{"key":"addressId","value":"3573","description":"The ID of the donor address to set as primary."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"address1\": \"string\",\n  \"address2\": \"string\",\n  \"city\": \"string\",\n  \"state\": \"string\",\n  \"postal\": \"string\",\n  \"countryString\": \"string\",\n  \"addressType\": 3,\n  \"addressTypeDisplay\": \"string\"\n}"},{"id":"1f554730-68a6-4a6a-8c3b-120e997102f4","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/address/:addressId/set-primary","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","address",":addressId","set-primary"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor (not used, but required for route)."},{"key":"addressId","value":"3573","description":"The ID of the donor address to set as primary."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"31980f92-0a50-471d-b975-278eca1dbecf","name":"Not Found","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/address/:addressId/set-primary","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","address",":addressId","set-primary"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor (not used, but required for route)."},{"key":"addressId","value":"3573","description":"The ID of the donor address to set as primary."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"cecf888a-541e-405c-a819-e1b8cbd019f2"},{"name":"Get a donor contact method by ID.","id":"84b304b6-2990-4e36-970e-95b49cfb18f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Donor/:id/contact-method/:contactMethodId","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":id","contact-method",":contactMethodId"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"2d23d1bd-4743-435d-bd58-79ee598e0fff","type":"any","value":"3573","key":"id"},{"id":"21e36df3-dee5-4e5e-87ec-8ec232f7fe60","description":{"content":"<p>The ID of the donor contact method</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"contactMethodId"}]}},"response":[{"id":"dbcb9f6d-5044-4fb2-929f-918f69d14788","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/contact-method/:contactMethodId","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","contact-method",":contactMethodId"],"variable":[{"key":"id","value":"3573"},{"key":"contactMethodId","value":"3573","description":"The ID of the donor contact method"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 4590,\n  \"donorId\": 300,\n  \"type\": 10,\n  \"typeDisplay\": \"string\",\n  \"value\": \"string\",\n  \"secondaryValue\": \"string\",\n  \"isPrimary\": false,\n  \"isOptedIn\": false,\n  \"isValid\": true,\n  \"isEmail\": false,\n  \"isPhone\": false,\n  \"isBounced\": true,\n  \"countryCode\": \"string\"\n}"},{"id":"6d840abf-cad4-41a5-a87f-8e7ff527da70","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/contact-method/:contactMethodId","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","contact-method",":contactMethodId"],"variable":[{"key":"id","value":"3573"},{"key":"contactMethodId","value":"3573","description":"The ID of the donor contact method"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"60879d34-35e1-4a7c-9ae1-ce9b914f1f07","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/contact-method/:contactMethodId","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","contact-method",":contactMethodId"],"variable":[{"key":"id","value":"3573"},{"key":"contactMethodId","value":"3573","description":"The ID of the donor contact method"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"84b304b6-2990-4e36-970e-95b49cfb18f2"},{"name":"Update an existing donor contact method.","id":"0ead9a64-f4f0-4fcc-8a0c-73da6a9b7611","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"isPrimary\": true,\n  \"type\": 21,\n  \"value\": \"string\",\n  \"isOptedIn\": true,\n  \"countryCode\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Donor/:id/contact-method/:contactMethodId","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":id","contact-method",":contactMethodId"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"6aaa6f92-900c-461e-89bc-dcc8248bd57e","type":"any","value":"3573","key":"id"},{"id":"c6bbf6cf-09d5-49e3-8bff-9c75cc0a22a7","description":{"content":"<p>The ID of the donor contact method.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"contactMethodId"}]}},"response":[{"id":"6f5fbf59-eb43-40ef-a6a8-bd54de4d34b3","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"isPrimary\": true,\n  \"type\": 21,\n  \"value\": \"string\",\n  \"isOptedIn\": true,\n  \"countryCode\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/contact-method/:contactMethodId","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","contact-method",":contactMethodId"],"variable":[{"key":"id","value":"3573"},{"key":"contactMethodId","value":"3573","description":"The ID of the donor contact method."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 4590,\n  \"donorId\": 300,\n  \"type\": 10,\n  \"typeDisplay\": \"string\",\n  \"value\": \"string\",\n  \"secondaryValue\": \"string\",\n  \"isPrimary\": false,\n  \"isOptedIn\": false,\n  \"isValid\": true,\n  \"isEmail\": false,\n  \"isPhone\": false,\n  \"isBounced\": true,\n  \"countryCode\": \"string\"\n}"},{"id":"e4395b10-7e6b-4912-819e-2b5f5e1beb14","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"isPrimary\": true,\n  \"type\": 21,\n  \"value\": \"string\",\n  \"isOptedIn\": true,\n  \"countryCode\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/contact-method/:contactMethodId","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","contact-method",":contactMethodId"],"variable":[{"key":"id","value":"3573"},{"key":"contactMethodId","value":"3573","description":"The ID of the donor contact method."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"0ead9a64-f4f0-4fcc-8a0c-73da6a9b7611"},{"name":"Delete a donor contact method.","id":"0dc60d15-6a7a-4067-b710-b454954bad01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Donor/:id/contact-method/:contactMethodId","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":id","contact-method",":contactMethodId"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"7f05ad13-c87e-42bb-ae31-340c6b1e7f01","type":"any","value":"3573","key":"id"},{"id":"d985cafa-aa1a-47a9-815a-fc1a615e3158","description":{"content":"<p>The ID of the donor contact method.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"contactMethodId"}]}},"response":[{"id":"54a7be57-1851-435a-a9f2-345f09935d3b","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/contact-method/:contactMethodId","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","contact-method",":contactMethodId"],"variable":[{"key":"id","value":"3573"},{"key":"contactMethodId","value":"3573","description":"The ID of the donor contact method."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"a29a8bb1-f28f-4a45-adf9-2030445ee671","name":"Bad Request","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/contact-method/:contactMethodId","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","contact-method",":contactMethodId"],"variable":[{"key":"id","value":"3573"},{"key":"contactMethodId","value":"3573","description":"The ID of the donor contact method."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"0dc60d15-6a7a-4067-b710-b454954bad01"},{"name":"Partially update an existing donor contact method (PATCH).","id":"65f929a6-239e-4921-8aa6-7bc9cfed19f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"type\": 99,\n  \"value\": \"string\",\n  \"isPrimary\": true,\n  \"isOptedIn\": true,\n  \"countryCode\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Donor/:id/contact-method/:contactMethodId","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":id","contact-method",":contactMethodId"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"fb34e2e3-5d52-4105-b1d8-d1d9a512bf30","type":"any","value":"3573","key":"id"},{"id":"9b457da2-af3a-4669-a0d0-c136bb55b78c","description":{"content":"<p>The ID of the donor contact method.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"contactMethodId"}]}},"response":[{"id":"b07bebed-2f0a-4c01-9402-c170af485490","name":"OK","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"type\": 99,\n  \"value\": \"string\",\n  \"isPrimary\": true,\n  \"isOptedIn\": true,\n  \"countryCode\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/contact-method/:contactMethodId","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","contact-method",":contactMethodId"],"variable":[{"key":"id","value":"3573"},{"key":"contactMethodId","value":"3573","description":"The ID of the donor contact method."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 4590,\n  \"donorId\": 300,\n  \"type\": 10,\n  \"typeDisplay\": \"string\",\n  \"value\": \"string\",\n  \"secondaryValue\": \"string\",\n  \"isPrimary\": false,\n  \"isOptedIn\": false,\n  \"isValid\": true,\n  \"isEmail\": false,\n  \"isPhone\": false,\n  \"isBounced\": true,\n  \"countryCode\": \"string\"\n}"},{"id":"e991221e-7dd3-48a2-8a7a-a94efe93e54e","name":"Bad Request","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"type\": 99,\n  \"value\": \"string\",\n  \"isPrimary\": true,\n  \"isOptedIn\": true,\n  \"countryCode\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/contact-method/:contactMethodId","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","contact-method",":contactMethodId"],"variable":[{"key":"id","value":"3573"},{"key":"contactMethodId","value":"3573","description":"The ID of the donor contact method."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"65f929a6-239e-4921-8aa6-7bc9cfed19f9"},{"name":"Create a new donor contact method.","id":"f086677b-77a2-4639-86a8-02b447c07d14","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"isPrimary\": true,\n  \"type\": 21,\n  \"value\": \"string\",\n  \"isOptedIn\": true,\n  \"countryCode\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Donor/:id/contact-method","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":id","contact-method"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"48e0dcd6-ab5a-4d2f-9eee-46f9fd06a89c","description":{"content":"<p>The ID of the donor.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"68c9906a-cec2-419f-ab2d-bf4c702878c7","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"isPrimary\": true,\n  \"type\": 21,\n  \"value\": \"string\",\n  \"isOptedIn\": true,\n  \"countryCode\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/contact-method","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","contact-method"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 4590,\n  \"donorId\": 300,\n  \"type\": 10,\n  \"typeDisplay\": \"string\",\n  \"value\": \"string\",\n  \"secondaryValue\": \"string\",\n  \"isPrimary\": false,\n  \"isOptedIn\": false,\n  \"isValid\": true,\n  \"isEmail\": false,\n  \"isPhone\": false,\n  \"isBounced\": true,\n  \"countryCode\": \"string\"\n}"},{"id":"82bb513f-ac93-4f6d-89ac-6fc325a6e898","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"isPrimary\": true,\n  \"type\": 21,\n  \"value\": \"string\",\n  \"isOptedIn\": true,\n  \"countryCode\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/contact-method","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","contact-method"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"f086677b-77a2-4639-86a8-02b447c07d14"},{"name":"Set a donor contact method as primary.","id":"d9084e47-34fa-4dc9-9141-f1b9ea0dee41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Donor/:id/contact-method/:contactMethodId/set-primary","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":id","contact-method",":contactMethodId","set-primary"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"5418deac-5eff-47d4-b32e-aed67b777d46","description":{"content":"<p>The ID of the donor.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"},{"id":"57b5560a-aa64-474f-ad1e-60a8e1b35265","description":{"content":"<p>The ID of the donor contact method.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"contactMethodId"}]}},"response":[{"id":"2d37cbac-3af8-49f0-9a67-e12277ab7dd1","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/contact-method/:contactMethodId/set-primary","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","contact-method",":contactMethodId","set-primary"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor."},{"key":"contactMethodId","value":"3573","description":"The ID of the donor contact method."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 4590,\n  \"donorId\": 300,\n  \"type\": 10,\n  \"typeDisplay\": \"string\",\n  \"value\": \"string\",\n  \"secondaryValue\": \"string\",\n  \"isPrimary\": false,\n  \"isOptedIn\": false,\n  \"isValid\": true,\n  \"isEmail\": false,\n  \"isPhone\": false,\n  \"isBounced\": true,\n  \"countryCode\": \"string\"\n}"},{"id":"bbdeb732-8aeb-4d22-997a-22cafcbd9cb1","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/contact-method/:contactMethodId/set-primary","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","contact-method",":contactMethodId","set-primary"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor."},{"key":"contactMethodId","value":"3573","description":"The ID of the donor contact method."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"d9084e47-34fa-4dc9-9141-f1b9ea0dee41"},{"name":"Gets a paginated list of donor's contact methods.","id":"176c8208-5b06-4523-9d7c-14ecb977672a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Donor/:id/contact-method/list","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":id","contact-method","list"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"1662fd00-298c-40fd-87ae-3a1272b21747","description":{"content":"<p>The ID of the donor.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"8a7b5fa3-2084-48f3-9860-d03b2856d5bf","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/contact-method/list","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","contact-method","list"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 276,\n      \"donorId\": 1749,\n      \"type\": 22,\n      \"typeDisplay\": \"string\",\n      \"value\": \"string\",\n      \"secondaryValue\": \"string\",\n      \"isPrimary\": false,\n      \"isOptedIn\": false,\n      \"isValid\": false,\n      \"isEmail\": true,\n      \"isPhone\": true,\n      \"isBounced\": false,\n      \"countryCode\": \"string\"\n    },\n    {\n      \"id\": 2457,\n      \"donorId\": 5575,\n      \"type\": 10,\n      \"typeDisplay\": \"string\",\n      \"value\": \"string\",\n      \"secondaryValue\": \"string\",\n      \"isPrimary\": true,\n      \"isOptedIn\": false,\n      \"isValid\": true,\n      \"isEmail\": false,\n      \"isPhone\": true,\n      \"isBounced\": false,\n      \"countryCode\": \"string\"\n    }\n  ],\n  \"total\": 4404\n}"},{"id":"d6e11260-ea22-4b79-a49b-5e6b3d74f8f0","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/contact-method/list","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","contact-method","list"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"176c8208-5b06-4523-9d7c-14ecb977672a"},{"name":"Gets a paginated list of donor's email addresses.","id":"d9dacc6c-9900-4404-862f-cc7bd8d3b3c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Donor/:id/contact-method/email-addresses","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":id","contact-method","email-addresses"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"df70c5b9-4ba4-4262-ab44-747deece3d4a","description":{"content":"<p>The ID of the donor.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"1786fde4-f18a-4e5d-86f1-1422553d120d","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/contact-method/email-addresses","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","contact-method","email-addresses"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 276,\n      \"donorId\": 1749,\n      \"type\": 22,\n      \"typeDisplay\": \"string\",\n      \"value\": \"string\",\n      \"secondaryValue\": \"string\",\n      \"isPrimary\": false,\n      \"isOptedIn\": false,\n      \"isValid\": false,\n      \"isEmail\": true,\n      \"isPhone\": true,\n      \"isBounced\": false,\n      \"countryCode\": \"string\"\n    },\n    {\n      \"id\": 2457,\n      \"donorId\": 5575,\n      \"type\": 10,\n      \"typeDisplay\": \"string\",\n      \"value\": \"string\",\n      \"secondaryValue\": \"string\",\n      \"isPrimary\": true,\n      \"isOptedIn\": false,\n      \"isValid\": true,\n      \"isEmail\": false,\n      \"isPhone\": true,\n      \"isBounced\": false,\n      \"countryCode\": \"string\"\n    }\n  ],\n  \"total\": 4404\n}"},{"id":"777837b0-7212-4812-bbc1-d1240c50b53c","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/contact-method/email-addresses","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","contact-method","email-addresses"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"d9dacc6c-9900-4404-862f-cc7bd8d3b3c3"},{"name":"Gets a paginated list of donor's phone numbers.","id":"31f86164-9546-46c3-bbde-e86d948c2015","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Donor/:id/contact-method/phone-numbers","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":id","contact-method","phone-numbers"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"53f414e6-6470-4330-8daf-14ed944de509","description":{"content":"<p>The ID of the donor.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"5ace04e4-1f40-4f47-abd2-9b10d6939fdb","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/contact-method/phone-numbers","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","contact-method","phone-numbers"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 276,\n      \"donorId\": 1749,\n      \"type\": 22,\n      \"typeDisplay\": \"string\",\n      \"value\": \"string\",\n      \"secondaryValue\": \"string\",\n      \"isPrimary\": false,\n      \"isOptedIn\": false,\n      \"isValid\": false,\n      \"isEmail\": true,\n      \"isPhone\": true,\n      \"isBounced\": false,\n      \"countryCode\": \"string\"\n    },\n    {\n      \"id\": 2457,\n      \"donorId\": 5575,\n      \"type\": 10,\n      \"typeDisplay\": \"string\",\n      \"value\": \"string\",\n      \"secondaryValue\": \"string\",\n      \"isPrimary\": true,\n      \"isOptedIn\": false,\n      \"isValid\": true,\n      \"isEmail\": false,\n      \"isPhone\": true,\n      \"isBounced\": false,\n      \"countryCode\": \"string\"\n    }\n  ],\n  \"total\": 4404\n}"},{"id":"80a79368-f7f2-44e6-a064-d0396955eab0","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/contact-method/phone-numbers","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","contact-method","phone-numbers"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"31f86164-9546-46c3-bbde-e86d948c2015"},{"name":"Create a new email address for a donor.","id":"66e19549-07f3-4169-8867-0017e20d783f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"isPrimary\": true,\n  \"type\": 21,\n  \"value\": \"string\",\n  \"isOptedIn\": true,\n  \"countryCode\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Donor/:id/email","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":id","email"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"091cdf83-3f5a-4e49-b537-a20a709e7712","description":{"content":"<p>The ID of the donor.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"a9aaf060-f3ab-45bd-a9fb-1730bc63ce87","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"isPrimary\": true,\n  \"type\": 21,\n  \"value\": \"string\",\n  \"isOptedIn\": true,\n  \"countryCode\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/email","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","email"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 4590,\n  \"donorId\": 300,\n  \"type\": 10,\n  \"typeDisplay\": \"string\",\n  \"value\": \"string\",\n  \"secondaryValue\": \"string\",\n  \"isPrimary\": false,\n  \"isOptedIn\": false,\n  \"isValid\": true,\n  \"isEmail\": false,\n  \"isPhone\": false,\n  \"isBounced\": true,\n  \"countryCode\": \"string\"\n}"},{"id":"4b087370-c532-4b1f-abe5-ac0e0ef8b073","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"isPrimary\": true,\n  \"type\": 21,\n  \"value\": \"string\",\n  \"isOptedIn\": true,\n  \"countryCode\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/email","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","email"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"66e19549-07f3-4169-8867-0017e20d783f"},{"name":"Update an existing email address.","id":"b518359e-370a-4c4f-9319-c64792f08e70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"isPrimary\": true,\n  \"type\": 21,\n  \"value\": \"string\",\n  \"isOptedIn\": true,\n  \"countryCode\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Donor/:id/email/:emailId","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":id","email",":emailId"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"84a05812-8964-459c-972c-4339fcde0f77","type":"any","value":"3573","key":"id"},{"id":"22c10d01-ee71-4793-83be-58b2faa0e228","description":{"content":"<p>The ID of the email address.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"emailId"}]}},"response":[{"id":"25ea3336-f1d2-403c-9636-30236cab8885","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"isPrimary\": true,\n  \"type\": 21,\n  \"value\": \"string\",\n  \"isOptedIn\": true,\n  \"countryCode\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/email/:emailId","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","email",":emailId"],"variable":[{"key":"id","value":"3573"},{"key":"emailId","value":"3573","description":"The ID of the email address."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 4590,\n  \"donorId\": 300,\n  \"type\": 10,\n  \"typeDisplay\": \"string\",\n  \"value\": \"string\",\n  \"secondaryValue\": \"string\",\n  \"isPrimary\": false,\n  \"isOptedIn\": false,\n  \"isValid\": true,\n  \"isEmail\": false,\n  \"isPhone\": false,\n  \"isBounced\": true,\n  \"countryCode\": \"string\"\n}"},{"id":"5ab82722-a298-4481-910a-c3a4365cec2a","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"isPrimary\": true,\n  \"type\": 21,\n  \"value\": \"string\",\n  \"isOptedIn\": true,\n  \"countryCode\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/email/:emailId","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","email",":emailId"],"variable":[{"key":"id","value":"3573"},{"key":"emailId","value":"3573","description":"The ID of the email address."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"b518359e-370a-4c4f-9319-c64792f08e70"},{"name":"Partially update an existing email address (PATCH).","id":"918afc63-6a44-4bb9-bc7d-0cfab1c33525","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"type\": 99,\n  \"value\": \"string\",\n  \"isPrimary\": true,\n  \"isOptedIn\": true,\n  \"countryCode\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Donor/:id/email/:emailId","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":id","email",":emailId"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"0802fa92-f960-4b93-b67c-449adc68a1d8","type":"any","value":"3573","key":"id"},{"id":"fe8fff30-74c9-47a6-8302-9d6e1524cdfc","description":{"content":"<p>The ID of the email address.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"emailId"}]}},"response":[{"id":"beddc757-a346-49f2-84fc-19368e37b14b","name":"OK","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"type\": 99,\n  \"value\": \"string\",\n  \"isPrimary\": true,\n  \"isOptedIn\": true,\n  \"countryCode\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/email/:emailId","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","email",":emailId"],"variable":[{"key":"id","value":"3573"},{"key":"emailId","value":"3573","description":"The ID of the email address."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 4590,\n  \"donorId\": 300,\n  \"type\": 10,\n  \"typeDisplay\": \"string\",\n  \"value\": \"string\",\n  \"secondaryValue\": \"string\",\n  \"isPrimary\": false,\n  \"isOptedIn\": false,\n  \"isValid\": true,\n  \"isEmail\": false,\n  \"isPhone\": false,\n  \"isBounced\": true,\n  \"countryCode\": \"string\"\n}"},{"id":"e91399fa-f2a8-4756-8da7-99f02a9bd016","name":"Bad Request","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"type\": 99,\n  \"value\": \"string\",\n  \"isPrimary\": true,\n  \"isOptedIn\": true,\n  \"countryCode\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/email/:emailId","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","email",":emailId"],"variable":[{"key":"id","value":"3573"},{"key":"emailId","value":"3573","description":"The ID of the email address."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"918afc63-6a44-4bb9-bc7d-0cfab1c33525"},{"name":"Set an email address as primary.","id":"78c5661d-76a4-48c9-b1b0-77c2e0036dfd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Donor/:id/email/:emailId/set-primary","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":id","email",":emailId","set-primary"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"93ecb906-21c7-4ded-a69a-f8a631f7dd44","description":{"content":"<p>The ID of the donor.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"},{"id":"9c2bd770-139f-4fb6-b109-835970a00582","description":{"content":"<p>The ID of the email address.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"emailId"}]}},"response":[{"id":"9388a427-28b2-4acf-93d6-3276d8dcf4c4","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/email/:emailId/set-primary","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","email",":emailId","set-primary"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor."},{"key":"emailId","value":"3573","description":"The ID of the email address."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 4590,\n  \"donorId\": 300,\n  \"type\": 10,\n  \"typeDisplay\": \"string\",\n  \"value\": \"string\",\n  \"secondaryValue\": \"string\",\n  \"isPrimary\": false,\n  \"isOptedIn\": false,\n  \"isValid\": true,\n  \"isEmail\": false,\n  \"isPhone\": false,\n  \"isBounced\": true,\n  \"countryCode\": \"string\"\n}"},{"id":"e293cda4-cf58-41e8-a686-d7e88d49da11","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/email/:emailId/set-primary","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","email",":emailId","set-primary"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor."},{"key":"emailId","value":"3573","description":"The ID of the email address."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"78c5661d-76a4-48c9-b1b0-77c2e0036dfd"},{"name":"Create a new phone number for a donor.","id":"cd846d93-c51d-458e-b3d6-d30fbf9797f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"isPrimary\": true,\n  \"type\": 21,\n  \"value\": \"string\",\n  \"isOptedIn\": true,\n  \"countryCode\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Donor/:id/phone","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":id","phone"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"9c5ce395-8bab-444f-90bb-47af4e8877fc","description":{"content":"<p>The ID of the donor.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"e7fdc502-3ab1-4791-9269-5d3f5173a53d","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"isPrimary\": true,\n  \"type\": 21,\n  \"value\": \"string\",\n  \"isOptedIn\": true,\n  \"countryCode\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/phone","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","phone"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 4590,\n  \"donorId\": 300,\n  \"type\": 10,\n  \"typeDisplay\": \"string\",\n  \"value\": \"string\",\n  \"secondaryValue\": \"string\",\n  \"isPrimary\": false,\n  \"isOptedIn\": false,\n  \"isValid\": true,\n  \"isEmail\": false,\n  \"isPhone\": false,\n  \"isBounced\": true,\n  \"countryCode\": \"string\"\n}"},{"id":"341557d4-37e8-4dda-944d-9fdf9df8b5fe","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"isPrimary\": true,\n  \"type\": 21,\n  \"value\": \"string\",\n  \"isOptedIn\": true,\n  \"countryCode\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/phone","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","phone"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"cd846d93-c51d-458e-b3d6-d30fbf9797f0"},{"name":"Update an existing phone number.","id":"8fe5c5cb-88f1-4ca8-9829-7571bfec4917","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"isPrimary\": true,\n  \"type\": 21,\n  \"value\": \"string\",\n  \"isOptedIn\": true,\n  \"countryCode\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Donor/:id/phone/:phoneId","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":id","phone",":phoneId"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"63922ddd-e062-4a80-b944-28586cfa030c","description":{"content":"<p>The ID of the donor.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"},{"id":"99265ac1-03a1-42a5-a923-f507ba89cf3f","description":{"content":"<p>The ID of the phone number.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"phoneId"}]}},"response":[{"id":"506c7a54-478b-4104-ab5e-2ba066c542c4","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"isPrimary\": true,\n  \"type\": 21,\n  \"value\": \"string\",\n  \"isOptedIn\": true,\n  \"countryCode\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/phone/:phoneId","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","phone",":phoneId"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor."},{"key":"phoneId","value":"3573","description":"The ID of the phone number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 4590,\n  \"donorId\": 300,\n  \"type\": 10,\n  \"typeDisplay\": \"string\",\n  \"value\": \"string\",\n  \"secondaryValue\": \"string\",\n  \"isPrimary\": false,\n  \"isOptedIn\": false,\n  \"isValid\": true,\n  \"isEmail\": false,\n  \"isPhone\": false,\n  \"isBounced\": true,\n  \"countryCode\": \"string\"\n}"},{"id":"14c8d982-b4aa-4a89-8b7a-427ae5377df4","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"isPrimary\": true,\n  \"type\": 21,\n  \"value\": \"string\",\n  \"isOptedIn\": true,\n  \"countryCode\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/phone/:phoneId","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","phone",":phoneId"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor."},{"key":"phoneId","value":"3573","description":"The ID of the phone number."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"8fe5c5cb-88f1-4ca8-9829-7571bfec4917"},{"name":"Partially update an existing phone number (PATCH).","id":"2a67cc39-7b79-4db4-b9d9-f96461750379","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"type\": 99,\n  \"value\": \"string\",\n  \"isPrimary\": true,\n  \"isOptedIn\": true,\n  \"countryCode\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Donor/:id/phone/:phoneId","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":id","phone",":phoneId"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"b77baa28-b285-4fe6-9188-b1b23a7975a8","type":"any","value":"3573","key":"id"},{"id":"6aacd03f-2ac5-40c8-82dd-7ef152339830","description":{"content":"<p>The ID of the phone number.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"phoneId"}]}},"response":[{"id":"75558b8b-f4bb-42c8-9bb8-b8cd4fe1f7a7","name":"OK","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"type\": 99,\n  \"value\": \"string\",\n  \"isPrimary\": true,\n  \"isOptedIn\": true,\n  \"countryCode\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/phone/:phoneId","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","phone",":phoneId"],"variable":[{"key":"id","value":"3573"},{"key":"phoneId","value":"3573","description":"The ID of the phone number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 4590,\n  \"donorId\": 300,\n  \"type\": 10,\n  \"typeDisplay\": \"string\",\n  \"value\": \"string\",\n  \"secondaryValue\": \"string\",\n  \"isPrimary\": false,\n  \"isOptedIn\": false,\n  \"isValid\": true,\n  \"isEmail\": false,\n  \"isPhone\": false,\n  \"isBounced\": true,\n  \"countryCode\": \"string\"\n}"},{"id":"82148dda-6690-43a6-a713-61c462fb4238","name":"Bad Request","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"type\": 99,\n  \"value\": \"string\",\n  \"isPrimary\": true,\n  \"isOptedIn\": true,\n  \"countryCode\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/phone/:phoneId","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","phone",":phoneId"],"variable":[{"key":"id","value":"3573"},{"key":"phoneId","value":"3573","description":"The ID of the phone number."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"2a67cc39-7b79-4db4-b9d9-f96461750379"},{"name":"Set a phone number as primary.","id":"6962fcc5-4e97-4171-abbd-00ca80dc004b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Donor/:id/phone/:phoneId/set-primary","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":id","phone",":phoneId","set-primary"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"ebfd7970-9b80-4800-86d3-e0cfd8fd0268","description":{"content":"<p>The ID of the donor.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"},{"id":"a6aa0e7d-8791-4eea-a380-97046169ea97","description":{"content":"<p>The ID of the phone number.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"phoneId"}]}},"response":[{"id":"0676195b-0265-4627-8a08-126f89cea650","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/phone/:phoneId/set-primary","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","phone",":phoneId","set-primary"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor."},{"key":"phoneId","value":"3573","description":"The ID of the phone number."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 4590,\n  \"donorId\": 300,\n  \"type\": 10,\n  \"typeDisplay\": \"string\",\n  \"value\": \"string\",\n  \"secondaryValue\": \"string\",\n  \"isPrimary\": false,\n  \"isOptedIn\": false,\n  \"isValid\": true,\n  \"isEmail\": false,\n  \"isPhone\": false,\n  \"isBounced\": true,\n  \"countryCode\": \"string\"\n}"},{"id":"e7972d54-b514-48a3-8009-e11e1485edeb","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/phone/:phoneId/set-primary","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","phone",":phoneId","set-primary"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor."},{"key":"phoneId","value":"3573","description":"The ID of the phone number."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"6962fcc5-4e97-4171-abbd-00ca80dc004b"},{"name":"Gets a paginated list of the custom field responses for a donor.","id":"96654cea-20e5-43ee-94cf-ea544cd3611f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Donor/:donorId/donor-fields?CollectionSkip=8361&Filter=string&Skip=8361&Take=8361&SortBy=createddate&Descending=true","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":donorId","donor-fields"],"host":["https://prod-api.raisedonors.com"],"query":[{"description":{"content":"<p>Gets or sets the collection skip.</p>\n","type":"text/plain"},"key":"CollectionSkip","value":"8361"},{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":{"content":"<p>Field to sort by (case-insensitive). Valid options: createddate, createddatetimeutc, customfield, customfieldname, id, modifieddatetimeutc, name, response, type, value</p>\n","type":"text/plain"},"key":"SortBy","value":"createddate"},{"key":"Descending","value":"true"}],"variable":[{"id":"d32777be-25e5-41ee-a2ea-a55517e03ddd","description":{"content":"<p>The ID of the donor.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"donorId"}]}},"response":[{"id":"fb0bc6ab-9094-4666-bb94-48eacecfa130","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:donorId/donor-fields?CollectionSkip=8361&Filter=string&Skip=8361&Take=8361&SortBy=createddate&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":donorId","donor-fields"],"query":[{"description":"Gets or sets the collection skip.","key":"CollectionSkip","value":"8361"},{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: createddate, createddatetimeutc, customfield, customfieldname, id, modifieddatetimeutc, name, response, type, value","key":"SortBy","value":"createddate"},{"key":"Descending","value":"true"}],"variable":[{"key":"donorId","value":"3573","description":"The ID of the donor."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 4134,\n      \"customCollectionId\": 9564,\n      \"customCollectionName\": \"string\",\n      \"customFieldId\": 5809,\n      \"customFieldName\": \"string\",\n      \"value\": \"string\",\n      \"entityType\": 8,\n      \"entityTypeDisplayName\": \"string\",\n      \"responseType\": \"string\",\n      \"createdDate\": \"string\"\n    },\n    {\n      \"id\": 3881,\n      \"customCollectionId\": 4044,\n      \"customCollectionName\": \"string\",\n      \"customFieldId\": 3708,\n      \"customFieldName\": \"string\",\n      \"value\": \"string\",\n      \"entityType\": 12,\n      \"entityTypeDisplayName\": \"string\",\n      \"responseType\": \"string\",\n      \"createdDate\": \"string\"\n    }\n  ],\n  \"total\": 9108\n}"},{"id":"81906803-d167-4d70-978e-8aceefb0d4f9","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:donorId/donor-fields?CollectionSkip=8361&Filter=string&Skip=8361&Take=8361&SortBy=createddate&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":donorId","donor-fields"],"query":[{"description":"Gets or sets the collection skip.","key":"CollectionSkip","value":"8361"},{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: createddate, createddatetimeutc, customfield, customfieldname, id, modifieddatetimeutc, name, response, type, value","key":"SortBy","value":"createddate"},{"key":"Descending","value":"true"}],"variable":[{"key":"donorId","value":"3573","description":"The ID of the donor."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"96654cea-20e5-43ee-94cf-ea544cd3611f"},{"name":"Donor Get Donor Responses","id":"3839d652-14d7-44fe-9239-1b9b65bb3875","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Donor/:donorId/responses?Filter=string&Skip=8361&Take=8361&SortBy=createdate&Descending=true","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":donorId","responses"],"host":["https://prod-api.raisedonors.com"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":{"content":"<p>Field to sort by (case-insensitive). Valid options: createdate, createddatetime, email, firstname, gifts, giftsum, id, lastname, modifieddatetimeutc, name, phone</p>\n","type":"text/plain"},"key":"SortBy","value":"createdate"},{"key":"Descending","value":"true"}],"variable":[{"id":"d5c103ca-5b1d-4bcd-9194-30bfbc84feb5","type":"any","value":"3573","key":"donorId"}]}},"response":[{"id":"b2a7a15a-bb02-4d72-8483-584e5e89b150","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:donorId/responses?Filter=string&Skip=8361&Take=8361&SortBy=createdate&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":donorId","responses"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: createdate, createddatetime, email, firstname, gifts, giftsum, id, lastname, modifieddatetimeutc, name, phone","key":"SortBy","value":"createdate"},{"key":"Descending","value":"true"}],"variable":[{"key":"donorId","value":"3573"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 4134,\n      \"customCollectionId\": 9564,\n      \"customCollectionName\": \"string\",\n      \"customFieldId\": 5809,\n      \"customFieldName\": \"string\",\n      \"value\": \"string\",\n      \"entityType\": 8,\n      \"entityTypeDisplayName\": \"string\",\n      \"responseType\": \"string\",\n      \"createdDate\": \"string\"\n    },\n    {\n      \"id\": 3881,\n      \"customCollectionId\": 4044,\n      \"customCollectionName\": \"string\",\n      \"customFieldId\": 3708,\n      \"customFieldName\": \"string\",\n      \"value\": \"string\",\n      \"entityType\": 12,\n      \"entityTypeDisplayName\": \"string\",\n      \"responseType\": \"string\",\n      \"createdDate\": \"string\"\n    }\n  ],\n  \"total\": 9108\n}"},{"id":"e368ec33-14e0-4774-adcb-fac33a7d86bb","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:donorId/responses?Filter=string&Skip=8361&Take=8361&SortBy=createdate&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":donorId","responses"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: createdate, createddatetime, email, firstname, gifts, giftsum, id, lastname, modifieddatetimeutc, name, phone","key":"SortBy","value":"createdate"},{"key":"Descending","value":"true"}],"variable":[{"key":"donorId","value":"3573"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"3839d652-14d7-44fe-9239-1b9b65bb3875"},{"name":"Gets a paginated list of the gifts for a donor.","id":"4ad259b8-f9cf-4003-aac6-0cca11a0e0a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Donor/:donorId/gifts?Filter=string&Skip=8361&Take=8361&SortBy=createdate&Descending=true","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":donorId","gifts"],"host":["https://prod-api.raisedonors.com"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":{"content":"<p>Field to sort by (case-insensitive). Valid options: createdate, createddatetime, email, firstname, gifts, giftsum, id, lastname, modifieddatetimeutc, name, phone</p>\n","type":"text/plain"},"key":"SortBy","value":"createdate"},{"key":"Descending","value":"true"}],"variable":[{"id":"8dddf4a2-a74d-4be5-a685-df57d258af31","description":{"content":"<p>The ID of the donor.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"donorId"}]}},"response":[{"id":"8470a9c8-451a-4c07-9693-49e59e71d006","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:donorId/gifts?Filter=string&Skip=8361&Take=8361&SortBy=createdate&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":donorId","gifts"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: createdate, createddatetime, email, firstname, gifts, giftsum, id, lastname, modifieddatetimeutc, name, phone","key":"SortBy","value":"createdate"},{"key":"Descending","value":"true"}],"variable":[{"key":"donorId","value":"3573","description":"The ID of the donor."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 5809,\n      \"date\": \"string\",\n      \"amount\": \"string\",\n      \"paymentInfo\": \"string\",\n      \"donorId\": 4675,\n      \"donorImage\": \"string\",\n      \"donorName\": \"string\",\n      \"donorEmail\": \"string\",\n      \"form\": \"string\",\n      \"projects\": [\n        {\n          \"projectId\": 8062,\n          \"name\": \"string\",\n          \"amount\": \"string\",\n          \"currencyExchange\": {\n            \"nativeAmount\": \"string\",\n            \"nativeCurrencyCode\": \"string\",\n            \"settledExchangeRate\": 1465.802432587462,\n            \"settledAmount\": \"string\",\n            \"settledCurrencyCode\": \"string\",\n            \"baseExchangeRate\": 7176.003481178226,\n            \"baseAmount\": \"string\",\n            \"baseCurrencyCode\": \"string\",\n            \"isDifferentCurrency\": true\n          }\n        },\n        {\n          \"projectId\": 3888,\n          \"name\": \"string\",\n          \"amount\": \"string\",\n          \"currencyExchange\": {\n            \"nativeAmount\": \"string\",\n            \"nativeCurrencyCode\": \"string\",\n            \"settledExchangeRate\": 5375.558828731652,\n            \"settledAmount\": \"string\",\n            \"settledCurrencyCode\": \"string\",\n            \"baseExchangeRate\": 2077.647482468601,\n            \"baseAmount\": \"string\",\n            \"baseCurrencyCode\": \"string\",\n            \"isDifferentCurrency\": true\n          }\n        }\n      ],\n      \"status\": 8,\n      \"statusText\": \"string\",\n      \"donorIsGDPRDeleted\": false,\n      \"isAnonymous\": true,\n      \"canRefund\": true,\n      \"transactionId\": \"string\",\n      \"isTribute\": true,\n      \"isFromTerminal\": true,\n      \"donorPaidCosts\": false,\n      \"metadata\": [\n        \"string\",\n        \"string\"\n      ],\n      \"segmentCode\": \"string\",\n      \"currencyExchange\": {\n        \"nativeAmount\": \"string\",\n        \"nativeCurrencyCode\": \"string\",\n        \"settledExchangeRate\": 4385.435790370462,\n        \"settledAmount\": \"string\",\n        \"settledCurrencyCode\": \"string\",\n        \"baseExchangeRate\": 3192.206777473534,\n        \"baseAmount\": \"string\",\n        \"baseCurrencyCode\": \"string\",\n        \"isDifferentCurrency\": true\n      }\n    },\n    {\n      \"id\": 3977,\n      \"date\": \"string\",\n      \"amount\": \"string\",\n      \"paymentInfo\": \"string\",\n      \"donorId\": 4556,\n      \"donorImage\": \"string\",\n      \"donorName\": \"string\",\n      \"donorEmail\": \"string\",\n      \"form\": \"string\",\n      \"projects\": [\n        {\n          \"projectId\": 5344,\n          \"name\": \"string\",\n          \"amount\": \"string\",\n          \"currencyExchange\": {\n            \"nativeAmount\": \"string\",\n            \"nativeCurrencyCode\": \"string\",\n            \"settledExchangeRate\": 7647.858751462164,\n            \"settledAmount\": \"string\",\n            \"settledCurrencyCode\": \"string\",\n            \"baseExchangeRate\": 5506.6921464050565,\n            \"baseAmount\": \"string\",\n            \"baseCurrencyCode\": \"string\",\n            \"isDifferentCurrency\": true\n          }\n        },\n        {\n          \"projectId\": 4096,\n          \"name\": \"string\",\n          \"amount\": \"string\",\n          \"currencyExchange\": {\n            \"nativeAmount\": \"string\",\n            \"nativeCurrencyCode\": \"string\",\n            \"settledExchangeRate\": 4074.195908331342,\n            \"settledAmount\": \"string\",\n            \"settledCurrencyCode\": \"string\",\n            \"baseExchangeRate\": 6499.4656060278985,\n            \"baseAmount\": \"string\",\n            \"baseCurrencyCode\": \"string\",\n            \"isDifferentCurrency\": false\n          }\n        }\n      ],\n      \"status\": 10,\n      \"statusText\": \"string\",\n      \"donorIsGDPRDeleted\": true,\n      \"isAnonymous\": true,\n      \"canRefund\": false,\n      \"transactionId\": \"string\",\n      \"isTribute\": false,\n      \"isFromTerminal\": true,\n      \"donorPaidCosts\": false,\n      \"metadata\": [\n        \"string\",\n        \"string\"\n      ],\n      \"segmentCode\": \"string\",\n      \"currencyExchange\": {\n        \"nativeAmount\": \"string\",\n        \"nativeCurrencyCode\": \"string\",\n        \"settledExchangeRate\": 750.9367847719606,\n        \"settledAmount\": \"string\",\n        \"settledCurrencyCode\": \"string\",\n        \"baseExchangeRate\": 18.346323145308485,\n        \"baseAmount\": \"string\",\n        \"baseCurrencyCode\": \"string\",\n        \"isDifferentCurrency\": true\n      }\n    }\n  ],\n  \"total\": 6287\n}"},{"id":"d0613e3e-c9ef-403c-88fc-52fb3fe75c38","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:donorId/gifts?Filter=string&Skip=8361&Take=8361&SortBy=createdate&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":donorId","gifts"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: createdate, createddatetime, email, firstname, gifts, giftsum, id, lastname, modifieddatetimeutc, name, phone","key":"SortBy","value":"createdate"},{"key":"Descending","value":"true"}],"variable":[{"key":"donorId","value":"3573","description":"The ID of the donor."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"4ad259b8-f9cf-4003-aac6-0cca11a0e0a0"},{"name":"Gets a paginated list of the recurring gifts for a donor.","id":"6e131ffb-c0fa-4ae7-82f7-26045e2bb39a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Donor/:donorId/recurringgifts?Filter=string&Skip=8361&Take=8361&SortBy=createdate&Descending=true","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":donorId","recurringgifts"],"host":["https://prod-api.raisedonors.com"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":{"content":"<p>Field to sort by (case-insensitive). Valid options: createdate, createddatetime, email, firstname, gifts, giftsum, id, lastname, modifieddatetimeutc, name, phone</p>\n","type":"text/plain"},"key":"SortBy","value":"createdate"},{"key":"Descending","value":"true"}],"variable":[{"id":"033c600d-60f5-4cb9-8af0-a31d03196344","description":{"content":"<p>The ID of the donor.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"donorId"}]}},"response":[{"id":"b3f02d97-38e2-494a-aa8c-5affb7bc900d","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:donorId/recurringgifts?Filter=string&Skip=8361&Take=8361&SortBy=createdate&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":donorId","recurringgifts"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: createdate, createddatetime, email, firstname, gifts, giftsum, id, lastname, modifieddatetimeutc, name, phone","key":"SortBy","value":"createdate"},{"key":"Descending","value":"true"}],"variable":[{"key":"donorId","value":"3573","description":"The ID of the donor."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 8344,\n      \"profileNumber\": \"string\",\n      \"amount\": \"string\",\n      \"currencyCode\": \"string\",\n      \"donorId\": 2653,\n      \"donorName\": \"string\",\n      \"donorIsOrganization\": true,\n      \"frequency\": \"string\",\n      \"total\": \"string\",\n      \"successfulCycles\": 1230,\n      \"nextChargeDate\": \"string\",\n      \"status\": 4,\n      \"statusText\": \"string\",\n      \"projects\": [\n        \"string\",\n        \"string\"\n      ],\n      \"allowedEdit\": false,\n      \"metadata\": [\n        \"string\",\n        \"string\"\n      ],\n      \"isAnonymous\": true,\n      \"donorCoverCosts\": false,\n      \"crmKey\": \"string\",\n      \"currencyExchange\": {\n        \"nativeAmount\": \"string\",\n        \"nativeCurrencyCode\": \"string\",\n        \"settledExchangeRate\": 6263.333876023971,\n        \"settledAmount\": \"string\",\n        \"settledCurrencyCode\": \"string\",\n        \"baseExchangeRate\": 1979.989119802512,\n        \"baseAmount\": \"string\",\n        \"baseCurrencyCode\": \"string\",\n        \"isDifferentCurrency\": false\n      }\n    },\n    {\n      \"id\": 7900,\n      \"profileNumber\": \"string\",\n      \"amount\": \"string\",\n      \"currencyCode\": \"string\",\n      \"donorId\": 737,\n      \"donorName\": \"string\",\n      \"donorIsOrganization\": true,\n      \"frequency\": \"string\",\n      \"total\": \"string\",\n      \"successfulCycles\": 8352,\n      \"nextChargeDate\": \"string\",\n      \"status\": 1,\n      \"statusText\": \"string\",\n      \"projects\": [\n        \"string\",\n        \"string\"\n      ],\n      \"allowedEdit\": false,\n      \"metadata\": [\n        \"string\",\n        \"string\"\n      ],\n      \"isAnonymous\": false,\n      \"donorCoverCosts\": false,\n      \"crmKey\": \"string\",\n      \"currencyExchange\": {\n        \"nativeAmount\": \"string\",\n        \"nativeCurrencyCode\": \"string\",\n        \"settledExchangeRate\": 9254.050266090528,\n        \"settledAmount\": \"string\",\n        \"settledCurrencyCode\": \"string\",\n        \"baseExchangeRate\": 3459.3532391767235,\n        \"baseAmount\": \"string\",\n        \"baseCurrencyCode\": \"string\",\n        \"isDifferentCurrency\": true\n      }\n    }\n  ],\n  \"total\": 6837\n}"},{"id":"c56c3cc5-e133-4ecd-a0d2-cb60c39f65d3","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:donorId/recurringgifts?Filter=string&Skip=8361&Take=8361&SortBy=createdate&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":donorId","recurringgifts"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: createdate, createddatetime, email, firstname, gifts, giftsum, id, lastname, modifieddatetimeutc, name, phone","key":"SortBy","value":"createdate"},{"key":"Descending","value":"true"}],"variable":[{"key":"donorId","value":"3573","description":"The ID of the donor."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"6e131ffb-c0fa-4ae7-82f7-26045e2bb39a"},{"name":"Create a new donor activity.","id":"98806ca3-e650-4ea0-9ec7-4d2922b4bd79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"referenceId\": 3700,\n  \"activityOrigin\": 1,\n  \"activityType\": 0,\n  \"activityAction\": 11\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Donor/:id/activity","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":id","activity"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"0517857f-93e1-4758-bec1-7205d062b771","description":{"content":"<p>The ID of the donor.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"51453ed9-5301-4818-a0b7-ded7aa917ab1","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"referenceId\": 3700,\n  \"activityOrigin\": 1,\n  \"activityType\": 0,\n  \"activityAction\": 11\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/activity","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","activity"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9436,\n  \"display\": \"string\",\n  \"activityOrigin\": 0,\n  \"activityType\": 5,\n  \"createdDate\": \"string\",\n  \"createdTime\": \"string\",\n  \"donorId\": 8421,\n  \"donorAddressId\": 7866,\n  \"donorContactMethodId\": 4854,\n  \"giftId\": 634\n}"},{"id":"7461350d-c300-4ed2-8db2-02647acf0655","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"referenceId\": 3700,\n  \"activityOrigin\": 1,\n  \"activityType\": 0,\n  \"activityAction\": 11\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/activity","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","activity"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"98806ca3-e650-4ea0-9ec7-4d2922b4bd79"},{"name":"Get a paginated list of the activities for a donor.","id":"95fa5d80-e690-4586-9b00-396b9f57e185","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"filter\": \"string\",\n  \"skip\": 6740,\n  \"take\": 4405,\n  \"sortBy\": \"createdate\",\n  \"descending\": true,\n  \"selectedActivityOrigins\": [\n    2,\n    5\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Donor/:id/activities","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":id","activities"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"ea4de4d4-9e67-4dc3-98a5-6ab4fa770805","description":{"content":"<p>The ID of the donor</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"47a27b6e-c488-44dc-8ef6-15beb05bd436","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"filter\": \"string\",\n  \"skip\": 6740,\n  \"take\": 4405,\n  \"sortBy\": \"createdate\",\n  \"descending\": true,\n  \"selectedActivityOrigins\": [\n    2,\n    5\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/activities","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","activities"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 3477,\n      \"display\": \"string\",\n      \"activityOrigin\": 2,\n      \"activityType\": 5,\n      \"createdDate\": \"string\",\n      \"createdTime\": \"string\",\n      \"donorId\": 5223,\n      \"donorAddressId\": 1493,\n      \"donorContactMethodId\": 7903,\n      \"giftId\": 413\n    },\n    {\n      \"id\": 6117,\n      \"display\": \"string\",\n      \"activityOrigin\": 2,\n      \"activityType\": 0,\n      \"createdDate\": \"string\",\n      \"createdTime\": \"string\",\n      \"donorId\": 5289,\n      \"donorAddressId\": 8054,\n      \"donorContactMethodId\": 3606,\n      \"giftId\": 7857\n    }\n  ],\n  \"total\": 1604\n}"},{"id":"1c159aad-e72a-483c-9fc6-89ba80cbd7d0","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"filter\": \"string\",\n  \"skip\": 6740,\n  \"take\": 4405,\n  \"sortBy\": \"createdate\",\n  \"descending\": true,\n  \"selectedActivityOrigins\": [\n    2,\n    5\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:id/activities","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":id","activities"],"variable":[{"key":"id","value":"3573","description":"The ID of the donor"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"95fa5d80-e690-4586-9b00-396b9f57e185"},{"name":"Gets a paginated list of the projects for a donor.","id":"9df28ab5-0a7e-4171-94e5-9ef6f0045cb7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Donor/:donorId/projects?Filter=string&Skip=8361&Take=8361&SortBy=createdate&Descending=true","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":donorId","projects"],"host":["https://prod-api.raisedonors.com"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":{"content":"<p>Field to sort by (case-insensitive). Valid options: createdate, createddatetime, email, firstname, gifts, giftsum, id, lastname, modifieddatetimeutc, name, phone</p>\n","type":"text/plain"},"key":"SortBy","value":"createdate"},{"key":"Descending","value":"true"}],"variable":[{"id":"322d3eb1-8566-43c1-a8ad-ac36c368c8a5","description":{"content":"<p>The ID of the donor.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"donorId"}]}},"response":[{"id":"1b8f4b45-8abe-4e3a-91eb-1de9c385ef4d","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:donorId/projects?Filter=string&Skip=8361&Take=8361&SortBy=createdate&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":donorId","projects"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: createdate, createddatetime, email, firstname, gifts, giftsum, id, lastname, modifieddatetimeutc, name, phone","key":"SortBy","value":"createdate"},{"key":"Descending","value":"true"}],"variable":[{"key":"donorId","value":"3573","description":"The ID of the donor."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 1292,\n      \"name\": \"string\",\n      \"totalAmount\": \"string\",\n      \"totalGifts\": 1134\n    },\n    {\n      \"id\": 2200,\n      \"name\": \"string\",\n      \"totalAmount\": \"string\",\n      \"totalGifts\": 6249\n    }\n  ],\n  \"total\": 2984\n}"},{"id":"da4fae8b-5ed4-4476-8496-c8bfd30a1b05","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:donorId/projects?Filter=string&Skip=8361&Take=8361&SortBy=createdate&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":donorId","projects"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: createdate, createddatetime, email, firstname, gifts, giftsum, id, lastname, modifieddatetimeutc, name, phone","key":"SortBy","value":"createdate"},{"key":"Descending","value":"true"}],"variable":[{"key":"donorId","value":"3573","description":"The ID of the donor."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"9df28ab5-0a7e-4171-94e5-9ef6f0045cb7"},{"name":"Get the campaign statistics for a donor.","id":"44bff55b-df3f-4480-b36f-2e1f32c6a706","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Donor/:donorId/campaign-statistics?Filter=string&Skip=8361&Take=8361&SortBy=createdate&Descending=true","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":donorId","campaign-statistics"],"host":["https://prod-api.raisedonors.com"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":{"content":"<p>Field to sort by (case-insensitive). Valid options: createdate, createddatetime, email, firstname, gifts, giftsum, id, lastname, modifieddatetimeutc, name, phone</p>\n","type":"text/plain"},"key":"SortBy","value":"createdate"},{"key":"Descending","value":"true"}],"variable":[{"id":"bac7cfe9-adf1-401c-89b6-c7b2788fa960","description":{"content":"<p>The ID of the donor.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"donorId"}]}},"response":[{"id":"2e4e1093-999d-4d3f-982d-01db9956a0b2","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:donorId/campaign-statistics?Filter=string&Skip=8361&Take=8361&SortBy=createdate&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":donorId","campaign-statistics"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: createdate, createddatetime, email, firstname, gifts, giftsum, id, lastname, modifieddatetimeutc, name, phone","key":"SortBy","value":"createdate"},{"key":"Descending","value":"true"}],"variable":[{"key":"donorId","value":"3573","description":"The ID of the donor."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"name\": \"string\",\n      \"total\": \"string\"\n    },\n    {\n      \"name\": \"string\",\n      \"total\": \"string\"\n    }\n  ],\n  \"total\": 776\n}"},{"id":"c1add6dd-5120-4725-8be0-25fab5fb0d26","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:donorId/campaign-statistics?Filter=string&Skip=8361&Take=8361&SortBy=createdate&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":donorId","campaign-statistics"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: createdate, createddatetime, email, firstname, gifts, giftsum, id, lastname, modifieddatetimeutc, name, phone","key":"SortBy","value":"createdate"},{"key":"Descending","value":"true"}],"variable":[{"key":"donorId","value":"3573","description":"The ID of the donor."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"44bff55b-df3f-4480-b36f-2e1f32c6a706"},{"name":"Get the motivation statistics for a donor.","id":"ae6ff721-49aa-4f00-87ae-4a8b5412e84e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Donor/:donorId/motivation-statistics?Filter=string&Skip=8361&Take=8361&SortBy=createdate&Descending=true","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":donorId","motivation-statistics"],"host":["https://prod-api.raisedonors.com"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":{"content":"<p>Field to sort by (case-insensitive). Valid options: createdate, createddatetime, email, firstname, gifts, giftsum, id, lastname, modifieddatetimeutc, name, phone</p>\n","type":"text/plain"},"key":"SortBy","value":"createdate"},{"key":"Descending","value":"true"}],"variable":[{"id":"5f90ae96-cb3c-452d-b167-a349858d1b86","description":{"content":"<p>The ID of the donor.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"donorId"}]}},"response":[{"id":"b3fbd690-39f2-4d37-9dc7-dd313c7d157f","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:donorId/motivation-statistics?Filter=string&Skip=8361&Take=8361&SortBy=createdate&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":donorId","motivation-statistics"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: createdate, createddatetime, email, firstname, gifts, giftsum, id, lastname, modifieddatetimeutc, name, phone","key":"SortBy","value":"createdate"},{"key":"Descending","value":"true"}],"variable":[{"key":"donorId","value":"3573","description":"The ID of the donor."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"name\": \"string\",\n      \"total\": \"string\"\n    },\n    {\n      \"name\": \"string\",\n      \"total\": \"string\"\n    }\n  ],\n  \"total\": 776\n}"},{"id":"ed8fb2fd-bbd4-4a28-a2cf-2879b2313049","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:donorId/motivation-statistics?Filter=string&Skip=8361&Take=8361&SortBy=createdate&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":donorId","motivation-statistics"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: createdate, createddatetime, email, firstname, gifts, giftsum, id, lastname, modifieddatetimeutc, name, phone","key":"SortBy","value":"createdate"},{"key":"Descending","value":"true"}],"variable":[{"key":"donorId","value":"3573","description":"The ID of the donor."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"ae6ff721-49aa-4f00-87ae-4a8b5412e84e"},{"name":"Get the segment statistics for a donor.","id":"6157d10b-0f46-463e-94e1-e9cb03cdaeef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Donor/:donorId/segment-statistics?Filter=string&Skip=8361&Take=8361&SortBy=createdate&Descending=true","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor",":donorId","segment-statistics"],"host":["https://prod-api.raisedonors.com"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":{"content":"<p>Field to sort by (case-insensitive). Valid options: createdate, createddatetime, email, firstname, gifts, giftsum, id, lastname, modifieddatetimeutc, name, phone</p>\n","type":"text/plain"},"key":"SortBy","value":"createdate"},{"key":"Descending","value":"true"}],"variable":[{"id":"10797e01-c2ce-48f1-8d82-05d805dd5e7a","description":{"content":"<p>The ID of the donor.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"donorId"}]}},"response":[{"id":"7229e6d0-56e8-4adb-97c0-3d01301b523c","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:donorId/segment-statistics?Filter=string&Skip=8361&Take=8361&SortBy=createdate&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":donorId","segment-statistics"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: createdate, createddatetime, email, firstname, gifts, giftsum, id, lastname, modifieddatetimeutc, name, phone","key":"SortBy","value":"createdate"},{"key":"Descending","value":"true"}],"variable":[{"key":"donorId","value":"3573","description":"The ID of the donor."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"name\": \"string\",\n      \"total\": \"string\"\n    },\n    {\n      \"name\": \"string\",\n      \"total\": \"string\"\n    }\n  ],\n  \"total\": 776\n}"},{"id":"e67b4028-a0f1-4ee9-b589-7fcd9bb4acaa","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Donor/:donorId/segment-statistics?Filter=string&Skip=8361&Take=8361&SortBy=createdate&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Donor",":donorId","segment-statistics"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: createdate, createddatetime, email, firstname, gifts, giftsum, id, lastname, modifieddatetimeutc, name, phone","key":"SortBy","value":"createdate"},{"key":"Descending","value":"true"}],"variable":[{"key":"donorId","value":"3573","description":"The ID of the donor."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"6157d10b-0f46-463e-94e1-e9cb03cdaeef"},{"name":"Transfer a gift to another donor.","id":"634e47e5-d370-4ba9-8263-1b4940cad2c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"giftId\": 4047,\n  \"nextDonorId\": 4938\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Donor/transfer-gift","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor","transfer-gift"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[]}},"response":[{"id":"4b29a342-8705-4764-91eb-a61ee6ecf3b3","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"giftId\": 4047,\n  \"nextDonorId\": 4938\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Donor/transfer-gift"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"cc2dca79-43f8-48d5-8fbd-f2a1aa68cf10","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"giftId\": 4047,\n  \"nextDonorId\": 4938\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Donor/transfer-gift"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"634e47e5-d370-4ba9-8263-1b4940cad2c2"},{"name":"Transfer a recurring gift to another donor.","id":"ad717803-9f75-4677-a2a5-48794fa2579e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"recurringGiftId\": 4516,\n  \"nextDonorId\": 880\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Donor/transfer-recurring-gift","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Donor","transfer-recurring-gift"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[]}},"response":[{"id":"9c4ff4a2-af7e-4bb1-a80d-6b937acdc933","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"recurringGiftId\": 4516,\n  \"nextDonorId\": 880\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Donor/transfer-recurring-gift"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"9b2dfd0c-f1aa-4fe2-9813-a7fa8706a81a","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"recurringGiftId\": 4516,\n  \"nextDonorId\": 880\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Donor/transfer-recurring-gift"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"ad717803-9f75-4677-a2a5-48794fa2579e"}],"id":"1a4399de-067d-45f7-b13d-83fe42965447","_postman_id":"1a4399de-067d-45f7-b13d-83fe42965447","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}}},{"name":"EmailList","item":[{"name":"Email List Search","id":"c546b801-2257-415a-a05e-110c5cb28b71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://prod-api.raisedonors.com/api/EmailList/search?filter=string","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","EmailList","search"],"host":["https://prod-api.raisedonors.com"],"query":[{"key":"filter","value":"string"}],"variable":[]}},"response":[{"id":"5f792eef-5220-45a6-ba84-6414229e82a2","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/EmailList/search?filter=string","host":["https://prod-api.raisedonors.com"],"path":["api","EmailList","search"],"query":[{"key":"filter","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c546b801-2257-415a-a05e-110c5cb28b71"}],"id":"2e1be301-383f-4463-b9f0-f95a58478965","_postman_id":"2e1be301-383f-4463-b9f0-f95a58478965","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}}},{"name":"Gift","item":[{"name":"Get a paginated list of gifts.","id":"e1b1b3f9-430c-4571-85d8-a9ec8f4bda9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Gift/list?Filter=string&Skip=8361&Take=8361&SortBy=amount&Descending=true","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Gift","list"],"host":["https://prod-api.raisedonors.com"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":{"content":"<p>Field to sort by (case-insensitive). Valid options: amount, date, donorname, id, status</p>\n","type":"text/plain"},"key":"SortBy","value":"amount"},{"key":"Descending","value":"true"}],"variable":[]}},"response":[{"id":"5a3f44ce-6643-4860-8deb-21d37ea4714c","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Gift/list?Filter=string&Skip=8361&Take=8361&SortBy=amount&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Gift","list"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: amount, date, donorname, id, status","key":"SortBy","value":"amount"},{"key":"Descending","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 5809,\n      \"date\": \"string\",\n      \"amount\": \"string\",\n      \"paymentInfo\": \"string\",\n      \"donorId\": 4675,\n      \"donorImage\": \"string\",\n      \"donorName\": \"string\",\n      \"donorEmail\": \"string\",\n      \"form\": \"string\",\n      \"projects\": [\n        {\n          \"projectId\": 8062,\n          \"name\": \"string\",\n          \"amount\": \"string\",\n          \"currencyExchange\": {\n            \"nativeAmount\": \"string\",\n            \"nativeCurrencyCode\": \"string\",\n            \"settledExchangeRate\": 1465.802432587462,\n            \"settledAmount\": \"string\",\n            \"settledCurrencyCode\": \"string\",\n            \"baseExchangeRate\": 7176.003481178226,\n            \"baseAmount\": \"string\",\n            \"baseCurrencyCode\": \"string\",\n            \"isDifferentCurrency\": true\n          }\n        },\n        {\n          \"projectId\": 3888,\n          \"name\": \"string\",\n          \"amount\": \"string\",\n          \"currencyExchange\": {\n            \"nativeAmount\": \"string\",\n            \"nativeCurrencyCode\": \"string\",\n            \"settledExchangeRate\": 5375.558828731652,\n            \"settledAmount\": \"string\",\n            \"settledCurrencyCode\": \"string\",\n            \"baseExchangeRate\": 2077.647482468601,\n            \"baseAmount\": \"string\",\n            \"baseCurrencyCode\": \"string\",\n            \"isDifferentCurrency\": true\n          }\n        }\n      ],\n      \"status\": 8,\n      \"statusText\": \"string\",\n      \"donorIsGDPRDeleted\": false,\n      \"isAnonymous\": true,\n      \"canRefund\": true,\n      \"transactionId\": \"string\",\n      \"isTribute\": true,\n      \"isFromTerminal\": true,\n      \"donorPaidCosts\": false,\n      \"metadata\": [\n        \"string\",\n        \"string\"\n      ],\n      \"segmentCode\": \"string\",\n      \"currencyExchange\": {\n        \"nativeAmount\": \"string\",\n        \"nativeCurrencyCode\": \"string\",\n        \"settledExchangeRate\": 4385.435790370462,\n        \"settledAmount\": \"string\",\n        \"settledCurrencyCode\": \"string\",\n        \"baseExchangeRate\": 3192.206777473534,\n        \"baseAmount\": \"string\",\n        \"baseCurrencyCode\": \"string\",\n        \"isDifferentCurrency\": true\n      }\n    },\n    {\n      \"id\": 3977,\n      \"date\": \"string\",\n      \"amount\": \"string\",\n      \"paymentInfo\": \"string\",\n      \"donorId\": 4556,\n      \"donorImage\": \"string\",\n      \"donorName\": \"string\",\n      \"donorEmail\": \"string\",\n      \"form\": \"string\",\n      \"projects\": [\n        {\n          \"projectId\": 5344,\n          \"name\": \"string\",\n          \"amount\": \"string\",\n          \"currencyExchange\": {\n            \"nativeAmount\": \"string\",\n            \"nativeCurrencyCode\": \"string\",\n            \"settledExchangeRate\": 7647.858751462164,\n            \"settledAmount\": \"string\",\n            \"settledCurrencyCode\": \"string\",\n            \"baseExchangeRate\": 5506.6921464050565,\n            \"baseAmount\": \"string\",\n            \"baseCurrencyCode\": \"string\",\n            \"isDifferentCurrency\": true\n          }\n        },\n        {\n          \"projectId\": 4096,\n          \"name\": \"string\",\n          \"amount\": \"string\",\n          \"currencyExchange\": {\n            \"nativeAmount\": \"string\",\n            \"nativeCurrencyCode\": \"string\",\n            \"settledExchangeRate\": 4074.195908331342,\n            \"settledAmount\": \"string\",\n            \"settledCurrencyCode\": \"string\",\n            \"baseExchangeRate\": 6499.4656060278985,\n            \"baseAmount\": \"string\",\n            \"baseCurrencyCode\": \"string\",\n            \"isDifferentCurrency\": false\n          }\n        }\n      ],\n      \"status\": 10,\n      \"statusText\": \"string\",\n      \"donorIsGDPRDeleted\": true,\n      \"isAnonymous\": true,\n      \"canRefund\": false,\n      \"transactionId\": \"string\",\n      \"isTribute\": false,\n      \"isFromTerminal\": true,\n      \"donorPaidCosts\": false,\n      \"metadata\": [\n        \"string\",\n        \"string\"\n      ],\n      \"segmentCode\": \"string\",\n      \"currencyExchange\": {\n        \"nativeAmount\": \"string\",\n        \"nativeCurrencyCode\": \"string\",\n        \"settledExchangeRate\": 750.9367847719606,\n        \"settledAmount\": \"string\",\n        \"settledCurrencyCode\": \"string\",\n        \"baseExchangeRate\": 18.346323145308485,\n        \"baseAmount\": \"string\",\n        \"baseCurrencyCode\": \"string\",\n        \"isDifferentCurrency\": true\n      }\n    }\n  ],\n  \"total\": 6287\n}"},{"id":"cc334674-b2a1-4b04-bc8d-8a9380b82b8a","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Gift/list?Filter=string&Skip=8361&Take=8361&SortBy=amount&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Gift","list"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: amount, date, donorname, id, status","key":"SortBy","value":"amount"},{"key":"Descending","value":"true"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"e1b1b3f9-430c-4571-85d8-a9ec8f4bda9f"},{"name":"Get a gift by its ID.","id":"53b86d2c-29cc-481b-b285-23e473bf6905","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Gift/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Gift",":id"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"acfd8b73-1140-4113-a9ee-0f9e5b14f103","description":{"content":"<p>The ID of the gift.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"6c20d624-ba81-447c-aeb3-613f7421b7a6","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Gift/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Gift",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the gift."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 8852,\n  \"currency\": \"string\",\n  \"amount\": 7702.364459287094,\n  \"formattedAmount\": \"string\",\n  \"date\": \"string\",\n  \"createdDate\": \"string\",\n  \"modifiedDate\": \"string\",\n  \"status\": 7,\n  \"statusText\": \"string\",\n  \"gateway\": \"string\",\n  \"authorizationNumber\": \"string\",\n  \"transactionId\": \"string\",\n  \"donationId\": \"string\",\n  \"paymentInfo\": \"string\",\n  \"paymentType\": \"string\",\n  \"segment\": \"string\",\n  \"motivation\": \"string\",\n  \"campaignName\": \"string\",\n  \"segmentName\": \"string\",\n  \"notes\": \"string\",\n  \"comment\": \"string\",\n  \"donorId\": 8211,\n  \"billingName\": \"string\",\n  \"shippingName\": \"string\",\n  \"recurringGiftId\": 9326,\n  \"giftAidRequested\": false,\n  \"canRefund\": true,\n  \"donorPaidCosts\": true,\n  \"paymentProviderTransactionUrl\": \"string\",\n  \"submissionUrl\": \"string\",\n  \"billingAddress\": {\n    \"address1\": \"string\",\n    \"address2\": \"string\",\n    \"city\": \"string\",\n    \"state\": \"string\",\n    \"postal\": \"string\",\n    \"countryString\": \"string\",\n    \"addressType\": 0,\n    \"addressTypeDisplay\": \"string\"\n  },\n  \"shippingAddress\": {\n    \"address1\": \"string\",\n    \"address2\": \"string\",\n    \"city\": \"string\",\n    \"state\": \"string\",\n    \"postal\": \"string\",\n    \"countryString\": \"string\",\n    \"addressType\": 0,\n    \"addressTypeDisplay\": \"string\"\n  },\n  \"projects\": [\n    {\n      \"projectId\": 725,\n      \"name\": \"string\",\n      \"amount\": \"string\",\n      \"currencyExchange\": {\n        \"nativeAmount\": \"string\",\n        \"nativeCurrencyCode\": \"string\",\n        \"settledExchangeRate\": 5453.808192472858,\n        \"settledAmount\": \"string\",\n        \"settledCurrencyCode\": \"string\",\n        \"baseExchangeRate\": 1029.762540492336,\n        \"baseAmount\": \"string\",\n        \"baseCurrencyCode\": \"string\",\n        \"isDifferentCurrency\": true\n      }\n    },\n    {\n      \"projectId\": 2454,\n      \"name\": \"string\",\n      \"amount\": \"string\",\n      \"currencyExchange\": {\n        \"nativeAmount\": \"string\",\n        \"nativeCurrencyCode\": \"string\",\n        \"settledExchangeRate\": 453.22815367447646,\n        \"settledAmount\": \"string\",\n        \"settledCurrencyCode\": \"string\",\n        \"baseExchangeRate\": 5677.31384334605,\n        \"baseAmount\": \"string\",\n        \"baseCurrencyCode\": \"string\",\n        \"isDifferentCurrency\": true\n      }\n    }\n  ],\n  \"browserInfo\": {\n    \"name\": \"string\",\n    \"version\": \"string\",\n    \"platform\": \"string\",\n    \"userAgent\": \"string\",\n    \"javaScriptVersion\": \"string\",\n    \"isBeta\": true,\n    \"isCrawler\": false,\n    \"supportsCookies\": false,\n    \"supportsJavaApplets\": false,\n    \"supportsActiveXControls\": true\n  },\n  \"premiumItem\": {\n    \"qualifies\": false,\n    \"premium\": {\n      \"id\": 5037,\n      \"currency\": \"string\",\n      \"name\": \"string\",\n      \"nameShort\": \"string\",\n      \"code\": \"string\",\n      \"description\": \"string\",\n      \"isActive\": true,\n      \"price\": 7647.96506401982,\n      \"formattedPrice\": \"string\",\n      \"fairMarketValue\": 4943.557679723261,\n      \"formattedFairMarketValue\": \"string\",\n      \"inventory\": 3993,\n      \"keepActiveWhenHasNoInventory\": true,\n      \"recurringPremiumId\": 6074,\n      \"recurringPremiumName\": \"string\",\n      \"image\": \"string\",\n      \"externalIdentifier\": \"string\",\n      \"otherMinimumAmounts\": [\n        {\n          \"currency\": \"string\",\n          \"value\": 6211.129236303623\n        },\n        {\n          \"currency\": \"string\",\n          \"value\": 9152.912595024534\n        }\n      ]\n    }\n  },\n  \"form\": {\n    \"id\": 9991,\n    \"title\": \"string\",\n    \"landingUrl\": \"string\",\n    \"referringUrl\": \"string\",\n    \"isLegacy\": true\n  },\n  \"donorStatistic\": {\n    \"totalGift\": \"string\",\n    \"totalGiftAmount\": \"string\",\n    \"lastGift\": {\n      \"id\": 2284,\n      \"date\": \"string\",\n      \"amount\": \"string\",\n      \"paymentInfo\": \"string\",\n      \"donorId\": 9848,\n      \"donorImage\": \"string\",\n      \"donorName\": \"string\",\n      \"donorEmail\": \"string\",\n      \"form\": \"string\",\n      \"projects\": [\n        {\n          \"projectId\": 2560,\n          \"name\": \"string\",\n          \"amount\": \"string\",\n          \"currencyExchange\": {\n            \"nativeAmount\": \"string\",\n            \"nativeCurrencyCode\": \"string\",\n            \"settledExchangeRate\": 7619.220949783056,\n            \"settledAmount\": \"string\",\n            \"settledCurrencyCode\": \"string\",\n            \"baseExchangeRate\": 4362.721462005341,\n            \"baseAmount\": \"string\",\n            \"baseCurrencyCode\": \"string\",\n            \"isDifferentCurrency\": true\n          }\n        },\n        {\n          \"projectId\": 5916,\n          \"name\": \"string\",\n          \"amount\": \"string\",\n          \"currencyExchange\": {\n            \"nativeAmount\": \"string\",\n            \"nativeCurrencyCode\": \"string\",\n            \"settledExchangeRate\": 9362.504709636132,\n            \"settledAmount\": \"string\",\n            \"settledCurrencyCode\": \"string\",\n            \"baseExchangeRate\": 1278.6120015306124,\n            \"baseAmount\": \"string\",\n            \"baseCurrencyCode\": \"string\",\n            \"isDifferentCurrency\": false\n          }\n        }\n      ],\n      \"status\": 6,\n      \"statusText\": \"string\",\n      \"donorIsGDPRDeleted\": false,\n      \"isAnonymous\": false,\n      \"canRefund\": true,\n      \"transactionId\": \"string\",\n      \"isTribute\": false,\n      \"isFromTerminal\": false,\n      \"donorPaidCosts\": false,\n      \"metadata\": [\n        \"string\",\n        \"string\"\n      ],\n      \"segmentCode\": \"string\",\n      \"currencyExchange\": {\n        \"nativeAmount\": \"string\",\n        \"nativeCurrencyCode\": \"string\",\n        \"settledExchangeRate\": 206.65038069929142,\n        \"settledAmount\": \"string\",\n        \"settledCurrencyCode\": \"string\",\n        \"baseExchangeRate\": 7687.235403751007,\n        \"baseAmount\": \"string\",\n        \"baseCurrencyCode\": \"string\",\n        \"isDifferentCurrency\": false\n      }\n    },\n    \"lastGiftAmount\": \"string\"\n  },\n  \"recurringScheduleInfo\": {\n    \"amount\": \"string\",\n    \"currencyCode\": \"string\",\n    \"frequency\": \"string\",\n    \"status\": 5,\n    \"statusText\": \"string\",\n    \"successfulCycles\": 8687,\n    \"startDate\": \"string\",\n    \"nextCharge\": \"string\",\n    \"currentCharge\": \"string\",\n    \"previousCharge\": \"string\",\n    \"currencyExchange\": {\n      \"nativeAmount\": \"string\",\n      \"nativeCurrencyCode\": \"string\",\n      \"settledExchangeRate\": 3005.8936823657655,\n      \"settledAmount\": \"string\",\n      \"settledCurrencyCode\": \"string\",\n      \"baseExchangeRate\": 9801.559972901652,\n      \"baseAmount\": \"string\",\n      \"baseCurrencyCode\": \"string\",\n      \"isDifferentCurrency\": true\n    }\n  },\n  \"tribute\": {\n    \"isInMemoryOf\": true,\n    \"isInHonorOf\": true,\n    \"sendByEmail\": false,\n    \"sendByPostal\": true,\n    \"tributeFirstName\": \"string\",\n    \"tributeLastName\": \"string\",\n    \"tributeAddress\": {\n      \"address1\": \"string\",\n      \"address2\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"postal\": \"string\",\n      \"countryString\": \"string\",\n      \"addressType\": 0,\n      \"addressTypeDisplay\": \"string\"\n    },\n    \"acknowledgeeFirstName\": \"string\",\n    \"acknowledgeeLastName\": \"string\",\n    \"acknowledgeeAddress\": {\n      \"address1\": \"string\",\n      \"address2\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"postal\": \"string\",\n      \"countryString\": \"string\",\n      \"addressType\": 5,\n      \"addressTypeDisplay\": \"string\"\n    },\n    \"acknowledgeeEmailAddress\": \"string\",\n    \"message\": \"string\"\n  },\n  \"donor\": {\n    \"id\": 4960,\n    \"name\": \"string\",\n    \"title\": \"string\",\n    \"firstName\": \"string\",\n    \"middleName\": \"string\",\n    \"lastName\": \"string\",\n    \"suffix\": \"string\",\n    \"email\": \"string\",\n    \"phone\": \"string\",\n    \"createdDate\": \"string\",\n    \"modifiedDate\": \"string\",\n    \"notes\": \"string\",\n    \"isOrganization\": false,\n    \"organizationName\": \"string\",\n    \"crmKeyUrls\": {\n      \"key_0\": {\n        \"crmKey\": \"string\",\n        \"url\": \"string\"\n      },\n      \"key_1\": {\n        \"crmKey\": \"string\",\n        \"url\": \"string\"\n      },\n      \"key_2\": {\n        \"crmKey\": \"string\",\n        \"url\": \"string\"\n      }\n    },\n    \"crmKey\": \"string\",\n    \"crmSecondKey\": \"string\",\n    \"isTestMode\": false,\n    \"isArchived\": true,\n    \"isGDPRDeleted\": false,\n    \"primaryAddress\": {\n      \"address1\": \"string\",\n      \"address2\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"postal\": \"string\",\n      \"countryString\": \"string\",\n      \"addressType\": 0,\n      \"addressTypeDisplay\": \"string\"\n    },\n    \"donorAddresses\": [\n      {\n        \"address1\": \"string\",\n        \"address2\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"postal\": \"string\",\n        \"countryString\": \"string\",\n        \"addressType\": 5,\n        \"addressTypeDisplay\": \"string\"\n      },\n      {\n        \"address1\": \"string\",\n        \"address2\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"postal\": \"string\",\n        \"countryString\": \"string\",\n        \"addressType\": 3,\n        \"addressTypeDisplay\": \"string\"\n      }\n    ],\n    \"donorEmailAddresses\": [\n      {\n        \"id\": 4512,\n        \"donorId\": 6959,\n        \"type\": 22,\n        \"typeDisplay\": \"string\",\n        \"value\": \"string\",\n        \"secondaryValue\": \"string\",\n        \"isPrimary\": false,\n        \"isOptedIn\": false,\n        \"isValid\": true,\n        \"isEmail\": true,\n        \"isPhone\": false,\n        \"isBounced\": false,\n        \"countryCode\": \"string\"\n      },\n      {\n        \"id\": 4628,\n        \"donorId\": 120,\n        \"type\": 10,\n        \"typeDisplay\": \"string\",\n        \"value\": \"string\",\n        \"secondaryValue\": \"string\",\n        \"isPrimary\": false,\n        \"isOptedIn\": false,\n        \"isValid\": false,\n        \"isEmail\": false,\n        \"isPhone\": true,\n        \"isBounced\": true,\n        \"countryCode\": \"string\"\n      }\n    ],\n    \"donorPhoneNumbers\": [\n      {\n        \"id\": 7501,\n        \"donorId\": 8726,\n        \"type\": 10,\n        \"typeDisplay\": \"string\",\n        \"value\": \"string\",\n        \"secondaryValue\": \"string\",\n        \"isPrimary\": false,\n        \"isOptedIn\": false,\n        \"isValid\": true,\n        \"isEmail\": false,\n        \"isPhone\": true,\n        \"isBounced\": false,\n        \"countryCode\": \"string\"\n      },\n      {\n        \"id\": 1422,\n        \"donorId\": 6075,\n        \"type\": 21,\n        \"typeDisplay\": \"string\",\n        \"value\": \"string\",\n        \"secondaryValue\": \"string\",\n        \"isPrimary\": true,\n        \"isOptedIn\": true,\n        \"isValid\": true,\n        \"isEmail\": false,\n        \"isPhone\": false,\n        \"isBounced\": false,\n        \"countryCode\": \"string\"\n      }\n    ]\n  },\n  \"isAnonymous\": true,\n  \"isTestMode\": false,\n  \"virtualTerminalId\": 5419,\n  \"virtualTerminal\": \"string\",\n  \"googleUtmCampaign\": \"string\",\n  \"googleUtmContent\": \"string\",\n  \"googleUtmMedium\": \"string\",\n  \"googleUtmSource\": \"string\",\n  \"googleUtmTerm\": \"string\",\n  \"googleUtmId\": \"string\",\n  \"googleGclid\": \"string\",\n  \"currencyExchange\": {\n    \"nativeAmount\": \"string\",\n    \"nativeCurrencyCode\": \"string\",\n    \"settledExchangeRate\": 8118.876661238836,\n    \"settledAmount\": \"string\",\n    \"settledCurrencyCode\": \"string\",\n    \"baseExchangeRate\": 2087.638562216738,\n    \"baseAmount\": \"string\",\n    \"baseCurrencyCode\": \"string\",\n    \"isDifferentCurrency\": false\n  }\n}"},{"id":"a7a52c4c-ab9d-4435-aa18-4f27da66cbd4","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Gift/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Gift",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the gift."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"53b86d2c-29cc-481b-b285-23e473bf6905"},{"name":"Delete a gift by its ID.","id":"70049004-92dd-4930-ba46-32a2b7b19757","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Gift/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Gift",":id"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"90be29b6-827b-43b7-abfe-d7daa754c06c","description":{"content":"<p>The ID of the gift.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"62dec930-abb7-4aec-ae7a-834c6691e488","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Gift/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Gift",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the gift."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"f3aab1fa-6a7d-4a4f-8bf6-f03f2359df71","name":"Bad Request","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Gift/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Gift",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the gift."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"70049004-92dd-4930-ba46-32a2b7b19757"},{"name":"Query gifts based on the specified filter.","id":"5425b2f7-64a1-40db-937e-8dc80906afcc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"filter\": \"string\",\n  \"skip\": 7689,\n  \"take\": 1304,\n  \"sortBy\": \"createdate\",\n  \"descending\": true,\n  \"queryType\": 3,\n  \"groups\": [\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 4,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 19,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    },\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    }\n  ],\n  \"selectedColumns\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Gift/query","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Gift","query"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[]}},"response":[{"id":"fb3ff04e-4eb8-4e3b-a3e7-ad8fc8cf853c","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"filter\": \"string\",\n  \"skip\": 7689,\n  \"take\": 1304,\n  \"sortBy\": \"createdate\",\n  \"descending\": true,\n  \"queryType\": 3,\n  \"groups\": [\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 4,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 19,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    },\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    }\n  ],\n  \"selectedColumns\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Gift/query"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 5809,\n      \"date\": \"string\",\n      \"amount\": \"string\",\n      \"paymentInfo\": \"string\",\n      \"donorId\": 4675,\n      \"donorImage\": \"string\",\n      \"donorName\": \"string\",\n      \"donorEmail\": \"string\",\n      \"form\": \"string\",\n      \"projects\": [\n        {\n          \"projectId\": 8062,\n          \"name\": \"string\",\n          \"amount\": \"string\",\n          \"currencyExchange\": {\n            \"nativeAmount\": \"string\",\n            \"nativeCurrencyCode\": \"string\",\n            \"settledExchangeRate\": 1465.802432587462,\n            \"settledAmount\": \"string\",\n            \"settledCurrencyCode\": \"string\",\n            \"baseExchangeRate\": 7176.003481178226,\n            \"baseAmount\": \"string\",\n            \"baseCurrencyCode\": \"string\",\n            \"isDifferentCurrency\": true\n          }\n        },\n        {\n          \"projectId\": 3888,\n          \"name\": \"string\",\n          \"amount\": \"string\",\n          \"currencyExchange\": {\n            \"nativeAmount\": \"string\",\n            \"nativeCurrencyCode\": \"string\",\n            \"settledExchangeRate\": 5375.558828731652,\n            \"settledAmount\": \"string\",\n            \"settledCurrencyCode\": \"string\",\n            \"baseExchangeRate\": 2077.647482468601,\n            \"baseAmount\": \"string\",\n            \"baseCurrencyCode\": \"string\",\n            \"isDifferentCurrency\": true\n          }\n        }\n      ],\n      \"status\": 8,\n      \"statusText\": \"string\",\n      \"donorIsGDPRDeleted\": false,\n      \"isAnonymous\": true,\n      \"canRefund\": true,\n      \"transactionId\": \"string\",\n      \"isTribute\": true,\n      \"isFromTerminal\": true,\n      \"donorPaidCosts\": false,\n      \"metadata\": [\n        \"string\",\n        \"string\"\n      ],\n      \"segmentCode\": \"string\",\n      \"currencyExchange\": {\n        \"nativeAmount\": \"string\",\n        \"nativeCurrencyCode\": \"string\",\n        \"settledExchangeRate\": 4385.435790370462,\n        \"settledAmount\": \"string\",\n        \"settledCurrencyCode\": \"string\",\n        \"baseExchangeRate\": 3192.206777473534,\n        \"baseAmount\": \"string\",\n        \"baseCurrencyCode\": \"string\",\n        \"isDifferentCurrency\": true\n      }\n    },\n    {\n      \"id\": 3977,\n      \"date\": \"string\",\n      \"amount\": \"string\",\n      \"paymentInfo\": \"string\",\n      \"donorId\": 4556,\n      \"donorImage\": \"string\",\n      \"donorName\": \"string\",\n      \"donorEmail\": \"string\",\n      \"form\": \"string\",\n      \"projects\": [\n        {\n          \"projectId\": 5344,\n          \"name\": \"string\",\n          \"amount\": \"string\",\n          \"currencyExchange\": {\n            \"nativeAmount\": \"string\",\n            \"nativeCurrencyCode\": \"string\",\n            \"settledExchangeRate\": 7647.858751462164,\n            \"settledAmount\": \"string\",\n            \"settledCurrencyCode\": \"string\",\n            \"baseExchangeRate\": 5506.6921464050565,\n            \"baseAmount\": \"string\",\n            \"baseCurrencyCode\": \"string\",\n            \"isDifferentCurrency\": true\n          }\n        },\n        {\n          \"projectId\": 4096,\n          \"name\": \"string\",\n          \"amount\": \"string\",\n          \"currencyExchange\": {\n            \"nativeAmount\": \"string\",\n            \"nativeCurrencyCode\": \"string\",\n            \"settledExchangeRate\": 4074.195908331342,\n            \"settledAmount\": \"string\",\n            \"settledCurrencyCode\": \"string\",\n            \"baseExchangeRate\": 6499.4656060278985,\n            \"baseAmount\": \"string\",\n            \"baseCurrencyCode\": \"string\",\n            \"isDifferentCurrency\": false\n          }\n        }\n      ],\n      \"status\": 10,\n      \"statusText\": \"string\",\n      \"donorIsGDPRDeleted\": true,\n      \"isAnonymous\": true,\n      \"canRefund\": false,\n      \"transactionId\": \"string\",\n      \"isTribute\": false,\n      \"isFromTerminal\": true,\n      \"donorPaidCosts\": false,\n      \"metadata\": [\n        \"string\",\n        \"string\"\n      ],\n      \"segmentCode\": \"string\",\n      \"currencyExchange\": {\n        \"nativeAmount\": \"string\",\n        \"nativeCurrencyCode\": \"string\",\n        \"settledExchangeRate\": 750.9367847719606,\n        \"settledAmount\": \"string\",\n        \"settledCurrencyCode\": \"string\",\n        \"baseExchangeRate\": 18.346323145308485,\n        \"baseAmount\": \"string\",\n        \"baseCurrencyCode\": \"string\",\n        \"isDifferentCurrency\": true\n      }\n    }\n  ],\n  \"total\": 6287\n}"},{"id":"e1ebeb95-6464-4fa9-8d80-f78df6bcd837","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"filter\": \"string\",\n  \"skip\": 7689,\n  \"take\": 1304,\n  \"sortBy\": \"createdate\",\n  \"descending\": true,\n  \"queryType\": 3,\n  \"groups\": [\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 4,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 19,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    },\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    }\n  ],\n  \"selectedColumns\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Gift/query"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"5425b2f7-64a1-40db-937e-8dc80906afcc"},{"name":"Get custom field responses for a gift.","id":"c57d84c6-ef7f-4bfd-bb73-9ddecb519398","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Gift/:giftId/gift-fields?Filter=string&Skip=8361&Take=8361&SortBy=createddate&Descending=true","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Gift",":giftId","gift-fields"],"host":["https://prod-api.raisedonors.com"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":{"content":"<p>Field to sort by (case-insensitive). Valid options: createddate, createddatetimeutc, customfield, customfieldname, id, modifieddatetimeutc, name, response, type, value</p>\n","type":"text/plain"},"key":"SortBy","value":"createddate"},{"key":"Descending","value":"true"}],"variable":[{"id":"17106be9-aea3-4259-9f6c-d588ae8c3886","description":{"content":"<p>The ID of the gift.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"giftId"}]}},"response":[{"id":"1011b94e-231e-473e-a012-d5a2854a43e8","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Gift/:giftId/gift-fields?Filter=string&Skip=8361&Take=8361&SortBy=createddate&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Gift",":giftId","gift-fields"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: createddate, createddatetimeutc, customfield, customfieldname, id, modifieddatetimeutc, name, response, type, value","key":"SortBy","value":"createddate"},{"key":"Descending","value":"true"}],"variable":[{"key":"giftId","value":"3573","description":"The ID of the gift."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 4134,\n      \"customCollectionId\": 9564,\n      \"customCollectionName\": \"string\",\n      \"customFieldId\": 5809,\n      \"customFieldName\": \"string\",\n      \"value\": \"string\",\n      \"entityType\": 8,\n      \"entityTypeDisplayName\": \"string\",\n      \"responseType\": \"string\",\n      \"createdDate\": \"string\"\n    },\n    {\n      \"id\": 3881,\n      \"customCollectionId\": 4044,\n      \"customCollectionName\": \"string\",\n      \"customFieldId\": 3708,\n      \"customFieldName\": \"string\",\n      \"value\": \"string\",\n      \"entityType\": 12,\n      \"entityTypeDisplayName\": \"string\",\n      \"responseType\": \"string\",\n      \"createdDate\": \"string\"\n    }\n  ],\n  \"total\": 9108\n}"},{"id":"54cc19a5-729d-422e-9e1b-8a57e636abfb","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Gift/:giftId/gift-fields?Filter=string&Skip=8361&Take=8361&SortBy=createddate&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Gift",":giftId","gift-fields"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: createddate, createddatetimeutc, customfield, customfieldname, id, modifieddatetimeutc, name, response, type, value","key":"SortBy","value":"createddate"},{"key":"Descending","value":"true"}],"variable":[{"key":"giftId","value":"3573","description":"The ID of the gift."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"c57d84c6-ef7f-4bfd-bb73-9ddecb519398"},{"name":"Refunds a gift by its ID. This endpoint processes the refund through the payment provider\nand updates the gift status accordingly. It also sends a refund notification email to the donor.","id":"e515c7a1-e90e-4779-87af-ad00c5c0d1f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Gift/:id/refund","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Gift",":id","refund"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"7ff74729-5b2a-4753-a0eb-7342500ed087","description":{"content":"<p>The ID of the gift to refund.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"9a598f54-e801-4562-9feb-3abea7c62627","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Gift/:id/refund","host":["https://prod-api.raisedonors.com"],"path":["api","Gift",":id","refund"],"variable":[{"key":"id","value":"3573","description":"The ID of the gift to refund."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"0c8c9441-8186-4782-ac5b-cca26600e5b5","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Gift/:id/refund","host":["https://prod-api.raisedonors.com"],"path":["api","Gift",":id","refund"],"variable":[{"key":"id","value":"3573","description":"The ID of the gift to refund."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"e515c7a1-e90e-4779-87af-ad00c5c0d1f8"},{"name":"Update the notes for a gift.","id":"233f6a4e-d9ba-4ef7-ac88-7dc38c637e9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Gift/:giftId/notes?notes=string","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Gift",":giftId","notes"],"host":["https://prod-api.raisedonors.com"],"query":[{"description":{"content":"<p>The updated notes.</p>\n","type":"text/plain"},"key":"notes","value":"string"}],"variable":[{"id":"d870bddf-c2d5-4f46-9902-0ec42e666ee9","description":{"content":"<p>The id of the gift.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"giftId"}]}},"response":[{"id":"d0e9c7f4-e255-49d1-a5af-1c7922ef44b7","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Gift/:giftId/notes?notes=string","host":["https://prod-api.raisedonors.com"],"path":["api","Gift",":giftId","notes"],"query":[{"description":"The updated notes.","key":"notes","value":"string"}],"variable":[{"key":"giftId","value":"3573","description":"The id of the gift."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"string"},{"id":"7b4c5b57-17bf-4858-affb-70f94d022b0a","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Gift/:giftId/notes?notes=string","host":["https://prod-api.raisedonors.com"],"path":["api","Gift",":giftId","notes"],"query":[{"description":"The updated notes.","key":"notes","value":"string"}],"variable":[{"key":"giftId","value":"3573","description":"The id of the gift."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"233f6a4e-d9ba-4ef7-ac88-7dc38c637e9c"}],"id":"c067d1f2-10b8-4b63-9f17-da1da3f7571c","_postman_id":"c067d1f2-10b8-4b63-9f17-da1da3f7571c","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}}},{"name":"MotivationCode","item":[{"name":"Motivation Code Get Motivation Code List","id":"729faf60-82dc-48d0-a857-34960c12fe0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/MotivationCode/list?Filter=string&Skip=8361&Take=8361&SortBy=code&Descending=true","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","MotivationCode","list"],"host":["https://prod-api.raisedonors.com"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":{"content":"<p>Field to sort by (case-insensitive). Valid options: code, description, id, mediatype, name, pin, sortorder</p>\n","type":"text/plain"},"key":"SortBy","value":"code"},{"key":"Descending","value":"true"}],"variable":[]}},"response":[{"id":"07fe3cb2-a860-4dc5-9041-f99aecf9dc76","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/MotivationCode/list?Filter=string&Skip=8361&Take=8361&SortBy=code&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","MotivationCode","list"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: code, description, id, mediatype, name, pin, sortorder","key":"SortBy","value":"code"},{"key":"Descending","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 1641,\n      \"name\": \"string\",\n      \"code\": \"string\",\n      \"mediaType\": \"string\",\n      \"description\": \"string\",\n      \"sortOrder\": 6339,\n      \"pin\": false,\n      \"groups\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    {\n      \"id\": 9061,\n      \"name\": \"string\",\n      \"code\": \"string\",\n      \"mediaType\": \"string\",\n      \"description\": \"string\",\n      \"sortOrder\": 6627,\n      \"pin\": false,\n      \"groups\": [\n        \"string\",\n        \"string\"\n      ]\n    }\n  ],\n  \"total\": 9718\n}"},{"id":"4eb27852-683b-4175-a504-6e21d3c0fc96","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/MotivationCode/list?Filter=string&Skip=8361&Take=8361&SortBy=code&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","MotivationCode","list"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: code, description, id, mediatype, name, pin, sortorder","key":"SortBy","value":"code"},{"key":"Descending","value":"true"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"729faf60-82dc-48d0-a857-34960c12fe0c"},{"name":"Motivation Code Get Motivation Code By Id","id":"32aa1872-5376-4f37-855e-297a226e70f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/MotivationCode/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","MotivationCode",":id"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"e843fb71-498f-46c2-bdab-2d93a69cd8cf","type":"any","value":"3573","key":"id"}]}},"response":[{"id":"a3ac9373-bb98-4f75-b2fb-758ba8933fcb","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/MotivationCode/:id","host":["https://prod-api.raisedonors.com"],"path":["api","MotivationCode",":id"],"variable":[{"key":"id","value":"3573"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 8904,\n  \"name\": \"string\",\n  \"code\": \"string\",\n  \"mediaType\": 2,\n  \"siteUrl\": \"string\",\n  \"description\": \"string\",\n  \"zipCodes\": \"string\",\n  \"price\": 3496.302041789683,\n  \"cost\": 4079.1240257289883,\n  \"sortOrder\": 2977,\n  \"pin\": false,\n  \"groups\": [\n    {\n      \"id\": 7334,\n      \"name\": \"string\"\n    },\n    {\n      \"id\": 1104,\n      \"name\": \"string\"\n    }\n  ]\n}"},{"id":"126b008c-ec39-499e-bd58-2e3ff6a4a12a","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/MotivationCode/:id","host":["https://prod-api.raisedonors.com"],"path":["api","MotivationCode",":id"],"variable":[{"key":"id","value":"3573"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"32aa1872-5376-4f37-855e-297a226e70f0"},{"name":"Motivation Code Update Motivation Code","id":"9d5170c8-e66f-4fc6-abe8-28f7e266e5de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"code\": \"string\",\n  \"name\": \"string\",\n  \"mediaType\": 0,\n  \"siteUrl\": \"string\",\n  \"description\": \"string\",\n  \"zipCodes\": \"string\",\n  \"price\": 4202.08378133964,\n  \"cost\": 7157.930328909952,\n  \"sortOrder\": 1578,\n  \"pin\": false,\n  \"groups\": [\n    {\n      \"id\": 6760\n    },\n    {\n      \"id\": 1832\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/MotivationCode/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","MotivationCode",":id"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"0db9c12f-a558-4284-9fc0-b6959cc46470","type":"any","value":"3573","key":"id"}]}},"response":[{"id":"b3c694e6-5c44-4ec8-a64c-1ac968465c48","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"code\": \"string\",\n  \"name\": \"string\",\n  \"mediaType\": 0,\n  \"siteUrl\": \"string\",\n  \"description\": \"string\",\n  \"zipCodes\": \"string\",\n  \"price\": 4202.08378133964,\n  \"cost\": 7157.930328909952,\n  \"sortOrder\": 1578,\n  \"pin\": false,\n  \"groups\": [\n    {\n      \"id\": 6760\n    },\n    {\n      \"id\": 1832\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/MotivationCode/:id","host":["https://prod-api.raisedonors.com"],"path":["api","MotivationCode",":id"],"variable":[{"key":"id","value":"3573"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 8904,\n  \"name\": \"string\",\n  \"code\": \"string\",\n  \"mediaType\": 2,\n  \"siteUrl\": \"string\",\n  \"description\": \"string\",\n  \"zipCodes\": \"string\",\n  \"price\": 3496.302041789683,\n  \"cost\": 4079.1240257289883,\n  \"sortOrder\": 2977,\n  \"pin\": false,\n  \"groups\": [\n    {\n      \"id\": 7334,\n      \"name\": \"string\"\n    },\n    {\n      \"id\": 1104,\n      \"name\": \"string\"\n    }\n  ]\n}"},{"id":"448ec93a-f314-4d50-b2fd-7db4e89ecc47","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"code\": \"string\",\n  \"name\": \"string\",\n  \"mediaType\": 0,\n  \"siteUrl\": \"string\",\n  \"description\": \"string\",\n  \"zipCodes\": \"string\",\n  \"price\": 4202.08378133964,\n  \"cost\": 7157.930328909952,\n  \"sortOrder\": 1578,\n  \"pin\": false,\n  \"groups\": [\n    {\n      \"id\": 6760\n    },\n    {\n      \"id\": 1832\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/MotivationCode/:id","host":["https://prod-api.raisedonors.com"],"path":["api","MotivationCode",":id"],"variable":[{"key":"id","value":"3573"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"9d5170c8-e66f-4fc6-abe8-28f7e266e5de"},{"name":"Motivation Code Create Motivation Code","id":"c8946c97-a9b1-48d2-9638-9bf9cd0c7d17","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"code\": \"string\",\n  \"name\": \"string\",\n  \"mediaType\": 0,\n  \"siteUrl\": \"string\",\n  \"description\": \"string\",\n  \"zipCodes\": \"string\",\n  \"price\": 4202.08378133964,\n  \"cost\": 7157.930328909952,\n  \"sortOrder\": 1578,\n  \"pin\": false,\n  \"groups\": [\n    {\n      \"id\": 6760\n    },\n    {\n      \"id\": 1832\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/MotivationCode","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","MotivationCode"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[]}},"response":[{"id":"a9d42fe4-685f-413d-ad4c-daf266571b80","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"code\": \"string\",\n  \"name\": \"string\",\n  \"mediaType\": 0,\n  \"siteUrl\": \"string\",\n  \"description\": \"string\",\n  \"zipCodes\": \"string\",\n  \"price\": 4202.08378133964,\n  \"cost\": 7157.930328909952,\n  \"sortOrder\": 1578,\n  \"pin\": false,\n  \"groups\": [\n    {\n      \"id\": 6760\n    },\n    {\n      \"id\": 1832\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/MotivationCode"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 8904,\n  \"name\": \"string\",\n  \"code\": \"string\",\n  \"mediaType\": 2,\n  \"siteUrl\": \"string\",\n  \"description\": \"string\",\n  \"zipCodes\": \"string\",\n  \"price\": 3496.302041789683,\n  \"cost\": 4079.1240257289883,\n  \"sortOrder\": 2977,\n  \"pin\": false,\n  \"groups\": [\n    {\n      \"id\": 7334,\n      \"name\": \"string\"\n    },\n    {\n      \"id\": 1104,\n      \"name\": \"string\"\n    }\n  ]\n}"},{"id":"112f768a-d47f-4420-8dde-72682a8a22b3","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"code\": \"string\",\n  \"name\": \"string\",\n  \"mediaType\": 0,\n  \"siteUrl\": \"string\",\n  \"description\": \"string\",\n  \"zipCodes\": \"string\",\n  \"price\": 4202.08378133964,\n  \"cost\": 7157.930328909952,\n  \"sortOrder\": 1578,\n  \"pin\": false,\n  \"groups\": [\n    {\n      \"id\": 6760\n    },\n    {\n      \"id\": 1832\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/MotivationCode"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"c8946c97-a9b1-48d2-9638-9bf9cd0c7d17"},{"name":"Motivation Code Get Motivation Code Group List","id":"1486acd6-0cb2-457b-9177-f384b0f9aa59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/MotivationCode/group/list?Filter=string&Skip=8361&Take=8361&SortBy=code&Descending=true","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","MotivationCode","group","list"],"host":["https://prod-api.raisedonors.com"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":{"content":"<p>Field to sort by (case-insensitive). Valid options: code, description, id, mediatype, name, pin, sortorder</p>\n","type":"text/plain"},"key":"SortBy","value":"code"},{"key":"Descending","value":"true"}],"variable":[]}},"response":[{"id":"721c4c13-d78b-4ce3-8c3a-8bb954f38c58","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/MotivationCode/group/list?Filter=string&Skip=8361&Take=8361&SortBy=code&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","MotivationCode","group","list"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: code, description, id, mediatype, name, pin, sortorder","key":"SortBy","value":"code"},{"key":"Descending","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 8430,\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"codes\": 8672\n    },\n    {\n      \"id\": 7780,\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"codes\": 5370\n    }\n  ],\n  \"total\": 377\n}"},{"id":"cb0ac851-de71-46b6-9b0f-31c52547e0ad","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/MotivationCode/group/list?Filter=string&Skip=8361&Take=8361&SortBy=code&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","MotivationCode","group","list"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: code, description, id, mediatype, name, pin, sortorder","key":"SortBy","value":"code"},{"key":"Descending","value":"true"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"1486acd6-0cb2-457b-9177-f384b0f9aa59"},{"name":"Motivation Code Get Motivation Code Group By Id","id":"791dd872-6bd4-4063-a188-b326321cee69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/MotivationCode/group/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","MotivationCode","group",":id"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"373886a6-3008-4d39-8d2a-b69c8ff815d9","type":"any","value":"3573","key":"id"}]}},"response":[{"id":"9dee419a-796c-4ea5-abb5-ca8fe451175a","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/MotivationCode/group/:id","host":["https://prod-api.raisedonors.com"],"path":["api","MotivationCode","group",":id"],"variable":[{"key":"id","value":"3573"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"codes\": [\n    {\n      \"id\": 6124,\n      \"name\": \"string\"\n    },\n    {\n      \"id\": 6324,\n      \"name\": \"string\"\n    }\n  ]\n}"},{"id":"20db2e7a-6f34-4631-8402-6136c24ca81d","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/MotivationCode/group/:id","host":["https://prod-api.raisedonors.com"],"path":["api","MotivationCode","group",":id"],"variable":[{"key":"id","value":"3573"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"791dd872-6bd4-4063-a188-b326321cee69"},{"name":"Motivation Code Update Motivation Code Group","id":"8e057a93-edc7-48e4-b64e-efce58554e05","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"id\": 3109,\n  \"description\": \"string\",\n  \"codes\": [\n    {\n      \"id\": 1501\n    },\n    {\n      \"id\": 788\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/MotivationCode/group/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","MotivationCode","group",":id"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"f6974fb2-c29d-46d1-a0c3-5b0d377a392a","type":"any","value":"3573","key":"id"}]}},"response":[{"id":"9242240b-2a18-4c6b-bf95-7a9412cf557a","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"id\": 3109,\n  \"description\": \"string\",\n  \"codes\": [\n    {\n      \"id\": 1501\n    },\n    {\n      \"id\": 788\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/MotivationCode/group/:id","host":["https://prod-api.raisedonors.com"],"path":["api","MotivationCode","group",":id"],"variable":[{"key":"id","value":"3573"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"codes\": [\n    {\n      \"id\": 6124,\n      \"name\": \"string\"\n    },\n    {\n      \"id\": 6324,\n      \"name\": \"string\"\n    }\n  ]\n}"},{"id":"b8b33211-1ecc-4172-8779-5f1ba92fb62f","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"id\": 3109,\n  \"description\": \"string\",\n  \"codes\": [\n    {\n      \"id\": 1501\n    },\n    {\n      \"id\": 788\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/MotivationCode/group/:id","host":["https://prod-api.raisedonors.com"],"path":["api","MotivationCode","group",":id"],"variable":[{"key":"id","value":"3573"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"8e057a93-edc7-48e4-b64e-efce58554e05"},{"name":"Motivation Code Create Motivation Code Group","id":"38f2a632-6eb8-43d4-bc96-d1e113b474fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"id\": 3109,\n  \"description\": \"string\",\n  \"codes\": [\n    {\n      \"id\": 1501\n    },\n    {\n      \"id\": 788\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/MotivationCode/group","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","MotivationCode","group"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[]}},"response":[{"id":"77a505be-f467-4042-a8fa-4f8e2b348431","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"id\": 3109,\n  \"description\": \"string\",\n  \"codes\": [\n    {\n      \"id\": 1501\n    },\n    {\n      \"id\": 788\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/MotivationCode/group"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"codes\": [\n    {\n      \"id\": 6124,\n      \"name\": \"string\"\n    },\n    {\n      \"id\": 6324,\n      \"name\": \"string\"\n    }\n  ]\n}"},{"id":"91eaf30b-4656-46df-919d-6876de8cccca","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"id\": 3109,\n  \"description\": \"string\",\n  \"codes\": [\n    {\n      \"id\": 1501\n    },\n    {\n      \"id\": 788\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/MotivationCode/group"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"38f2a632-6eb8-43d4-bc96-d1e113b474fe"}],"id":"d5b6b1b5-c7fb-4fc8-b8fd-cb7fe8a4ba11","_postman_id":"d5b6b1b5-c7fb-4fc8-b8fd-cb7fe8a4ba11","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}}},{"name":"Premium","item":[{"name":"Get a paginated list of premiums.","id":"aba6205d-2621-4e07-a40b-2879fb8ff457","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Premium/list?Filter=string&Skip=8361&Take=8361&SortBy=code&Descending=true","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Premium","list"],"host":["https://prod-api.raisedonors.com"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":{"content":"<p>Field to sort by (case-insensitive). Valid options: code, fmv, id, name, price, status</p>\n","type":"text/plain"},"key":"SortBy","value":"code"},{"key":"Descending","value":"true"}],"variable":[]}},"response":[{"id":"1c737048-f0a8-49cb-85ec-22f8a4671142","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Premium/list?Filter=string&Skip=8361&Take=8361&SortBy=code&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Premium","list"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: code, fmv, id, name, price, status","key":"SortBy","value":"code"},{"key":"Descending","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 6076,\n      \"name\": \"string\",\n      \"code\": \"string\",\n      \"status\": \"string\",\n      \"price\": \"string\",\n      \"fairMarketValue\": \"string\",\n      \"inventory\": 7678\n    },\n    {\n      \"id\": 7786,\n      \"name\": \"string\",\n      \"code\": \"string\",\n      \"status\": \"string\",\n      \"price\": \"string\",\n      \"fairMarketValue\": \"string\",\n      \"inventory\": 4975\n    }\n  ],\n  \"total\": 6211\n}"},{"id":"3a53335b-0958-4ac2-9fd5-39a1423f46c1","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Premium/list?Filter=string&Skip=8361&Take=8361&SortBy=code&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Premium","list"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: code, fmv, id, name, price, status","key":"SortBy","value":"code"},{"key":"Descending","value":"true"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"aba6205d-2621-4e07-a40b-2879fb8ff457"},{"name":"Get a premium by its ID.","id":"126d982c-500a-408e-b4ab-08912a0d4d85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Premium/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Premium",":id"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"ec94f731-e2a7-4e4e-8c5e-b60b3bdb80eb","description":{"content":"<p>The ID of the premium.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"bf41e819-6934-4e60-a64a-0db752661115","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Premium/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Premium",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the premium."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 378,\n  \"currency\": \"string\",\n  \"name\": \"string\",\n  \"nameShort\": \"string\",\n  \"code\": \"string\",\n  \"description\": \"string\",\n  \"isActive\": true,\n  \"price\": 3397.9321520295057,\n  \"formattedPrice\": \"string\",\n  \"fairMarketValue\": 6116.104770386391,\n  \"formattedFairMarketValue\": \"string\",\n  \"inventory\": 460,\n  \"keepActiveWhenHasNoInventory\": false,\n  \"recurringPremiumId\": 6630,\n  \"recurringPremiumName\": \"string\",\n  \"image\": \"string\",\n  \"externalIdentifier\": \"string\",\n  \"otherMinimumAmounts\": [\n    {\n      \"currency\": \"string\",\n      \"value\": 8554.235073235672\n    },\n    {\n      \"currency\": \"string\",\n      \"value\": 6971.4623450006475\n    }\n  ]\n}"},{"id":"398e20a5-b80d-4b8a-9248-4087604516cd","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Premium/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Premium",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the premium."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"126d982c-500a-408e-b4ab-08912a0d4d85"},{"name":"Update an existing premium.","id":"429a5d7c-5d74-4120-a8b1-e1698b7bb7ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"code\": \"string\",\n  \"name\": \"string\",\n  \"nameShort\": \"string\",\n  \"description\": \"string\",\n  \"price\": 684959563699.263,\n  \"fairMarketValue\": 280259644951.3812,\n  \"digitalUrl\": \"string\",\n  \"isActive\": false,\n  \"isFree\": true,\n  \"inventory\": 5576,\n  \"keepActiveWhenHasNoInventory\": true,\n  \"recurringPremiumId\": 8203,\n  \"projectId\": 9245,\n  \"image\": \"string\",\n  \"externalIdentifier\": \"string\",\n  \"otherMinimumAmounts\": [\n    {\n      \"currency\": \"string\",\n      \"value\": 803.5275770298545\n    },\n    {\n      \"currency\": \"string\",\n      \"value\": 8220.942924347954\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Premium/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Premium",":id"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"dd901523-6f52-4fd8-bf32-6029594ca201","description":{"content":"<p>The ID of the premium to update.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"0b0c6b6f-3551-493e-b80b-d73984dcd2ed","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"code\": \"string\",\n  \"name\": \"string\",\n  \"nameShort\": \"string\",\n  \"description\": \"string\",\n  \"price\": 684959563699.263,\n  \"fairMarketValue\": 280259644951.3812,\n  \"digitalUrl\": \"string\",\n  \"isActive\": false,\n  \"isFree\": true,\n  \"inventory\": 5576,\n  \"keepActiveWhenHasNoInventory\": true,\n  \"recurringPremiumId\": 8203,\n  \"projectId\": 9245,\n  \"image\": \"string\",\n  \"externalIdentifier\": \"string\",\n  \"otherMinimumAmounts\": [\n    {\n      \"currency\": \"string\",\n      \"value\": 803.5275770298545\n    },\n    {\n      \"currency\": \"string\",\n      \"value\": 8220.942924347954\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Premium/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Premium",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the premium to update."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 378,\n  \"currency\": \"string\",\n  \"name\": \"string\",\n  \"nameShort\": \"string\",\n  \"code\": \"string\",\n  \"description\": \"string\",\n  \"isActive\": true,\n  \"price\": 3397.9321520295057,\n  \"formattedPrice\": \"string\",\n  \"fairMarketValue\": 6116.104770386391,\n  \"formattedFairMarketValue\": \"string\",\n  \"inventory\": 460,\n  \"keepActiveWhenHasNoInventory\": false,\n  \"recurringPremiumId\": 6630,\n  \"recurringPremiumName\": \"string\",\n  \"image\": \"string\",\n  \"externalIdentifier\": \"string\",\n  \"otherMinimumAmounts\": [\n    {\n      \"currency\": \"string\",\n      \"value\": 8554.235073235672\n    },\n    {\n      \"currency\": \"string\",\n      \"value\": 6971.4623450006475\n    }\n  ]\n}"},{"id":"5a8a6d08-d3dd-4d2b-8686-fc95a4176d7b","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"code\": \"string\",\n  \"name\": \"string\",\n  \"nameShort\": \"string\",\n  \"description\": \"string\",\n  \"price\": 684959563699.263,\n  \"fairMarketValue\": 280259644951.3812,\n  \"digitalUrl\": \"string\",\n  \"isActive\": false,\n  \"isFree\": true,\n  \"inventory\": 5576,\n  \"keepActiveWhenHasNoInventory\": true,\n  \"recurringPremiumId\": 8203,\n  \"projectId\": 9245,\n  \"image\": \"string\",\n  \"externalIdentifier\": \"string\",\n  \"otherMinimumAmounts\": [\n    {\n      \"currency\": \"string\",\n      \"value\": 803.5275770298545\n    },\n    {\n      \"currency\": \"string\",\n      \"value\": 8220.942924347954\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Premium/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Premium",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the premium to update."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"429a5d7c-5d74-4120-a8b1-e1698b7bb7ad"},{"name":"Delete a premium by its ID.","id":"7b1bf870-d751-4c39-b7ae-a8d2423da861","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Premium/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Premium",":id"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"c5b6d512-d920-4b98-ad97-80e518134d79","description":{"content":"<p>The ID of the premium to delete.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"27d5b7ef-a638-4f80-9e6e-b31834f2ed46","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Premium/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Premium",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the premium to delete."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"fa6107c9-d985-4067-86f3-8215d41b407f","name":"Bad Request","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Premium/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Premium",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the premium to delete."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"7b1bf870-d751-4c39-b7ae-a8d2423da861"},{"name":"Create a new premium.","id":"2697ab4e-2088-467b-8325-ae8942d2ad4c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"code\": \"string\",\n  \"name\": \"string\",\n  \"nameShort\": \"string\",\n  \"description\": \"string\",\n  \"price\": 684959563699.263,\n  \"fairMarketValue\": 280259644951.3812,\n  \"digitalUrl\": \"string\",\n  \"isActive\": false,\n  \"isFree\": true,\n  \"inventory\": 5576,\n  \"keepActiveWhenHasNoInventory\": true,\n  \"recurringPremiumId\": 8203,\n  \"projectId\": 9245,\n  \"image\": \"string\",\n  \"externalIdentifier\": \"string\",\n  \"otherMinimumAmounts\": [\n    {\n      \"currency\": \"string\",\n      \"value\": 803.5275770298545\n    },\n    {\n      \"currency\": \"string\",\n      \"value\": 8220.942924347954\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Premium","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Premium"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[]}},"response":[{"id":"1ef211c5-2780-41eb-9b3a-928c55a39091","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"code\": \"string\",\n  \"name\": \"string\",\n  \"nameShort\": \"string\",\n  \"description\": \"string\",\n  \"price\": 684959563699.263,\n  \"fairMarketValue\": 280259644951.3812,\n  \"digitalUrl\": \"string\",\n  \"isActive\": false,\n  \"isFree\": true,\n  \"inventory\": 5576,\n  \"keepActiveWhenHasNoInventory\": true,\n  \"recurringPremiumId\": 8203,\n  \"projectId\": 9245,\n  \"image\": \"string\",\n  \"externalIdentifier\": \"string\",\n  \"otherMinimumAmounts\": [\n    {\n      \"currency\": \"string\",\n      \"value\": 803.5275770298545\n    },\n    {\n      \"currency\": \"string\",\n      \"value\": 8220.942924347954\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Premium"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 378,\n  \"currency\": \"string\",\n  \"name\": \"string\",\n  \"nameShort\": \"string\",\n  \"code\": \"string\",\n  \"description\": \"string\",\n  \"isActive\": true,\n  \"price\": 3397.9321520295057,\n  \"formattedPrice\": \"string\",\n  \"fairMarketValue\": 6116.104770386391,\n  \"formattedFairMarketValue\": \"string\",\n  \"inventory\": 460,\n  \"keepActiveWhenHasNoInventory\": false,\n  \"recurringPremiumId\": 6630,\n  \"recurringPremiumName\": \"string\",\n  \"image\": \"string\",\n  \"externalIdentifier\": \"string\",\n  \"otherMinimumAmounts\": [\n    {\n      \"currency\": \"string\",\n      \"value\": 8554.235073235672\n    },\n    {\n      \"currency\": \"string\",\n      \"value\": 6971.4623450006475\n    }\n  ]\n}"},{"id":"675d2b7a-9367-4dc6-af03-da2ee563b93a","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"code\": \"string\",\n  \"name\": \"string\",\n  \"nameShort\": \"string\",\n  \"description\": \"string\",\n  \"price\": 684959563699.263,\n  \"fairMarketValue\": 280259644951.3812,\n  \"digitalUrl\": \"string\",\n  \"isActive\": false,\n  \"isFree\": true,\n  \"inventory\": 5576,\n  \"keepActiveWhenHasNoInventory\": true,\n  \"recurringPremiumId\": 8203,\n  \"projectId\": 9245,\n  \"image\": \"string\",\n  \"externalIdentifier\": \"string\",\n  \"otherMinimumAmounts\": [\n    {\n      \"currency\": \"string\",\n      \"value\": 803.5275770298545\n    },\n    {\n      \"currency\": \"string\",\n      \"value\": 8220.942924347954\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Premium"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"2697ab4e-2088-467b-8325-ae8942d2ad4c"},{"name":"Get all the dependency counts that will be affected by deactivating a premium.","id":"805fe67e-9ecd-49a3-9a1e-73a1a74ae4ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Premium/:id/deactivate","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Premium",":id","deactivate"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"dfd42d70-433b-412c-b44f-05d43a42c17f","description":{"content":"<p>The ID of the premium to deactivate.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"9575af6d-36ac-4389-b7ad-23cd5136664f","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Premium/:id/deactivate","host":["https://prod-api.raisedonors.com"],"path":["api","Premium",":id","deactivate"],"variable":[{"key":"id","value":"3573","description":"The ID of the premium to deactivate."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"totalRecurringGift\": 1502,\n  \"totalLegacyCampaign\": 5326,\n  \"totalRecurringPremium\": 7227,\n  \"totalPage\": 8653\n}"},{"id":"ff21bc2b-2829-4ce3-b63c-3c7586c56ed2","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Premium/:id/deactivate","host":["https://prod-api.raisedonors.com"],"path":["api","Premium",":id","deactivate"],"variable":[{"key":"id","value":"3573","description":"The ID of the premium to deactivate."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"805fe67e-9ecd-49a3-9a1e-73a1a74ae4ac"},{"name":"Deactivate a premium by its ID with a request model.","id":"6db7c113-fa69-4c8b-92b2-b7453bb574c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"replace\": false,\n  \"recurringGiftReplacementPremiumId\": 3937,\n  \"legacyPagesReplacementPremiumId\": 7145,\n  \"recurringPremiumReplacementPremiumId\": 1918,\n  \"pagePremiumId\": 7208\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Premium/:id/deactivate","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Premium",":id","deactivate"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"b9c89296-aba8-4b4a-925e-a33fdbea9a77","description":{"content":"<p>The ID of the premium to deactivate.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"debffe8d-abeb-46ad-b92c-e7e7b3cda58f","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"replace\": false,\n  \"recurringGiftReplacementPremiumId\": 3937,\n  \"legacyPagesReplacementPremiumId\": 7145,\n  \"recurringPremiumReplacementPremiumId\": 1918,\n  \"pagePremiumId\": 7208\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Premium/:id/deactivate","host":["https://prod-api.raisedonors.com"],"path":["api","Premium",":id","deactivate"],"variable":[{"key":"id","value":"3573","description":"The ID of the premium to deactivate."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"76c7c49b-b43d-4efb-b1bd-c211815fe3ee","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"replace\": false,\n  \"recurringGiftReplacementPremiumId\": 3937,\n  \"legacyPagesReplacementPremiumId\": 7145,\n  \"recurringPremiumReplacementPremiumId\": 1918,\n  \"pagePremiumId\": 7208\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Premium/:id/deactivate","host":["https://prod-api.raisedonors.com"],"path":["api","Premium",":id","deactivate"],"variable":[{"key":"id","value":"3573","description":"The ID of the premium to deactivate."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"6db7c113-fa69-4c8b-92b2-b7453bb574c2"}],"id":"5747ea6f-c5c5-4fcf-ab20-9106a7421a8e","_postman_id":"5747ea6f-c5c5-4fcf-ab20-9106a7421a8e","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}}},{"name":"Project","item":[{"name":"Get a paginated list of projects.","id":"4ced52f3-6e1b-4856-a2fb-615e299f82d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Project/list?IsActive=true&IsAvailableOnline=true&Filter=string&Skip=8361&Take=8361&SortBy=code&Descending=true","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Project","list"],"host":["https://prod-api.raisedonors.com"],"query":[{"description":{"content":"<p>Indicates if the project is active.</p>\n","type":"text/plain"},"key":"IsActive","value":"true"},{"description":{"content":"<p>Indicates if the project is available online.</p>\n","type":"text/plain"},"key":"IsAvailableOnline","value":"true"},{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":{"content":"<p>Field to sort by (case-insensitive). Valid options: code, donoramount, giftamount, id, isactive, name, raisedamount, status</p>\n","type":"text/plain"},"key":"SortBy","value":"code"},{"key":"Descending","value":"true"}],"variable":[]}},"response":[{"id":"4d5393e4-01ee-4230-9da4-cce1ff6cb563","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Project/list?IsActive=true&IsAvailableOnline=true&Filter=string&Skip=8361&Take=8361&SortBy=code&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Project","list"],"query":[{"description":"Indicates if the project is active.","key":"IsActive","value":"true"},{"description":"Indicates if the project is available online.","key":"IsAvailableOnline","value":"true"},{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: code, donoramount, giftamount, id, isactive, name, raisedamount, status","key":"SortBy","value":"code"},{"key":"Descending","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"code\": \"string\",\n      \"donorAmount\": 9331,\n      \"giftAmount\": 7161,\n      \"id\": 8900,\n      \"isActive\": false,\n      \"name\": \"string\",\n      \"raisedAmount\": \"string\",\n      \"metadata\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    {\n      \"code\": \"string\",\n      \"donorAmount\": 6312,\n      \"giftAmount\": 9250,\n      \"id\": 7304,\n      \"isActive\": false,\n      \"name\": \"string\",\n      \"raisedAmount\": \"string\",\n      \"metadata\": [\n        \"string\",\n        \"string\"\n      ]\n    }\n  ],\n  \"total\": 6401\n}"},{"id":"abc0a63a-c057-413c-a07d-8407c5794b4a","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Project/list?IsActive=true&IsAvailableOnline=true&Filter=string&Skip=8361&Take=8361&SortBy=code&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Project","list"],"query":[{"description":"Indicates if the project is active.","key":"IsActive","value":"true"},{"description":"Indicates if the project is available online.","key":"IsAvailableOnline","value":"true"},{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: code, donoramount, giftamount, id, isactive, name, raisedamount, status","key":"SortBy","value":"code"},{"key":"Descending","value":"true"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"4ced52f3-6e1b-4856-a2fb-615e299f82d2"},{"name":"Get a project by ID.","id":"c71a18e9-6dc5-459f-8fec-776147c4e069","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Project/:projectId","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Project",":projectId"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"bfadfa3e-3573-42e2-965f-aa8b41290a95","description":{"content":"<p>The ID of the project.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"projectId"}]}},"response":[{"id":"5231512d-487e-41a4-ac89-6f42d37f95e4","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Project/:projectId","host":["https://prod-api.raisedonors.com"],"path":["api","Project",":projectId"],"variable":[{"key":"projectId","value":"3573","description":"The ID of the project."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6043,\n  \"code\": \"string\",\n  \"isActive\": true,\n  \"isAvailableOnline\": true,\n  \"isPublic\": true,\n  \"isDeleted\": true,\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"sortOrder\": 4381,\n  \"emailAddresses\": \"string\",\n  \"metadataFields\": [\n    {\n      \"name\": \"string\",\n      \"value\": \"string\"\n    },\n    {\n      \"name\": \"string\",\n      \"value\": \"string\"\n    }\n  ],\n  \"image\": \"string\",\n  \"isPinned\": false,\n  \"donorAmount\": 9264,\n  \"giftAmount\": 5647,\n  \"createdDateTime\": \"string\",\n  \"modifiedDateTime\": \"string\",\n  \"raisedAmount\": \"string\",\n  \"averageGiftAmount\": \"string\",\n  \"firstGiftDate\": \"string\",\n  \"lastGiftDate\": \"string\",\n  \"isSystem\": false,\n  \"percentageRecurringGift\": 5833.424000878247,\n  \"externalIdentifier\": \"string\",\n  \"impactData\": \"string\"\n}"},{"id":"2a0cb2e9-6c0b-44b4-97f3-5157e065603d","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Project/:projectId","host":["https://prod-api.raisedonors.com"],"path":["api","Project",":projectId"],"variable":[{"key":"projectId","value":"3573","description":"The ID of the project."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"c71a18e9-6dc5-459f-8fec-776147c4e069"},{"name":"Create a new project.","id":"c5c128e7-d6b0-4be0-9f6a-80e9c363b848","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"code\": \"string\",\n  \"name\": \"string\",\n  \"isActive\": false,\n  \"isAvailableOnline\": true,\n  \"isPublic\": true,\n  \"description\": \"string\",\n  \"sortOrder\": 1884,\n  \"emailAddresses\": \"string\",\n  \"image\": \"string\",\n  \"isPinned\": false,\n  \"externalIdentifier\": \"string\",\n  \"impactData\": \"string\",\n  \"metadataFields\": [\n    {\n      \"name\": \"string\",\n      \"value\": \"string\"\n    },\n    {\n      \"name\": \"string\",\n      \"value\": \"string\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Project","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Project"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[]}},"response":[{"id":"95a7e1b1-8d04-4326-8ad7-66a1380991c5","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"code\": \"string\",\n  \"name\": \"string\",\n  \"isActive\": false,\n  \"isAvailableOnline\": true,\n  \"isPublic\": true,\n  \"description\": \"string\",\n  \"sortOrder\": 1884,\n  \"emailAddresses\": \"string\",\n  \"image\": \"string\",\n  \"isPinned\": false,\n  \"externalIdentifier\": \"string\",\n  \"impactData\": \"string\",\n  \"metadataFields\": [\n    {\n      \"name\": \"string\",\n      \"value\": \"string\"\n    },\n    {\n      \"name\": \"string\",\n      \"value\": \"string\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Project"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6043,\n  \"code\": \"string\",\n  \"isActive\": true,\n  \"isAvailableOnline\": true,\n  \"isPublic\": true,\n  \"isDeleted\": true,\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"sortOrder\": 4381,\n  \"emailAddresses\": \"string\",\n  \"metadataFields\": [\n    {\n      \"name\": \"string\",\n      \"value\": \"string\"\n    },\n    {\n      \"name\": \"string\",\n      \"value\": \"string\"\n    }\n  ],\n  \"image\": \"string\",\n  \"isPinned\": false,\n  \"donorAmount\": 9264,\n  \"giftAmount\": 5647,\n  \"createdDateTime\": \"string\",\n  \"modifiedDateTime\": \"string\",\n  \"raisedAmount\": \"string\",\n  \"averageGiftAmount\": \"string\",\n  \"firstGiftDate\": \"string\",\n  \"lastGiftDate\": \"string\",\n  \"isSystem\": false,\n  \"percentageRecurringGift\": 5833.424000878247,\n  \"externalIdentifier\": \"string\",\n  \"impactData\": \"string\"\n}"},{"id":"ad59e785-2482-4fe6-9a4a-c0ffce4704e4","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"code\": \"string\",\n  \"name\": \"string\",\n  \"isActive\": false,\n  \"isAvailableOnline\": true,\n  \"isPublic\": true,\n  \"description\": \"string\",\n  \"sortOrder\": 1884,\n  \"emailAddresses\": \"string\",\n  \"image\": \"string\",\n  \"isPinned\": false,\n  \"externalIdentifier\": \"string\",\n  \"impactData\": \"string\",\n  \"metadataFields\": [\n    {\n      \"name\": \"string\",\n      \"value\": \"string\"\n    },\n    {\n      \"name\": \"string\",\n      \"value\": \"string\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Project"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"c5c128e7-d6b0-4be0-9f6a-80e9c363b848"},{"name":"Update an existing project.","id":"e5a68ac0-384e-4e5c-9506-d07172c5975a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"code\": \"string\",\n  \"name\": \"string\",\n  \"isActive\": false,\n  \"isAvailableOnline\": true,\n  \"isPublic\": true,\n  \"description\": \"string\",\n  \"sortOrder\": 1884,\n  \"emailAddresses\": \"string\",\n  \"image\": \"string\",\n  \"isPinned\": false,\n  \"externalIdentifier\": \"string\",\n  \"impactData\": \"string\",\n  \"metadataFields\": [\n    {\n      \"name\": \"string\",\n      \"value\": \"string\"\n    },\n    {\n      \"name\": \"string\",\n      \"value\": \"string\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Project/:projectId/update","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Project",":projectId","update"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"bdfbe704-14f1-42bd-b932-fffc6ea1d876","description":{"content":"<p>The ID of the project to update.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"projectId"}]}},"response":[{"id":"15dab3b2-4b3c-4fd1-8347-bc4c0ccc4bd2","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"code\": \"string\",\n  \"name\": \"string\",\n  \"isActive\": false,\n  \"isAvailableOnline\": true,\n  \"isPublic\": true,\n  \"description\": \"string\",\n  \"sortOrder\": 1884,\n  \"emailAddresses\": \"string\",\n  \"image\": \"string\",\n  \"isPinned\": false,\n  \"externalIdentifier\": \"string\",\n  \"impactData\": \"string\",\n  \"metadataFields\": [\n    {\n      \"name\": \"string\",\n      \"value\": \"string\"\n    },\n    {\n      \"name\": \"string\",\n      \"value\": \"string\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Project/:projectId/update","host":["https://prod-api.raisedonors.com"],"path":["api","Project",":projectId","update"],"variable":[{"key":"projectId","value":"3573","description":"The ID of the project to update."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6043,\n  \"code\": \"string\",\n  \"isActive\": true,\n  \"isAvailableOnline\": true,\n  \"isPublic\": true,\n  \"isDeleted\": true,\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"sortOrder\": 4381,\n  \"emailAddresses\": \"string\",\n  \"metadataFields\": [\n    {\n      \"name\": \"string\",\n      \"value\": \"string\"\n    },\n    {\n      \"name\": \"string\",\n      \"value\": \"string\"\n    }\n  ],\n  \"image\": \"string\",\n  \"isPinned\": false,\n  \"donorAmount\": 9264,\n  \"giftAmount\": 5647,\n  \"createdDateTime\": \"string\",\n  \"modifiedDateTime\": \"string\",\n  \"raisedAmount\": \"string\",\n  \"averageGiftAmount\": \"string\",\n  \"firstGiftDate\": \"string\",\n  \"lastGiftDate\": \"string\",\n  \"isSystem\": false,\n  \"percentageRecurringGift\": 5833.424000878247,\n  \"externalIdentifier\": \"string\",\n  \"impactData\": \"string\"\n}"},{"id":"427ea1fd-4493-44cc-84d5-2d4350406235","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"code\": \"string\",\n  \"name\": \"string\",\n  \"isActive\": false,\n  \"isAvailableOnline\": true,\n  \"isPublic\": true,\n  \"description\": \"string\",\n  \"sortOrder\": 1884,\n  \"emailAddresses\": \"string\",\n  \"image\": \"string\",\n  \"isPinned\": false,\n  \"externalIdentifier\": \"string\",\n  \"impactData\": \"string\",\n  \"metadataFields\": [\n    {\n      \"name\": \"string\",\n      \"value\": \"string\"\n    },\n    {\n      \"name\": \"string\",\n      \"value\": \"string\"\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Project/:projectId/update","host":["https://prod-api.raisedonors.com"],"path":["api","Project",":projectId","update"],"variable":[{"key":"projectId","value":"3573","description":"The ID of the project to update."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"e5a68ac0-384e-4e5c-9506-d07172c5975a"},{"name":"Delete a project by its ID.","id":"4f537b86-6af3-4639-b2a8-44f1e76f7da4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Project/:projectId/delete","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Project",":projectId","delete"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"6a7462f5-bad6-44da-afa3-44ca4a8e5e98","description":{"content":"<p>The ID of the project to delete.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"projectId"}]}},"response":[{"id":"6e665769-7388-4d4a-9aab-f5f6a1aa5496","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Project/:projectId/delete","host":["https://prod-api.raisedonors.com"],"path":["api","Project",":projectId","delete"],"variable":[{"key":"projectId","value":"3573","description":"The ID of the project to delete."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"ac454e0c-6aaf-40aa-886f-60f8bb9e2634","name":"Bad Request","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Project/:projectId/delete","host":["https://prod-api.raisedonors.com"],"path":["api","Project",":projectId","delete"],"variable":[{"key":"projectId","value":"3573","description":"The ID of the project to delete."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"4f537b86-6af3-4639-b2a8-44f1e76f7da4"},{"name":"Get donors for a specific project.","id":"1d8b3b9a-2353-4da8-98b3-b804c3835f75","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Project/:projectId/donors?Filter=string&Skip=8361&Take=8361&SortBy=code&Descending=true","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Project",":projectId","donors"],"host":["https://prod-api.raisedonors.com"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":{"content":"<p>Field to sort by (case-insensitive). Valid options: code, donoramount, giftamount, id, isactive, name, raisedamount, status</p>\n","type":"text/plain"},"key":"SortBy","value":"code"},{"key":"Descending","value":"true"}],"variable":[{"id":"31afa3bb-6e70-4f24-af8b-536a6f89c7c7","description":{"content":"<p>The ID of the project.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"projectId"}]}},"response":[{"id":"abe63935-a476-4da7-aaf3-5b701e23594b","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Project/:projectId/donors?Filter=string&Skip=8361&Take=8361&SortBy=code&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Project",":projectId","donors"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: code, donoramount, giftamount, id, isactive, name, raisedamount, status","key":"SortBy","value":"code"},{"key":"Descending","value":"true"}],"variable":[{"key":"projectId","value":"3573","description":"The ID of the project."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 8188,\n      \"firstName\": \"string\",\n      \"lastName\": \"string\",\n      \"name\": \"string\",\n      \"isOrganization\": false,\n      \"forms\": [\n        \"string\",\n        \"string\"\n      ],\n      \"phone\": \"string\",\n      \"address\": {\n        \"address1\": \"string\",\n        \"address2\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"postal\": \"string\",\n        \"countryString\": \"string\",\n        \"addressType\": 1,\n        \"addressTypeDisplay\": \"string\"\n      },\n      \"giftAmount\": 9101,\n      \"giftSum\": \"string\"\n    },\n    {\n      \"id\": 1979,\n      \"firstName\": \"string\",\n      \"lastName\": \"string\",\n      \"name\": \"string\",\n      \"isOrganization\": true,\n      \"forms\": [\n        \"string\",\n        \"string\"\n      ],\n      \"phone\": \"string\",\n      \"address\": {\n        \"address1\": \"string\",\n        \"address2\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"postal\": \"string\",\n        \"countryString\": \"string\",\n        \"addressType\": 5,\n        \"addressTypeDisplay\": \"string\"\n      },\n      \"giftAmount\": 1255,\n      \"giftSum\": \"string\"\n    }\n  ],\n  \"total\": 2950\n}"},{"id":"82ad0030-3347-46bd-a439-9e8b50db3b2d","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Project/:projectId/donors?Filter=string&Skip=8361&Take=8361&SortBy=code&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Project",":projectId","donors"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: code, donoramount, giftamount, id, isactive, name, raisedamount, status","key":"SortBy","value":"code"},{"key":"Descending","value":"true"}],"variable":[{"key":"projectId","value":"3573","description":"The ID of the project."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"1d8b3b9a-2353-4da8-98b3-b804c3835f75"},{"name":"Get gifts for a specific project.","id":"be501e3a-989a-46ed-8de9-1878dea46650","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Project/:projectId/gifts?Filter=string&Skip=8361&Take=8361&SortBy=code&Descending=true","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Project",":projectId","gifts"],"host":["https://prod-api.raisedonors.com"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":{"content":"<p>Field to sort by (case-insensitive). Valid options: code, donoramount, giftamount, id, isactive, name, raisedamount, status</p>\n","type":"text/plain"},"key":"SortBy","value":"code"},{"key":"Descending","value":"true"}],"variable":[{"id":"1fee1a50-a9ba-4a60-9c12-2806cff186ef","description":{"content":"<p>The ID of the project.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"projectId"}]}},"response":[{"id":"ddc1b203-84ed-43e6-9e79-d799feef4e2c","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Project/:projectId/gifts?Filter=string&Skip=8361&Take=8361&SortBy=code&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Project",":projectId","gifts"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: code, donoramount, giftamount, id, isactive, name, raisedamount, status","key":"SortBy","value":"code"},{"key":"Descending","value":"true"}],"variable":[{"key":"projectId","value":"3573","description":"The ID of the project."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 3379,\n      \"amount\": \"string\",\n      \"date\": \"string\",\n      \"donorImage\": \"string\",\n      \"donorName\": \"string\",\n      \"form\": \"string\",\n      \"status\": 3,\n      \"statusText\": \"string\",\n      \"isAnonymous\": false,\n      \"isRecurring\": true,\n      \"isDonorOrganization\": false,\n      \"currencyExchange\": {\n        \"nativeAmount\": \"string\",\n        \"nativeCurrencyCode\": \"string\",\n        \"settledExchangeRate\": 2605.492041534856,\n        \"settledAmount\": \"string\",\n        \"settledCurrencyCode\": \"string\",\n        \"baseExchangeRate\": 5838.156620872681,\n        \"baseAmount\": \"string\",\n        \"baseCurrencyCode\": \"string\",\n        \"isDifferentCurrency\": false\n      }\n    },\n    {\n      \"id\": 5955,\n      \"amount\": \"string\",\n      \"date\": \"string\",\n      \"donorImage\": \"string\",\n      \"donorName\": \"string\",\n      \"form\": \"string\",\n      \"status\": 9,\n      \"statusText\": \"string\",\n      \"isAnonymous\": true,\n      \"isRecurring\": false,\n      \"isDonorOrganization\": true,\n      \"currencyExchange\": {\n        \"nativeAmount\": \"string\",\n        \"nativeCurrencyCode\": \"string\",\n        \"settledExchangeRate\": 5554.152132565826,\n        \"settledAmount\": \"string\",\n        \"settledCurrencyCode\": \"string\",\n        \"baseExchangeRate\": 4967.240705723257,\n        \"baseAmount\": \"string\",\n        \"baseCurrencyCode\": \"string\",\n        \"isDifferentCurrency\": false\n      }\n    }\n  ],\n  \"total\": 6673\n}"},{"id":"5cb9107d-68bc-4c82-8a6e-5a867f36c401","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Project/:projectId/gifts?Filter=string&Skip=8361&Take=8361&SortBy=code&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Project",":projectId","gifts"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: code, donoramount, giftamount, id, isactive, name, raisedamount, status","key":"SortBy","value":"code"},{"key":"Descending","value":"true"}],"variable":[{"key":"projectId","value":"3573","description":"The ID of the project."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"be501e3a-989a-46ed-8de9-1878dea46650"},{"name":"Get the dependency count for a specific project.","id":"77c4c34e-5978-4df6-af39-1376385debac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Project/:projectId/dependency-count","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Project",":projectId","dependency-count"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"4ff19494-66ff-4931-87dc-4033a0d5f32d","description":{"content":"<p>The ID of the project.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"projectId"}]}},"response":[{"id":"74dc67b5-e1d4-4f07-82f2-2e2fa90153db","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Project/:projectId/dependency-count","host":["https://prod-api.raisedonors.com"],"path":["api","Project",":projectId","dependency-count"],"variable":[{"key":"projectId","value":"3573","description":"The ID of the project."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"recurringGiftCount\": 5566,\n  \"legacyPageCount\": 2736,\n  \"defaultPageCount\": 2776,\n  \"pageCount\": 6264\n}"},{"id":"364a70d0-9b88-4d37-8c93-d91549c4b4f1","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Project/:projectId/dependency-count","host":["https://prod-api.raisedonors.com"],"path":["api","Project",":projectId","dependency-count"],"variable":[{"key":"projectId","value":"3573","description":"The ID of the project."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"77c4c34e-5978-4df6-af39-1376385debac"},{"name":"Replace a project with a new one.","id":"0ee1bc96-60d4-43fe-a5a5-1542b45abb6d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"currentProjectId\": 7216,\n  \"recurringGiftNewProjectId\": 28,\n  \"legacyPageProjectId\": 8544,\n  \"defaultPageProjectId\": 5098,\n  \"pageProjectId\": 9518\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Project/replace","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Project","replace"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[]}},"response":[{"id":"3ba02d94-d39a-4e99-841b-3ae3a18300dc","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"currentProjectId\": 7216,\n  \"recurringGiftNewProjectId\": 28,\n  \"legacyPageProjectId\": 8544,\n  \"defaultPageProjectId\": 5098,\n  \"pageProjectId\": 9518\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Project/replace"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"9b30c2bb-7ed8-484c-91a0-11327556f3c9","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"currentProjectId\": 7216,\n  \"recurringGiftNewProjectId\": 28,\n  \"legacyPageProjectId\": 8544,\n  \"defaultPageProjectId\": 5098,\n  \"pageProjectId\": 9518\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Project/replace"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"0ee1bc96-60d4-43fe-a5a5-1542b45abb6d"},{"name":"Query donors based on specified criteria.","id":"f8707029-3b3e-4323-b41a-8f1dfe54fbea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"filter\": \"string\",\n  \"skip\": 7689,\n  \"take\": 1304,\n  \"sortBy\": \"createdate\",\n  \"descending\": true,\n  \"queryType\": 3,\n  \"groups\": [\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 4,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 19,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    },\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    }\n  ],\n  \"selectedColumns\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Project/query","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Project","query"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[]}},"response":[{"id":"b76be4d7-ea12-4942-af98-10d521a83317","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"filter\": \"string\",\n  \"skip\": 7689,\n  \"take\": 1304,\n  \"sortBy\": \"createdate\",\n  \"descending\": true,\n  \"queryType\": 3,\n  \"groups\": [\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 4,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 19,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    },\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    }\n  ],\n  \"selectedColumns\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Project/query"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"code\": \"string\",\n      \"donorAmount\": 9331,\n      \"giftAmount\": 7161,\n      \"id\": 8900,\n      \"isActive\": false,\n      \"name\": \"string\",\n      \"raisedAmount\": \"string\",\n      \"metadata\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    {\n      \"code\": \"string\",\n      \"donorAmount\": 6312,\n      \"giftAmount\": 9250,\n      \"id\": 7304,\n      \"isActive\": false,\n      \"name\": \"string\",\n      \"raisedAmount\": \"string\",\n      \"metadata\": [\n        \"string\",\n        \"string\"\n      ]\n    }\n  ],\n  \"total\": 6401\n}"},{"id":"9ca8c2b6-65c9-4214-8fda-c2d99a2ff543","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"filter\": \"string\",\n  \"skip\": 7689,\n  \"take\": 1304,\n  \"sortBy\": \"createdate\",\n  \"descending\": true,\n  \"queryType\": 3,\n  \"groups\": [\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 4,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 19,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    },\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    }\n  ],\n  \"selectedColumns\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Project/query"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"f8707029-3b3e-4323-b41a-8f1dfe54fbea"},{"name":"Verify if a project code exists in Raise or any connected CRM integrations.","id":"6aae4a48-b7c2-454a-96ad-432af35bcac4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Project/code-exists?projectCode=string","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Project","code-exists"],"host":["https://prod-api.raisedonors.com"],"query":[{"description":{"content":"<p>The project code to verify</p>\n","type":"text/plain"},"key":"projectCode","value":"string"}],"variable":[]}},"response":[{"id":"e744927c-db43-4f98-9e94-de045b114651","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Project/code-exists?projectCode=string","host":["https://prod-api.raisedonors.com"],"path":["api","Project","code-exists"],"query":[{"description":"The project code to verify","key":"projectCode","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"doesExist\": false,\n  \"hasErrors\": true,\n  \"existsIn\": [\n    \"string\",\n    \"string\"\n  ],\n  \"errorsIn\": [\n    \"string\",\n    \"string\"\n  ]\n}"}],"_postman_id":"6aae4a48-b7c2-454a-96ad-432af35bcac4"}],"id":"4457f5f4-af18-426a-8565-26d53e6094f1","_postman_id":"4457f5f4-af18-426a-8565-26d53e6094f1","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}}},{"name":"Query","item":[{"name":"Returns a list of saved queries for the specified query type.","id":"737f2186-c94a-422d-907f-39afbd843d7a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://prod-api.raisedonors.com/api/Query/list/:queryType","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Query","list",":queryType"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"88023e7b-9a2b-451b-af62-d18ed92e1263","description":{"content":"<p>The type of query to list.</p>\n","type":"text/plain"},"type":"any","value":"8","key":"queryType"}]}},"response":[{"id":"dc92c080-3223-4d9a-844b-cb850d8a1acc","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Query/list/:queryType","host":["https://prod-api.raisedonors.com"],"path":["api","Query","list",":queryType"],"variable":[{"key":"queryType","value":"8","description":"The type of query to list."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"737f2186-c94a-422d-907f-39afbd843d7a"},{"name":"Creates a new query for the current user.","id":"d083cd85-16c6-49a1-a336-1ca0344cc75e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"queryId\": 495,\n  \"name\": \"string\",\n  \"queryType\": 5,\n  \"groups\": [\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 19,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 4,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        }\n      ],\n      \"conjunct\": 0\n    },\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 0,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 16,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        }\n      ],\n      \"conjunct\": 1\n    }\n  ],\n  \"selectedColumns\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Query","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Query"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[]}},"response":[{"id":"1b450858-1ad8-4ca6-ba7f-89fccfae4f3e","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"queryId\": 495,\n  \"name\": \"string\",\n  \"queryType\": 5,\n  \"groups\": [\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 19,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 4,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        }\n      ],\n      \"conjunct\": 0\n    },\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 0,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 16,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        }\n      ],\n      \"conjunct\": 1\n    }\n  ],\n  \"selectedColumns\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Query"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d083cd85-16c6-49a1-a336-1ca0344cc75e"},{"name":"Updates an existing query by ID.","id":"edcfe67e-badf-4698-83a3-4a624b0a4245","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"queryId\": 495,\n  \"name\": \"string\",\n  \"queryType\": 5,\n  \"groups\": [\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 19,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 4,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        }\n      ],\n      \"conjunct\": 0\n    },\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 0,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 16,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        }\n      ],\n      \"conjunct\": 1\n    }\n  ],\n  \"selectedColumns\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Query/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Query",":id"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"a83406f5-764a-452e-a673-4c1e22362831","description":{"content":"<p>The ID of the query to update.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"b5177390-610e-4cec-9f37-c2b38f2889c3","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"queryId\": 495,\n  \"name\": \"string\",\n  \"queryType\": 5,\n  \"groups\": [\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 19,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 4,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        }\n      ],\n      \"conjunct\": 0\n    },\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 0,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 16,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        }\n      ],\n      \"conjunct\": 1\n    }\n  ],\n  \"selectedColumns\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Query/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Query",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the query to update."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"edcfe67e-badf-4698-83a3-4a624b0a4245"},{"name":"Deletes a query by ID.","id":"215e6cf4-1202-4e14-aeda-4b04b36a6c3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://prod-api.raisedonors.com/api/Query/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Query",":id"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"03736162-e7ea-40cd-be0f-713278cd87bb","description":{"content":"<p>The ID of the query to delete.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"c0f3d247-4145-49f4-aee6-6f26bdf09da6","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Query/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Query",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the query to delete."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"215e6cf4-1202-4e14-aeda-4b04b36a6c3d"},{"name":"Looks up available options for a query parameter for the specified query type.","id":"db8636e3-4ff1-4c89-ab67-cfe4fbfd3f0a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://prod-api.raisedonors.com/api/Query/lookup?QueryType=8&Parameter=string&Filter=string","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Query","lookup"],"host":["https://prod-api.raisedonors.com"],"query":[{"description":{"content":"<p>Gets or sets the type of the query.</p>\n","type":"text/plain"},"key":"QueryType","value":"8"},{"description":{"content":"<p>Gets or sets the parameter.</p>\n","type":"text/plain"},"key":"Parameter","value":"string"},{"description":{"content":"<p>Gets or sets the filter.</p>\n","type":"text/plain"},"key":"Filter","value":"string"}],"variable":[]}},"response":[{"id":"362d9385-299d-4836-ab46-dc77263072cf","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Query/lookup?QueryType=8&Parameter=string&Filter=string","host":["https://prod-api.raisedonors.com"],"path":["api","Query","lookup"],"query":[{"description":"Gets or sets the type of the query.","key":"QueryType","value":"8"},{"description":"Gets or sets the parameter.","key":"Parameter","value":"string"},{"description":"Gets or sets the filter.","key":"Filter","value":"string"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"db8636e3-4ff1-4c89-ab67-cfe4fbfd3f0a"},{"name":"Parses a query string for the specified query type and returns the parsed query structure.","id":"1ae5c1f6-95df-4ba2-bac2-3d7f46b0675a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"queryType\": 2,\n  \"queryString\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Query/parse","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Query","parse"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[]}},"response":[{"id":"7f42551f-e692-4b3c-9166-120a9722aae4","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"queryType\": 2,\n  \"queryString\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Query/parse"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"1ae5c1f6-95df-4ba2-bac2-3d7f46b0675a"},{"name":"Returns all available query parameters, operators, and result fields for the specified query type.","id":"e46a8adc-8f2c-4034-a693-021fc3a36819","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://prod-api.raisedonors.com/api/Query/options/:queryType","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Query","options",":queryType"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"30e4bbe3-8d51-4cfe-9666-8c7e518e6ed5","description":{"content":"<p>The type of query (see query type).</p>\n","type":"text/plain"},"type":"any","value":"8","key":"queryType"}]}},"response":[{"id":"c0801c04-a0a0-41d0-a1ba-755ee2e3b2a1","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Query/options/:queryType","host":["https://prod-api.raisedonors.com"],"path":["api","Query","options",":queryType"],"variable":[{"key":"queryType","value":"8","description":"The type of query (see query type)."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e46a8adc-8f2c-4034-a693-021fc3a36819"}],"id":"5ee82611-4701-4c46-ba1b-8236ee57fa5f","_postman_id":"5ee82611-4701-4c46-ba1b-8236ee57fa5f","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}}},{"name":"Raise","item":[{"name":"Payments the specified request.","id":"7cd5d8a9-4f96-44af-a891-97fb3c061814","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"amount\": 2342.3723377829274,\n  \"paymentMethodId\": \"string\",\n  \"paymentMethodType\": 4,\n  \"nonce\": \"f4e6cd5f-9460-1e6a-3e13-745a7cd7642d\",\n  \"publicId\": \"6799b125-904d-7f44-fbab-904bc6439938\",\n  \"pageRequestId\": \"8fed3bf2-dbbd-c2c9-e758-c25571e380a4\",\n  \"currency\": \"string\",\n  \"exchangeRate\": 1606.6263654689706,\n  \"segment\": \"string\",\n  \"segmentOverrideCode\": \"string\",\n  \"projectOverrideCode\": \"string\",\n  \"isRecurring\": false,\n  \"frequency\": 52,\n  \"startDate\": \"1960-02-27T16:11:41.095Z\",\n  \"startDateTimeUtc\": \"1955-12-20T02:16:43.858Z\",\n  \"donorPaidCosts\": false,\n  \"isAnonymous\": false,\n  \"creditCardType\": \"string\",\n  \"giftAidRequested\": false,\n  \"doubleTheDonationCompanyId\": 4076,\n  \"doubleTheDonationEnteredText\": \"string\",\n  \"isTestMode\": false,\n  \"premiumId\": 4828,\n  \"visitorId\": \"string\",\n  \"comments\": \"string\",\n  \"paymentId\": \"string\",\n  \"clientId\": \"string\",\n  \"sessionId\": \"string\",\n  \"timeZone\": \"string\",\n  \"coverAdminFee\": false,\n  \"adminFee\": 4018.75744738591,\n  \"adminFeeProjectId\": 5600,\n  \"paypalPaymentSource\": \"string\",\n  \"gatewayId\": 4239,\n  \"donor\": {\n    \"firstName\": \"string\",\n    \"lastName\": \"string\",\n    \"id\": 495,\n    \"title\": \"string\",\n    \"middleName\": \"string\",\n    \"suffix\": \"string\",\n    \"email\": \"Cn205@xQDFiLC.cr\",\n    \"noEmailAddress\": false,\n    \"phone\": \"string\",\n    \"phoneOptIn\": true,\n    \"phoneCountryCode\": \"st\",\n    \"notes\": \"string\",\n    \"isOrganization\": false,\n    \"organizationName\": \"string\",\n    \"crmKey\": \"string\",\n    \"crmKeys\": {\n      \"key_0\": \"string\"\n    },\n    \"billingAddress\": {\n      \"address1\": \"string\",\n      \"address2\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"postal\": \"string\",\n      \"countryString\": \"string\",\n      \"addressType\": 1\n    },\n    \"shippingAddress\": {\n      \"address1\": \"string\",\n      \"address2\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"postal\": \"string\",\n      \"countryString\": \"string\",\n      \"addressType\": 3\n    },\n    \"emailLists\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  \"tribute\": {\n    \"isInMemoryOf\": false,\n    \"isInHonorOf\": false,\n    \"nameOrOccasion\": \"string\",\n    \"tributeFirstName\": \"string\",\n    \"tributeLastName\": \"string\",\n    \"tributeAddress1\": \"string\",\n    \"tributeAddress2\": \"string\",\n    \"tributeCity\": \"string\",\n    \"tributeState\": \"string\",\n    \"tributeCountry\": \"string\",\n    \"tributePostal\": \"string\",\n    \"acknowledgeeFirstName\": \"string\",\n    \"acknowledgeeLastName\": \"string\",\n    \"sendByEmail\": false,\n    \"acknowledgeeEmailAddress\": \"string\",\n    \"sendByPostal\": true,\n    \"acknowledgeeAddress1\": \"string\",\n    \"acknowledgeeAddress2\": \"string\",\n    \"acknowledgeeCity\": \"string\",\n    \"acknowledgeeState\": \"string\",\n    \"acknowledgeeCountry\": \"string\",\n    \"acknowledgeePostal\": \"string\",\n    \"message\": \"string\"\n  },\n  \"projects\": [\n    {\n      \"projectId\": 3738,\n      \"amount\": 9120.921289387754\n    },\n    {\n      \"projectId\": 1638,\n      \"amount\": 3299.6312382983506\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Raise/give","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Raise","give"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[]}},"response":[{"id":"0dee50a4-4e0e-46ad-8585-93d57b336d2c","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"amount\": 2342.3723377829274,\n  \"paymentMethodId\": \"string\",\n  \"paymentMethodType\": 4,\n  \"nonce\": \"f4e6cd5f-9460-1e6a-3e13-745a7cd7642d\",\n  \"publicId\": \"6799b125-904d-7f44-fbab-904bc6439938\",\n  \"pageRequestId\": \"8fed3bf2-dbbd-c2c9-e758-c25571e380a4\",\n  \"currency\": \"string\",\n  \"exchangeRate\": 1606.6263654689706,\n  \"segment\": \"string\",\n  \"segmentOverrideCode\": \"string\",\n  \"projectOverrideCode\": \"string\",\n  \"isRecurring\": false,\n  \"frequency\": 52,\n  \"startDate\": \"1960-02-27T16:11:41.095Z\",\n  \"startDateTimeUtc\": \"1955-12-20T02:16:43.858Z\",\n  \"donorPaidCosts\": false,\n  \"isAnonymous\": false,\n  \"creditCardType\": \"string\",\n  \"giftAidRequested\": false,\n  \"doubleTheDonationCompanyId\": 4076,\n  \"doubleTheDonationEnteredText\": \"string\",\n  \"isTestMode\": false,\n  \"premiumId\": 4828,\n  \"visitorId\": \"string\",\n  \"comments\": \"string\",\n  \"paymentId\": \"string\",\n  \"clientId\": \"string\",\n  \"sessionId\": \"string\",\n  \"timeZone\": \"string\",\n  \"coverAdminFee\": false,\n  \"adminFee\": 4018.75744738591,\n  \"adminFeeProjectId\": 5600,\n  \"paypalPaymentSource\": \"string\",\n  \"gatewayId\": 4239,\n  \"donor\": {\n    \"firstName\": \"string\",\n    \"lastName\": \"string\",\n    \"id\": 495,\n    \"title\": \"string\",\n    \"middleName\": \"string\",\n    \"suffix\": \"string\",\n    \"email\": \"Cn205@xQDFiLC.cr\",\n    \"noEmailAddress\": false,\n    \"phone\": \"string\",\n    \"phoneOptIn\": true,\n    \"phoneCountryCode\": \"st\",\n    \"notes\": \"string\",\n    \"isOrganization\": false,\n    \"organizationName\": \"string\",\n    \"crmKey\": \"string\",\n    \"crmKeys\": {\n      \"key_0\": \"string\"\n    },\n    \"billingAddress\": {\n      \"address1\": \"string\",\n      \"address2\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"postal\": \"string\",\n      \"countryString\": \"string\",\n      \"addressType\": 1\n    },\n    \"shippingAddress\": {\n      \"address1\": \"string\",\n      \"address2\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"postal\": \"string\",\n      \"countryString\": \"string\",\n      \"addressType\": 3\n    },\n    \"emailLists\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  \"tribute\": {\n    \"isInMemoryOf\": false,\n    \"isInHonorOf\": false,\n    \"nameOrOccasion\": \"string\",\n    \"tributeFirstName\": \"string\",\n    \"tributeLastName\": \"string\",\n    \"tributeAddress1\": \"string\",\n    \"tributeAddress2\": \"string\",\n    \"tributeCity\": \"string\",\n    \"tributeState\": \"string\",\n    \"tributeCountry\": \"string\",\n    \"tributePostal\": \"string\",\n    \"acknowledgeeFirstName\": \"string\",\n    \"acknowledgeeLastName\": \"string\",\n    \"sendByEmail\": false,\n    \"acknowledgeeEmailAddress\": \"string\",\n    \"sendByPostal\": true,\n    \"acknowledgeeAddress1\": \"string\",\n    \"acknowledgeeAddress2\": \"string\",\n    \"acknowledgeeCity\": \"string\",\n    \"acknowledgeeState\": \"string\",\n    \"acknowledgeeCountry\": \"string\",\n    \"acknowledgeePostal\": \"string\",\n    \"message\": \"string\"\n  },\n  \"projects\": [\n    {\n      \"projectId\": 3738,\n      \"amount\": 9120.921289387754\n    },\n    {\n      \"projectId\": 1638,\n      \"amount\": 3299.6312382983506\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Raise/give"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"7cd5d8a9-4f96-44af-a891-97fb3c061814"},{"name":"Gets the costs.","id":"873b6d71-2737-4d01-84aa-50a0a99f6946","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://prod-api.raisedonors.com/api/Raise/cost/:organizationId?GatewayId=3573&Amount=7172.438726957488&CreditCardType=string&CreditCardCountry=string&PaymentMethodId=string&PaymentMethodType=8&DonorCoverCosts=true&CurrencyCode=string","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Raise","cost",":organizationId"],"host":["https://prod-api.raisedonors.com"],"query":[{"key":"GatewayId","value":"3573"},{"key":"Amount","value":"7172.438726957488"},{"key":"CreditCardType","value":"string"},{"key":"CreditCardCountry","value":"string"},{"key":"PaymentMethodId","value":"string"},{"key":"PaymentMethodType","value":"8"},{"key":"DonorCoverCosts","value":"true"},{"key":"CurrencyCode","value":"string"}],"variable":[{"id":"e8692a93-c15b-4dce-93e9-40dab97ee2fd","description":{"content":"<p>The organization identifier.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"organizationId"}]}},"response":[{"id":"78b21efc-683b-4c94-b7c3-98be83d9eee4","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Raise/cost/:organizationId?GatewayId=3573&Amount=7172.438726957488&CreditCardType=string&CreditCardCountry=string&PaymentMethodId=string&PaymentMethodType=8&DonorCoverCosts=true&CurrencyCode=string","host":["https://prod-api.raisedonors.com"],"path":["api","Raise","cost",":organizationId"],"query":[{"key":"GatewayId","value":"3573"},{"key":"Amount","value":"7172.438726957488"},{"key":"CreditCardType","value":"string"},{"key":"CreditCardCountry","value":"string"},{"key":"PaymentMethodId","value":"string"},{"key":"PaymentMethodType","value":"8"},{"key":"DonorCoverCosts","value":"true"},{"key":"CurrencyCode","value":"string"}],"variable":[{"key":"organizationId","value":"3573","description":"The organization identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"873b6d71-2737-4d01-84aa-50a0a99f6946"},{"name":"Generates a test payment method for testing purposes.","id":"ab742e71-729f-443f-a4eb-354ea5914dee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"paymentMethodType\": 9,\n  \"isSuccessOutcome\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Raise/generate-test-payment-method","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Raise","generate-test-payment-method"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[]}},"response":[{"id":"76ed9573-14b2-4439-8067-1e5dc249363c","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"paymentMethodType\": 9,\n  \"isSuccessOutcome\": true\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Raise/generate-test-payment-method"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ab742e71-729f-443f-a4eb-354ea5914dee"},{"name":"Raise Lead","id":"1905943e-c1c5-462d-8b3e-2ca754e7bc28","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"isTestMode\": false,\n  \"donor\": {\n    \"firstName\": \"string\",\n    \"lastName\": \"string\",\n    \"id\": 4134,\n    \"title\": \"string\",\n    \"middleName\": \"string\",\n    \"suffix\": \"string\",\n    \"email\": \"p1c-w67jo@BnLReqdEljRGiyOihyqGXVPDL.ipaq\",\n    \"noEmailAddress\": true,\n    \"phone\": \"string\",\n    \"phoneOptIn\": false,\n    \"phoneCountryCode\": \"st\",\n    \"notes\": \"string\",\n    \"isOrganization\": true,\n    \"organizationName\": \"string\",\n    \"crmKey\": \"string\",\n    \"crmKeys\": {\n      \"key_0\": \"string\",\n      \"key_1\": \"string\"\n    },\n    \"billingAddress\": {\n      \"address1\": \"string\",\n      \"address2\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"postal\": \"string\",\n      \"countryString\": \"string\",\n      \"addressType\": 1\n    },\n    \"shippingAddress\": {\n      \"address1\": \"string\",\n      \"address2\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"postal\": \"string\",\n      \"countryString\": \"string\",\n      \"addressType\": 4\n    },\n    \"emailLists\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  \"emailLists\": [\n    \"string\",\n    \"string\"\n  ],\n  \"customFields\": [\n    {\n      \"customFieldId\": 4780,\n      \"entityType\": 3,\n      \"dataType\": 4,\n      \"value\": \"string\"\n    },\n    {\n      \"customFieldId\": 8014,\n      \"entityType\": 6,\n      \"dataType\": 0,\n      \"value\": \"string\"\n    }\n  ],\n  \"customCollections\": [\n    {\n      \"customCollectionId\": 8142,\n      \"entityType\": 12,\n      \"customFieldResponses\": [\n        {\n          \"customFieldId\": 7715,\n          \"entityType\": 10,\n          \"dataType\": 8,\n          \"value\": \"string\"\n        },\n        {\n          \"customFieldId\": 9321,\n          \"entityType\": 6,\n          \"dataType\": 3,\n          \"value\": \"string\"\n        }\n      ]\n    },\n    {\n      \"customCollectionId\": 7743,\n      \"entityType\": 14,\n      \"customFieldResponses\": [\n        {\n          \"customFieldId\": 1774,\n          \"entityType\": 12,\n          \"dataType\": 1,\n          \"value\": \"string\"\n        },\n        {\n          \"customFieldId\": 3043,\n          \"entityType\": 5,\n          \"dataType\": 3,\n          \"value\": \"string\"\n        }\n      ]\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Raise/lead","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Raise","lead"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[]}},"response":[{"id":"91f27364-2933-4a44-b2aa-1c3b4d02ceb9","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"isTestMode\": false,\n  \"donor\": {\n    \"firstName\": \"string\",\n    \"lastName\": \"string\",\n    \"id\": 4134,\n    \"title\": \"string\",\n    \"middleName\": \"string\",\n    \"suffix\": \"string\",\n    \"email\": \"p1c-w67jo@BnLReqdEljRGiyOihyqGXVPDL.ipaq\",\n    \"noEmailAddress\": true,\n    \"phone\": \"string\",\n    \"phoneOptIn\": false,\n    \"phoneCountryCode\": \"st\",\n    \"notes\": \"string\",\n    \"isOrganization\": true,\n    \"organizationName\": \"string\",\n    \"crmKey\": \"string\",\n    \"crmKeys\": {\n      \"key_0\": \"string\",\n      \"key_1\": \"string\"\n    },\n    \"billingAddress\": {\n      \"address1\": \"string\",\n      \"address2\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"postal\": \"string\",\n      \"countryString\": \"string\",\n      \"addressType\": 1\n    },\n    \"shippingAddress\": {\n      \"address1\": \"string\",\n      \"address2\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"postal\": \"string\",\n      \"countryString\": \"string\",\n      \"addressType\": 4\n    },\n    \"emailLists\": [\n      \"string\",\n      \"string\"\n    ]\n  },\n  \"emailLists\": [\n    \"string\",\n    \"string\"\n  ],\n  \"customFields\": [\n    {\n      \"customFieldId\": 4780,\n      \"entityType\": 3,\n      \"dataType\": 4,\n      \"value\": \"string\"\n    },\n    {\n      \"customFieldId\": 8014,\n      \"entityType\": 6,\n      \"dataType\": 0,\n      \"value\": \"string\"\n    }\n  ],\n  \"customCollections\": [\n    {\n      \"customCollectionId\": 8142,\n      \"entityType\": 12,\n      \"customFieldResponses\": [\n        {\n          \"customFieldId\": 7715,\n          \"entityType\": 10,\n          \"dataType\": 8,\n          \"value\": \"string\"\n        },\n        {\n          \"customFieldId\": 9321,\n          \"entityType\": 6,\n          \"dataType\": 3,\n          \"value\": \"string\"\n        }\n      ]\n    },\n    {\n      \"customCollectionId\": 7743,\n      \"entityType\": 14,\n      \"customFieldResponses\": [\n        {\n          \"customFieldId\": 1774,\n          \"entityType\": 12,\n          \"dataType\": 1,\n          \"value\": \"string\"\n        },\n        {\n          \"customFieldId\": 3043,\n          \"entityType\": 5,\n          \"dataType\": 3,\n          \"value\": \"string\"\n        }\n      ]\n    }\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Raise/lead"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"1905943e-c1c5-462d-8b3e-2ca754e7bc28"}],"id":"6753767a-3895-4964-9737-fdfe299a7320","_postman_id":"6753767a-3895-4964-9737-fdfe299a7320","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}}},{"name":"RecurringGift","item":[{"name":"Get a paginated list of recurring gifts.","id":"fd8b9a26-2f7f-48f2-953b-d22cfebb5b01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/RecurringGift/list?Filter=string&Skip=8361&Take=8361&SortBy=amount&Descending=true","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","RecurringGift","list"],"host":["https://prod-api.raisedonors.com"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":{"content":"<p>Field to sort by (case-insensitive). Valid options: amount, donorname, frequency, id, nextchargedate, profilenumber, status, total</p>\n","type":"text/plain"},"key":"SortBy","value":"amount"},{"key":"Descending","value":"true"}],"variable":[]}},"response":[{"id":"26af86d4-9dbd-4a17-9b09-f2e53095c69e","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/RecurringGift/list?Filter=string&Skip=8361&Take=8361&SortBy=amount&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","RecurringGift","list"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: amount, donorname, frequency, id, nextchargedate, profilenumber, status, total","key":"SortBy","value":"amount"},{"key":"Descending","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 8344,\n      \"profileNumber\": \"string\",\n      \"amount\": \"string\",\n      \"currencyCode\": \"string\",\n      \"donorId\": 2653,\n      \"donorName\": \"string\",\n      \"donorIsOrganization\": true,\n      \"frequency\": \"string\",\n      \"total\": \"string\",\n      \"successfulCycles\": 1230,\n      \"nextChargeDate\": \"string\",\n      \"status\": 4,\n      \"statusText\": \"string\",\n      \"projects\": [\n        \"string\",\n        \"string\"\n      ],\n      \"allowedEdit\": false,\n      \"metadata\": [\n        \"string\",\n        \"string\"\n      ],\n      \"isAnonymous\": true,\n      \"donorCoverCosts\": false,\n      \"crmKey\": \"string\",\n      \"currencyExchange\": {\n        \"nativeAmount\": \"string\",\n        \"nativeCurrencyCode\": \"string\",\n        \"settledExchangeRate\": 6263.333876023971,\n        \"settledAmount\": \"string\",\n        \"settledCurrencyCode\": \"string\",\n        \"baseExchangeRate\": 1979.989119802512,\n        \"baseAmount\": \"string\",\n        \"baseCurrencyCode\": \"string\",\n        \"isDifferentCurrency\": false\n      }\n    },\n    {\n      \"id\": 7900,\n      \"profileNumber\": \"string\",\n      \"amount\": \"string\",\n      \"currencyCode\": \"string\",\n      \"donorId\": 737,\n      \"donorName\": \"string\",\n      \"donorIsOrganization\": true,\n      \"frequency\": \"string\",\n      \"total\": \"string\",\n      \"successfulCycles\": 8352,\n      \"nextChargeDate\": \"string\",\n      \"status\": 1,\n      \"statusText\": \"string\",\n      \"projects\": [\n        \"string\",\n        \"string\"\n      ],\n      \"allowedEdit\": false,\n      \"metadata\": [\n        \"string\",\n        \"string\"\n      ],\n      \"isAnonymous\": false,\n      \"donorCoverCosts\": false,\n      \"crmKey\": \"string\",\n      \"currencyExchange\": {\n        \"nativeAmount\": \"string\",\n        \"nativeCurrencyCode\": \"string\",\n        \"settledExchangeRate\": 9254.050266090528,\n        \"settledAmount\": \"string\",\n        \"settledCurrencyCode\": \"string\",\n        \"baseExchangeRate\": 3459.3532391767235,\n        \"baseAmount\": \"string\",\n        \"baseCurrencyCode\": \"string\",\n        \"isDifferentCurrency\": true\n      }\n    }\n  ],\n  \"total\": 6837\n}"},{"id":"ba9d22c3-3aca-432b-9085-c6e52eae82cf","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/RecurringGift/list?Filter=string&Skip=8361&Take=8361&SortBy=amount&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","RecurringGift","list"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: amount, donorname, frequency, id, nextchargedate, profilenumber, status, total","key":"SortBy","value":"amount"},{"key":"Descending","value":"true"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"fd8b9a26-2f7f-48f2-953b-d22cfebb5b01"},{"name":"Query recurring gifts based on the specified criteria.","id":"f10b04e1-964e-4fef-a982-c03feaadbb60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"filter\": \"string\",\n  \"skip\": 7689,\n  \"take\": 1304,\n  \"sortBy\": \"createdate\",\n  \"descending\": true,\n  \"queryType\": 3,\n  \"groups\": [\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 4,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 19,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    },\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    }\n  ],\n  \"selectedColumns\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/RecurringGift/query","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","RecurringGift","query"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[]}},"response":[{"id":"b42a4b18-38f8-4f5d-9f1e-329903f0ec0f","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"filter\": \"string\",\n  \"skip\": 7689,\n  \"take\": 1304,\n  \"sortBy\": \"createdate\",\n  \"descending\": true,\n  \"queryType\": 3,\n  \"groups\": [\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 4,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 19,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    },\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    }\n  ],\n  \"selectedColumns\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/RecurringGift/query"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 8344,\n      \"profileNumber\": \"string\",\n      \"amount\": \"string\",\n      \"currencyCode\": \"string\",\n      \"donorId\": 2653,\n      \"donorName\": \"string\",\n      \"donorIsOrganization\": true,\n      \"frequency\": \"string\",\n      \"total\": \"string\",\n      \"successfulCycles\": 1230,\n      \"nextChargeDate\": \"string\",\n      \"status\": 4,\n      \"statusText\": \"string\",\n      \"projects\": [\n        \"string\",\n        \"string\"\n      ],\n      \"allowedEdit\": false,\n      \"metadata\": [\n        \"string\",\n        \"string\"\n      ],\n      \"isAnonymous\": true,\n      \"donorCoverCosts\": false,\n      \"crmKey\": \"string\",\n      \"currencyExchange\": {\n        \"nativeAmount\": \"string\",\n        \"nativeCurrencyCode\": \"string\",\n        \"settledExchangeRate\": 6263.333876023971,\n        \"settledAmount\": \"string\",\n        \"settledCurrencyCode\": \"string\",\n        \"baseExchangeRate\": 1979.989119802512,\n        \"baseAmount\": \"string\",\n        \"baseCurrencyCode\": \"string\",\n        \"isDifferentCurrency\": false\n      }\n    },\n    {\n      \"id\": 7900,\n      \"profileNumber\": \"string\",\n      \"amount\": \"string\",\n      \"currencyCode\": \"string\",\n      \"donorId\": 737,\n      \"donorName\": \"string\",\n      \"donorIsOrganization\": true,\n      \"frequency\": \"string\",\n      \"total\": \"string\",\n      \"successfulCycles\": 8352,\n      \"nextChargeDate\": \"string\",\n      \"status\": 1,\n      \"statusText\": \"string\",\n      \"projects\": [\n        \"string\",\n        \"string\"\n      ],\n      \"allowedEdit\": false,\n      \"metadata\": [\n        \"string\",\n        \"string\"\n      ],\n      \"isAnonymous\": false,\n      \"donorCoverCosts\": false,\n      \"crmKey\": \"string\",\n      \"currencyExchange\": {\n        \"nativeAmount\": \"string\",\n        \"nativeCurrencyCode\": \"string\",\n        \"settledExchangeRate\": 9254.050266090528,\n        \"settledAmount\": \"string\",\n        \"settledCurrencyCode\": \"string\",\n        \"baseExchangeRate\": 3459.3532391767235,\n        \"baseAmount\": \"string\",\n        \"baseCurrencyCode\": \"string\",\n        \"isDifferentCurrency\": true\n      }\n    }\n  ],\n  \"total\": 6837\n}"},{"id":"ce5dbfaf-f318-4ca4-b91d-6f9c082f7864","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"filter\": \"string\",\n  \"skip\": 7689,\n  \"take\": 1304,\n  \"sortBy\": \"createdate\",\n  \"descending\": true,\n  \"queryType\": 3,\n  \"groups\": [\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 4,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 19,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    },\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    }\n  ],\n  \"selectedColumns\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/RecurringGift/query"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"f10b04e1-964e-4fef-a982-c03feaadbb60"},{"name":"Get a specific recurring gift by ID.","id":"0b177521-fa95-4ed3-aaf0-a4b7211a8ad7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/RecurringGift/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","RecurringGift",":id"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"506f4d4f-2404-448a-9825-932425c6df0f","description":{"content":"<p>The ID of the recurring gift.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"22c5e996-d2ca-4270-a0c6-b0d2564e4641","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/RecurringGift/:id","host":["https://prod-api.raisedonors.com"],"path":["api","RecurringGift",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the recurring gift."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 2199,\n  \"organizationId\": 6717,\n  \"createdDate\": \"string\",\n  \"modifiedDate\": \"string\",\n  \"profileNumber\": \"string\",\n  \"amount\": 9219.779246363552,\n  \"currencyCode\": \"string\",\n  \"baseCurrencyCode\": \"string\",\n  \"formattedAmount\": \"string\",\n  \"donor\": {\n    \"id\": 7712,\n    \"name\": \"string\",\n    \"title\": \"string\",\n    \"firstName\": \"string\",\n    \"middleName\": \"string\",\n    \"lastName\": \"string\",\n    \"suffix\": \"string\",\n    \"email\": \"string\",\n    \"phone\": \"string\",\n    \"createdDate\": \"string\",\n    \"modifiedDate\": \"string\",\n    \"notes\": \"string\",\n    \"isOrganization\": false,\n    \"organizationName\": \"string\",\n    \"crmKeyUrls\": {\n      \"key_0\": {\n        \"crmKey\": \"string\",\n        \"url\": \"string\"\n      },\n      \"key_1\": {\n        \"crmKey\": \"string\",\n        \"url\": \"string\"\n      },\n      \"key_2\": {\n        \"crmKey\": \"string\",\n        \"url\": \"string\"\n      }\n    },\n    \"crmKey\": \"string\",\n    \"crmSecondKey\": \"string\",\n    \"isTestMode\": true,\n    \"isArchived\": true,\n    \"isGDPRDeleted\": false,\n    \"primaryAddress\": {\n      \"address1\": \"string\",\n      \"address2\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"postal\": \"string\",\n      \"countryString\": \"string\",\n      \"addressType\": 2,\n      \"addressTypeDisplay\": \"string\"\n    },\n    \"donorAddresses\": [\n      {\n        \"address1\": \"string\",\n        \"address2\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"postal\": \"string\",\n        \"countryString\": \"string\",\n        \"addressType\": 3,\n        \"addressTypeDisplay\": \"string\"\n      },\n      {\n        \"address1\": \"string\",\n        \"address2\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"postal\": \"string\",\n        \"countryString\": \"string\",\n        \"addressType\": 4,\n        \"addressTypeDisplay\": \"string\"\n      }\n    ],\n    \"donorEmailAddresses\": [\n      {\n        \"id\": 2008,\n        \"donorId\": 4154,\n        \"type\": 0,\n        \"typeDisplay\": \"string\",\n        \"value\": \"string\",\n        \"secondaryValue\": \"string\",\n        \"isPrimary\": true,\n        \"isOptedIn\": true,\n        \"isValid\": false,\n        \"isEmail\": true,\n        \"isPhone\": true,\n        \"isBounced\": true,\n        \"countryCode\": \"string\"\n      },\n      {\n        \"id\": 6805,\n        \"donorId\": 9319,\n        \"type\": 22,\n        \"typeDisplay\": \"string\",\n        \"value\": \"string\",\n        \"secondaryValue\": \"string\",\n        \"isPrimary\": false,\n        \"isOptedIn\": false,\n        \"isValid\": false,\n        \"isEmail\": true,\n        \"isPhone\": true,\n        \"isBounced\": false,\n        \"countryCode\": \"string\"\n      }\n    ],\n    \"donorPhoneNumbers\": [\n      {\n        \"id\": 1008,\n        \"donorId\": 9674,\n        \"type\": 10,\n        \"typeDisplay\": \"string\",\n        \"value\": \"string\",\n        \"secondaryValue\": \"string\",\n        \"isPrimary\": true,\n        \"isOptedIn\": true,\n        \"isValid\": true,\n        \"isEmail\": true,\n        \"isPhone\": true,\n        \"isBounced\": true,\n        \"countryCode\": \"string\"\n      },\n      {\n        \"id\": 4395,\n        \"donorId\": 1294,\n        \"type\": 11,\n        \"typeDisplay\": \"string\",\n        \"value\": \"string\",\n        \"secondaryValue\": \"string\",\n        \"isPrimary\": true,\n        \"isOptedIn\": false,\n        \"isValid\": true,\n        \"isEmail\": true,\n        \"isPhone\": false,\n        \"isBounced\": false,\n        \"countryCode\": \"string\"\n      }\n    ]\n  },\n  \"frequency\": 26,\n  \"formattedFrequency\": \"string\",\n  \"total\": 5480.549728962143,\n  \"formattedTotal\": \"string\",\n  \"successfulCycles\": 4162,\n  \"startDate\": \"2002-10-17T22:27:54.830Z\",\n  \"startDateFormatted\": \"string\",\n  \"nextChargeDate\": \"1951-04-25T22:23:14.855Z\",\n  \"nextChargeDateFormatted\": \"string\",\n  \"nextChargeDateEditFormatted\": \"string\",\n  \"status\": 6,\n  \"statusText\": \"string\",\n  \"gatewayId\": 2051,\n  \"gateway\": \"string\",\n  \"paymentInfo\": \"string\",\n  \"expMonthAndYear\": \"string\",\n  \"cardBrand\": \"string\",\n  \"paymentMethodCountryCode\": \"string\",\n  \"projectAllocation\": [\n    {\n      \"projectId\": 6105,\n      \"projectName\": \"string\",\n      \"amount\": 1805.6517676290373,\n      \"formattedAmount\": \"string\"\n    },\n    {\n      \"projectId\": 5687,\n      \"projectName\": \"string\",\n      \"amount\": 3217.109547761916,\n      \"formattedAmount\": \"string\"\n    }\n  ],\n  \"isAnonymous\": false,\n  \"isTestMode\": true,\n  \"donorCoverCosts\": true,\n  \"motivationCode\": \"string\",\n  \"sourceCode\": \"string\",\n  \"segmentId\": 1429,\n  \"segmentName\": \"string\",\n  \"segmentCode\": \"string\",\n  \"notes\": \"string\",\n  \"comments\": \"string\",\n  \"premium\": {\n    \"id\": 4527,\n    \"currency\": \"string\",\n    \"name\": \"string\",\n    \"nameShort\": \"string\",\n    \"code\": \"string\",\n    \"description\": \"string\",\n    \"isActive\": false,\n    \"price\": 5555.33709536375,\n    \"formattedPrice\": \"string\",\n    \"fairMarketValue\": 7738.611321003747,\n    \"formattedFairMarketValue\": \"string\",\n    \"inventory\": 2684,\n    \"keepActiveWhenHasNoInventory\": true,\n    \"recurringPremiumId\": 3929,\n    \"recurringPremiumName\": \"string\",\n    \"image\": \"string\",\n    \"externalIdentifier\": \"string\",\n    \"otherMinimumAmounts\": [\n      {\n        \"currency\": \"string\",\n        \"value\": 4081.979602093746\n      },\n      {\n        \"currency\": \"string\",\n        \"value\": 7133.597011815722\n      }\n    ]\n  },\n  \"recurringPremium\": {\n    \"id\": 2468,\n    \"currency\": \"string\",\n    \"name\": \"string\",\n    \"nameShort\": \"string\",\n    \"code\": \"string\",\n    \"description\": \"string\",\n    \"isActive\": false,\n    \"price\": 5486.51832806301,\n    \"formattedPrice\": \"string\",\n    \"fairMarketValue\": 8291.189003348978,\n    \"formattedFairMarketValue\": \"string\",\n    \"inventory\": 5586,\n    \"keepActiveWhenHasNoInventory\": true,\n    \"recurringPremiumId\": 8004,\n    \"recurringPremiumName\": \"string\",\n    \"image\": \"string\",\n    \"externalIdentifier\": \"string\",\n    \"otherMinimumAmounts\": [\n      {\n        \"currency\": \"string\",\n        \"value\": 9452.862370716855\n      },\n      {\n        \"currency\": \"string\",\n        \"value\": 8234.123026882962\n      }\n    ]\n  },\n  \"paymentProviderType\": 3,\n  \"crmKey\": \"string\",\n  \"crmKeyUrls\": {\n    \"key_0\": {\n      \"crmKey\": \"string\",\n      \"url\": \"string\"\n    }\n  },\n  \"page\": {\n    \"id\": 6382,\n    \"name\": \"string\",\n    \"internalName\": \"string\",\n    \"internalDisplayName\": \"string\",\n    \"slug\": \"string\",\n    \"isPublished\": true,\n    \"publicId\": \"e61cb2a8-f5cc-5a7a-9f45-9ef0095847e0\",\n    \"type\": 0,\n    \"typeDisplayName\": \"string\",\n    \"formType\": 0,\n    \"externalReferenceId\": \"01c135b4-8078-af22-f12f-f3ce491b4043\",\n    \"json\": \"string\",\n    \"gatewayId\": 7417,\n    \"merchantAccount\": \"string\",\n    \"merchantType\": 1,\n    \"tokenizationKey\": \"string\",\n    \"payPalGatewayId\": 4213,\n    \"payPalMerchantAccount\": \"string\",\n    \"payPalTokenizationKey\": \"string\",\n    \"defaultSegmentId\": 3960,\n    \"defaultSegmentName\": \"string\",\n    \"defaultSegmentCode\": \"string\",\n    \"defaultLanguage\": \"string\",\n    \"isTranslationEnabled\": true,\n    \"defaultCampaignId\": 8302,\n    \"defaultProjectId\": 5891,\n    \"defaultProjectName\": \"string\",\n    \"defaultProjectCode\": \"string\",\n    \"isExpireEnabled\": true,\n    \"expireDateTimeUtc\": \"2008-12-11T19:46:05.646Z\",\n    \"redirectPageId\": 2739,\n    \"redirectPageName\": \"string\",\n    \"redirectUrl\": \"string\",\n    \"autoArchiveOnExpire\": true,\n    \"designSettings\": {\n      \"websiteUrl\": \"string\",\n      \"logoUrl\": \"string\",\n      \"faviconUrl\": \"string\",\n      \"primaryColor\": \"string\",\n      \"secondaryColor\": \"string\",\n      \"backgroundColor\": \"string\",\n      \"headerColor\": \"string\",\n      \"headerTextColor\": \"string\",\n      \"bodyTextColor\": \"string\",\n      \"footerColor\": \"string\",\n      \"footerTextColor\": \"string\",\n      \"buttonColor\": \"string\",\n      \"buttonTextColor\": \"string\",\n      \"buttonHoverColor\": \"string\",\n      \"buttonHoverTextColor\": \"string\",\n      \"linkColor\": \"string\",\n      \"fieldLabelColor\": \"string\",\n      \"fieldBorderColor\": \"string\",\n      \"borderRadius\": \"string\",\n      \"fontFamily\": \"string\",\n      \"globalCss\": \"string\",\n      \"globalJs\": \"string\"\n    },\n    \"integrations\": [\n      {\n        \"id\": 633,\n        \"name\": \"string\",\n        \"publicKey\": \"string\",\n        \"integrationType\": 3\n      },\n      {\n        \"id\": 4701,\n        \"name\": \"string\",\n        \"publicKey\": \"string\",\n        \"integrationType\": 9\n      }\n    ],\n    \"confirmationEmailId\": 6811,\n    \"confirmationEmailName\": \"string\",\n    \"recurringEmailId\": 977,\n    \"recurringEmailName\": \"string\",\n    \"acknowledgementEmailId\": 4783,\n    \"acknowledgementEmailName\": \"string\",\n    \"hasMinAmount\": false,\n    \"minAmount\": 8093.409736471298,\n    \"minAmountMessage\": \"string\",\n    \"hasExperiment\": true,\n    \"pageExperimentId\": 3455,\n    \"experimentStatus\": 6,\n    \"createdDateTime\": \"string\",\n    \"modifiedDateTime\": \"string\"\n  },\n  \"merchantType\": 5,\n  \"merchantAccount\": \"string\",\n  \"tokenizationKey\": \"string\",\n  \"paymentTenderType\": 11,\n  \"gatewayCustomerKey\": \"string\",\n  \"hasPaymentFailed\": false,\n  \"isLegacy\": false,\n  \"currencyExchange\": {\n    \"nativeAmount\": \"string\",\n    \"nativeCurrencyCode\": \"string\",\n    \"settledExchangeRate\": 8264.173693595123,\n    \"settledAmount\": \"string\",\n    \"settledCurrencyCode\": \"string\",\n    \"baseExchangeRate\": 3329.6755276300273,\n    \"baseAmount\": \"string\",\n    \"baseCurrencyCode\": \"string\",\n    \"isDifferentCurrency\": true\n  },\n  \"tribute\": {\n    \"isInMemoryOf\": false,\n    \"isInHonorOf\": true,\n    \"nameOrOccasion\": \"string\",\n    \"tributeFirstName\": \"string\",\n    \"tributeLastName\": \"string\",\n    \"tributeAddress1\": \"string\",\n    \"tributeAddress2\": \"string\",\n    \"tributeCity\": \"string\",\n    \"tributeState\": \"string\",\n    \"tributeCountry\": \"string\",\n    \"tributePostal\": \"string\",\n    \"acknowledgeeFirstName\": \"string\",\n    \"acknowledgeeLastName\": \"string\",\n    \"sendByEmail\": false,\n    \"acknowledgeeEmailAddress\": \"string\",\n    \"sendByPostal\": true,\n    \"acknowledgeeAddress1\": \"string\",\n    \"acknowledgeeAddress2\": \"string\",\n    \"acknowledgeeCity\": \"string\",\n    \"acknowledgeeState\": \"string\",\n    \"acknowledgeeCountry\": \"string\",\n    \"acknowledgeePostal\": \"string\",\n    \"message\": \"string\"\n  }\n}"},{"id":"c51b6379-5bbe-486a-bf97-545f014fcc48","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/RecurringGift/:id","host":["https://prod-api.raisedonors.com"],"path":["api","RecurringGift",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the recurring gift."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"0b177521-fa95-4ed3-aaf0-a4b7211a8ad7"},{"name":"Update a specific recurring gift.","id":"29d76399-bfa3-4c83-87d9-ec107bafa1e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"frequency\": 52,\n  \"gatewayId\": 855,\n  \"nextChargeDate\": \"1979-11-24T22:26:04.383Z\",\n  \"profileNumber\": \"string\",\n  \"amount\": 2417.9869241001084,\n  \"currencyCode\": \"string\",\n  \"donorId\": 4387,\n  \"status\": 6,\n  \"projects\": [\n    {\n      \"projectId\": 3875,\n      \"amount\": 488054006460.1352\n    },\n    {\n      \"projectId\": 121,\n      \"amount\": 576593369599.5605\n    }\n  ],\n  \"donorCoverCosts\": false,\n  \"costs\": 3316.9185065151964,\n  \"isAnonymous\": false,\n  \"motivationCode\": \"string\",\n  \"sourceCode\": \"string\",\n  \"segmentId\": 8905,\n  \"segmentCode\": \"string\",\n  \"premiumId\": 1688,\n  \"crmKey\": \"string\",\n  \"notes\": \"string\",\n  \"pageId\": 9619,\n  \"virtualTerminalId\": 4111,\n  \"paymentMethodId\": \"string\",\n  \"billingAddress\": {\n    \"address1\": \"string\",\n    \"address2\": \"string\",\n    \"city\": \"string\",\n    \"state\": \"string\",\n    \"postal\": \"string\",\n    \"countryString\": \"string\",\n    \"addressType\": 4\n  },\n  \"paymentTenderType\": 1,\n  \"cardExpMonth\": 1298,\n  \"cardExpYear\": 6324,\n  \"cardBrand\": \"string\",\n  \"cardNumber\": \"string\",\n  \"total\": 668.4226256261372,\n  \"startDate\": \"1953-05-21T17:31:54.169Z\",\n  \"gatewayCustomerKey\": \"string\",\n  \"achNumber\": \"string\",\n  \"achType\": \"string\",\n  \"virtuousDonorId\": \"9731c044-5dfb-2e9c-efd2-bb47140d07db\",\n  \"billingAddressId\": 1647,\n  \"shippingAddressId\": 7800,\n  \"timeZone\": \"string\",\n  \"campaignId\": 1774,\n  \"campaignName\": \"string\",\n  \"successfulCycles\": 4800\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/RecurringGift/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","RecurringGift",":id"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"c54b9b91-cba8-420f-a45d-6c1a34cd9ddc","description":{"content":"<p>The ID of the recurring gift.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"02633ea0-9d17-42f2-998e-a38aa33f7b27","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"frequency\": 52,\n  \"gatewayId\": 855,\n  \"nextChargeDate\": \"1979-11-24T22:26:04.383Z\",\n  \"profileNumber\": \"string\",\n  \"amount\": 2417.9869241001084,\n  \"currencyCode\": \"string\",\n  \"donorId\": 4387,\n  \"status\": 6,\n  \"projects\": [\n    {\n      \"projectId\": 3875,\n      \"amount\": 488054006460.1352\n    },\n    {\n      \"projectId\": 121,\n      \"amount\": 576593369599.5605\n    }\n  ],\n  \"donorCoverCosts\": false,\n  \"costs\": 3316.9185065151964,\n  \"isAnonymous\": false,\n  \"motivationCode\": \"string\",\n  \"sourceCode\": \"string\",\n  \"segmentId\": 8905,\n  \"segmentCode\": \"string\",\n  \"premiumId\": 1688,\n  \"crmKey\": \"string\",\n  \"notes\": \"string\",\n  \"pageId\": 9619,\n  \"virtualTerminalId\": 4111,\n  \"paymentMethodId\": \"string\",\n  \"billingAddress\": {\n    \"address1\": \"string\",\n    \"address2\": \"string\",\n    \"city\": \"string\",\n    \"state\": \"string\",\n    \"postal\": \"string\",\n    \"countryString\": \"string\",\n    \"addressType\": 4\n  },\n  \"paymentTenderType\": 1,\n  \"cardExpMonth\": 1298,\n  \"cardExpYear\": 6324,\n  \"cardBrand\": \"string\",\n  \"cardNumber\": \"string\",\n  \"total\": 668.4226256261372,\n  \"startDate\": \"1953-05-21T17:31:54.169Z\",\n  \"gatewayCustomerKey\": \"string\",\n  \"achNumber\": \"string\",\n  \"achType\": \"string\",\n  \"virtuousDonorId\": \"9731c044-5dfb-2e9c-efd2-bb47140d07db\",\n  \"billingAddressId\": 1647,\n  \"shippingAddressId\": 7800,\n  \"timeZone\": \"string\",\n  \"campaignId\": 1774,\n  \"campaignName\": \"string\",\n  \"successfulCycles\": 4800\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/RecurringGift/:id","host":["https://prod-api.raisedonors.com"],"path":["api","RecurringGift",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the recurring gift."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 2199,\n  \"organizationId\": 6717,\n  \"createdDate\": \"string\",\n  \"modifiedDate\": \"string\",\n  \"profileNumber\": \"string\",\n  \"amount\": 9219.779246363552,\n  \"currencyCode\": \"string\",\n  \"baseCurrencyCode\": \"string\",\n  \"formattedAmount\": \"string\",\n  \"donor\": {\n    \"id\": 7712,\n    \"name\": \"string\",\n    \"title\": \"string\",\n    \"firstName\": \"string\",\n    \"middleName\": \"string\",\n    \"lastName\": \"string\",\n    \"suffix\": \"string\",\n    \"email\": \"string\",\n    \"phone\": \"string\",\n    \"createdDate\": \"string\",\n    \"modifiedDate\": \"string\",\n    \"notes\": \"string\",\n    \"isOrganization\": false,\n    \"organizationName\": \"string\",\n    \"crmKeyUrls\": {\n      \"key_0\": {\n        \"crmKey\": \"string\",\n        \"url\": \"string\"\n      },\n      \"key_1\": {\n        \"crmKey\": \"string\",\n        \"url\": \"string\"\n      },\n      \"key_2\": {\n        \"crmKey\": \"string\",\n        \"url\": \"string\"\n      }\n    },\n    \"crmKey\": \"string\",\n    \"crmSecondKey\": \"string\",\n    \"isTestMode\": true,\n    \"isArchived\": true,\n    \"isGDPRDeleted\": false,\n    \"primaryAddress\": {\n      \"address1\": \"string\",\n      \"address2\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"postal\": \"string\",\n      \"countryString\": \"string\",\n      \"addressType\": 2,\n      \"addressTypeDisplay\": \"string\"\n    },\n    \"donorAddresses\": [\n      {\n        \"address1\": \"string\",\n        \"address2\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"postal\": \"string\",\n        \"countryString\": \"string\",\n        \"addressType\": 3,\n        \"addressTypeDisplay\": \"string\"\n      },\n      {\n        \"address1\": \"string\",\n        \"address2\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"postal\": \"string\",\n        \"countryString\": \"string\",\n        \"addressType\": 4,\n        \"addressTypeDisplay\": \"string\"\n      }\n    ],\n    \"donorEmailAddresses\": [\n      {\n        \"id\": 2008,\n        \"donorId\": 4154,\n        \"type\": 0,\n        \"typeDisplay\": \"string\",\n        \"value\": \"string\",\n        \"secondaryValue\": \"string\",\n        \"isPrimary\": true,\n        \"isOptedIn\": true,\n        \"isValid\": false,\n        \"isEmail\": true,\n        \"isPhone\": true,\n        \"isBounced\": true,\n        \"countryCode\": \"string\"\n      },\n      {\n        \"id\": 6805,\n        \"donorId\": 9319,\n        \"type\": 22,\n        \"typeDisplay\": \"string\",\n        \"value\": \"string\",\n        \"secondaryValue\": \"string\",\n        \"isPrimary\": false,\n        \"isOptedIn\": false,\n        \"isValid\": false,\n        \"isEmail\": true,\n        \"isPhone\": true,\n        \"isBounced\": false,\n        \"countryCode\": \"string\"\n      }\n    ],\n    \"donorPhoneNumbers\": [\n      {\n        \"id\": 1008,\n        \"donorId\": 9674,\n        \"type\": 10,\n        \"typeDisplay\": \"string\",\n        \"value\": \"string\",\n        \"secondaryValue\": \"string\",\n        \"isPrimary\": true,\n        \"isOptedIn\": true,\n        \"isValid\": true,\n        \"isEmail\": true,\n        \"isPhone\": true,\n        \"isBounced\": true,\n        \"countryCode\": \"string\"\n      },\n      {\n        \"id\": 4395,\n        \"donorId\": 1294,\n        \"type\": 11,\n        \"typeDisplay\": \"string\",\n        \"value\": \"string\",\n        \"secondaryValue\": \"string\",\n        \"isPrimary\": true,\n        \"isOptedIn\": false,\n        \"isValid\": true,\n        \"isEmail\": true,\n        \"isPhone\": false,\n        \"isBounced\": false,\n        \"countryCode\": \"string\"\n      }\n    ]\n  },\n  \"frequency\": 26,\n  \"formattedFrequency\": \"string\",\n  \"total\": 5480.549728962143,\n  \"formattedTotal\": \"string\",\n  \"successfulCycles\": 4162,\n  \"startDate\": \"2002-10-17T22:27:54.830Z\",\n  \"startDateFormatted\": \"string\",\n  \"nextChargeDate\": \"1951-04-25T22:23:14.855Z\",\n  \"nextChargeDateFormatted\": \"string\",\n  \"nextChargeDateEditFormatted\": \"string\",\n  \"status\": 6,\n  \"statusText\": \"string\",\n  \"gatewayId\": 2051,\n  \"gateway\": \"string\",\n  \"paymentInfo\": \"string\",\n  \"expMonthAndYear\": \"string\",\n  \"cardBrand\": \"string\",\n  \"paymentMethodCountryCode\": \"string\",\n  \"projectAllocation\": [\n    {\n      \"projectId\": 6105,\n      \"projectName\": \"string\",\n      \"amount\": 1805.6517676290373,\n      \"formattedAmount\": \"string\"\n    },\n    {\n      \"projectId\": 5687,\n      \"projectName\": \"string\",\n      \"amount\": 3217.109547761916,\n      \"formattedAmount\": \"string\"\n    }\n  ],\n  \"isAnonymous\": false,\n  \"isTestMode\": true,\n  \"donorCoverCosts\": true,\n  \"motivationCode\": \"string\",\n  \"sourceCode\": \"string\",\n  \"segmentId\": 1429,\n  \"segmentName\": \"string\",\n  \"segmentCode\": \"string\",\n  \"notes\": \"string\",\n  \"comments\": \"string\",\n  \"premium\": {\n    \"id\": 4527,\n    \"currency\": \"string\",\n    \"name\": \"string\",\n    \"nameShort\": \"string\",\n    \"code\": \"string\",\n    \"description\": \"string\",\n    \"isActive\": false,\n    \"price\": 5555.33709536375,\n    \"formattedPrice\": \"string\",\n    \"fairMarketValue\": 7738.611321003747,\n    \"formattedFairMarketValue\": \"string\",\n    \"inventory\": 2684,\n    \"keepActiveWhenHasNoInventory\": true,\n    \"recurringPremiumId\": 3929,\n    \"recurringPremiumName\": \"string\",\n    \"image\": \"string\",\n    \"externalIdentifier\": \"string\",\n    \"otherMinimumAmounts\": [\n      {\n        \"currency\": \"string\",\n        \"value\": 4081.979602093746\n      },\n      {\n        \"currency\": \"string\",\n        \"value\": 7133.597011815722\n      }\n    ]\n  },\n  \"recurringPremium\": {\n    \"id\": 2468,\n    \"currency\": \"string\",\n    \"name\": \"string\",\n    \"nameShort\": \"string\",\n    \"code\": \"string\",\n    \"description\": \"string\",\n    \"isActive\": false,\n    \"price\": 5486.51832806301,\n    \"formattedPrice\": \"string\",\n    \"fairMarketValue\": 8291.189003348978,\n    \"formattedFairMarketValue\": \"string\",\n    \"inventory\": 5586,\n    \"keepActiveWhenHasNoInventory\": true,\n    \"recurringPremiumId\": 8004,\n    \"recurringPremiumName\": \"string\",\n    \"image\": \"string\",\n    \"externalIdentifier\": \"string\",\n    \"otherMinimumAmounts\": [\n      {\n        \"currency\": \"string\",\n        \"value\": 9452.862370716855\n      },\n      {\n        \"currency\": \"string\",\n        \"value\": 8234.123026882962\n      }\n    ]\n  },\n  \"paymentProviderType\": 3,\n  \"crmKey\": \"string\",\n  \"crmKeyUrls\": {\n    \"key_0\": {\n      \"crmKey\": \"string\",\n      \"url\": \"string\"\n    }\n  },\n  \"page\": {\n    \"id\": 6382,\n    \"name\": \"string\",\n    \"internalName\": \"string\",\n    \"internalDisplayName\": \"string\",\n    \"slug\": \"string\",\n    \"isPublished\": true,\n    \"publicId\": \"e61cb2a8-f5cc-5a7a-9f45-9ef0095847e0\",\n    \"type\": 0,\n    \"typeDisplayName\": \"string\",\n    \"formType\": 0,\n    \"externalReferenceId\": \"01c135b4-8078-af22-f12f-f3ce491b4043\",\n    \"json\": \"string\",\n    \"gatewayId\": 7417,\n    \"merchantAccount\": \"string\",\n    \"merchantType\": 1,\n    \"tokenizationKey\": \"string\",\n    \"payPalGatewayId\": 4213,\n    \"payPalMerchantAccount\": \"string\",\n    \"payPalTokenizationKey\": \"string\",\n    \"defaultSegmentId\": 3960,\n    \"defaultSegmentName\": \"string\",\n    \"defaultSegmentCode\": \"string\",\n    \"defaultLanguage\": \"string\",\n    \"isTranslationEnabled\": true,\n    \"defaultCampaignId\": 8302,\n    \"defaultProjectId\": 5891,\n    \"defaultProjectName\": \"string\",\n    \"defaultProjectCode\": \"string\",\n    \"isExpireEnabled\": true,\n    \"expireDateTimeUtc\": \"2008-12-11T19:46:05.646Z\",\n    \"redirectPageId\": 2739,\n    \"redirectPageName\": \"string\",\n    \"redirectUrl\": \"string\",\n    \"autoArchiveOnExpire\": true,\n    \"designSettings\": {\n      \"websiteUrl\": \"string\",\n      \"logoUrl\": \"string\",\n      \"faviconUrl\": \"string\",\n      \"primaryColor\": \"string\",\n      \"secondaryColor\": \"string\",\n      \"backgroundColor\": \"string\",\n      \"headerColor\": \"string\",\n      \"headerTextColor\": \"string\",\n      \"bodyTextColor\": \"string\",\n      \"footerColor\": \"string\",\n      \"footerTextColor\": \"string\",\n      \"buttonColor\": \"string\",\n      \"buttonTextColor\": \"string\",\n      \"buttonHoverColor\": \"string\",\n      \"buttonHoverTextColor\": \"string\",\n      \"linkColor\": \"string\",\n      \"fieldLabelColor\": \"string\",\n      \"fieldBorderColor\": \"string\",\n      \"borderRadius\": \"string\",\n      \"fontFamily\": \"string\",\n      \"globalCss\": \"string\",\n      \"globalJs\": \"string\"\n    },\n    \"integrations\": [\n      {\n        \"id\": 633,\n        \"name\": \"string\",\n        \"publicKey\": \"string\",\n        \"integrationType\": 3\n      },\n      {\n        \"id\": 4701,\n        \"name\": \"string\",\n        \"publicKey\": \"string\",\n        \"integrationType\": 9\n      }\n    ],\n    \"confirmationEmailId\": 6811,\n    \"confirmationEmailName\": \"string\",\n    \"recurringEmailId\": 977,\n    \"recurringEmailName\": \"string\",\n    \"acknowledgementEmailId\": 4783,\n    \"acknowledgementEmailName\": \"string\",\n    \"hasMinAmount\": false,\n    \"minAmount\": 8093.409736471298,\n    \"minAmountMessage\": \"string\",\n    \"hasExperiment\": true,\n    \"pageExperimentId\": 3455,\n    \"experimentStatus\": 6,\n    \"createdDateTime\": \"string\",\n    \"modifiedDateTime\": \"string\"\n  },\n  \"merchantType\": 5,\n  \"merchantAccount\": \"string\",\n  \"tokenizationKey\": \"string\",\n  \"paymentTenderType\": 11,\n  \"gatewayCustomerKey\": \"string\",\n  \"hasPaymentFailed\": false,\n  \"isLegacy\": false,\n  \"currencyExchange\": {\n    \"nativeAmount\": \"string\",\n    \"nativeCurrencyCode\": \"string\",\n    \"settledExchangeRate\": 8264.173693595123,\n    \"settledAmount\": \"string\",\n    \"settledCurrencyCode\": \"string\",\n    \"baseExchangeRate\": 3329.6755276300273,\n    \"baseAmount\": \"string\",\n    \"baseCurrencyCode\": \"string\",\n    \"isDifferentCurrency\": true\n  },\n  \"tribute\": {\n    \"isInMemoryOf\": false,\n    \"isInHonorOf\": true,\n    \"nameOrOccasion\": \"string\",\n    \"tributeFirstName\": \"string\",\n    \"tributeLastName\": \"string\",\n    \"tributeAddress1\": \"string\",\n    \"tributeAddress2\": \"string\",\n    \"tributeCity\": \"string\",\n    \"tributeState\": \"string\",\n    \"tributeCountry\": \"string\",\n    \"tributePostal\": \"string\",\n    \"acknowledgeeFirstName\": \"string\",\n    \"acknowledgeeLastName\": \"string\",\n    \"sendByEmail\": false,\n    \"acknowledgeeEmailAddress\": \"string\",\n    \"sendByPostal\": true,\n    \"acknowledgeeAddress1\": \"string\",\n    \"acknowledgeeAddress2\": \"string\",\n    \"acknowledgeeCity\": \"string\",\n    \"acknowledgeeState\": \"string\",\n    \"acknowledgeeCountry\": \"string\",\n    \"acknowledgeePostal\": \"string\",\n    \"message\": \"string\"\n  }\n}"},{"id":"7340d1b1-90f7-4c89-ad9a-2ccd63a4778e","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"frequency\": 52,\n  \"gatewayId\": 855,\n  \"nextChargeDate\": \"1979-11-24T22:26:04.383Z\",\n  \"profileNumber\": \"string\",\n  \"amount\": 2417.9869241001084,\n  \"currencyCode\": \"string\",\n  \"donorId\": 4387,\n  \"status\": 6,\n  \"projects\": [\n    {\n      \"projectId\": 3875,\n      \"amount\": 488054006460.1352\n    },\n    {\n      \"projectId\": 121,\n      \"amount\": 576593369599.5605\n    }\n  ],\n  \"donorCoverCosts\": false,\n  \"costs\": 3316.9185065151964,\n  \"isAnonymous\": false,\n  \"motivationCode\": \"string\",\n  \"sourceCode\": \"string\",\n  \"segmentId\": 8905,\n  \"segmentCode\": \"string\",\n  \"premiumId\": 1688,\n  \"crmKey\": \"string\",\n  \"notes\": \"string\",\n  \"pageId\": 9619,\n  \"virtualTerminalId\": 4111,\n  \"paymentMethodId\": \"string\",\n  \"billingAddress\": {\n    \"address1\": \"string\",\n    \"address2\": \"string\",\n    \"city\": \"string\",\n    \"state\": \"string\",\n    \"postal\": \"string\",\n    \"countryString\": \"string\",\n    \"addressType\": 4\n  },\n  \"paymentTenderType\": 1,\n  \"cardExpMonth\": 1298,\n  \"cardExpYear\": 6324,\n  \"cardBrand\": \"string\",\n  \"cardNumber\": \"string\",\n  \"total\": 668.4226256261372,\n  \"startDate\": \"1953-05-21T17:31:54.169Z\",\n  \"gatewayCustomerKey\": \"string\",\n  \"achNumber\": \"string\",\n  \"achType\": \"string\",\n  \"virtuousDonorId\": \"9731c044-5dfb-2e9c-efd2-bb47140d07db\",\n  \"billingAddressId\": 1647,\n  \"shippingAddressId\": 7800,\n  \"timeZone\": \"string\",\n  \"campaignId\": 1774,\n  \"campaignName\": \"string\",\n  \"successfulCycles\": 4800\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/RecurringGift/:id","host":["https://prod-api.raisedonors.com"],"path":["api","RecurringGift",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the recurring gift."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"29d76399-bfa3-4c83-87d9-ec107bafa1e6"},{"name":"List activities associated with a specific recurring gift.","id":"129f24e0-f615-49a4-808e-b59356ed9457","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/RecurringGift/:id/activities?Filter=string&Skip=8361&Take=8361&SortBy=amount&Descending=true","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","RecurringGift",":id","activities"],"host":["https://prod-api.raisedonors.com"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":{"content":"<p>Field to sort by (case-insensitive). Valid options: amount, donorname, frequency, id, nextchargedate, profilenumber, status, total</p>\n","type":"text/plain"},"key":"SortBy","value":"amount"},{"key":"Descending","value":"true"}],"variable":[{"id":"92f9808e-6aaf-4fa6-ba0d-125da905f232","type":"any","value":"3573","key":"id"}]}},"response":[{"id":"92ee093d-8cd4-453c-b48d-d421db9374df","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/RecurringGift/:id/activities?Filter=string&Skip=8361&Take=8361&SortBy=amount&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","RecurringGift",":id","activities"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: amount, donorname, frequency, id, nextchargedate, profilenumber, status, total","key":"SortBy","value":"amount"},{"key":"Descending","value":"true"}],"variable":[{"key":"id","value":"3573"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 875,\n      \"createdDateTime\": \"string\",\n      \"recurringGiftId\": 3013,\n      \"type\": 3,\n      \"activityOrigin\": 5,\n      \"referenceId\": 5453,\n      \"changedBy\": \"string\",\n      \"gift\": {\n        \"id\": 8805,\n        \"status\": 2,\n        \"createDate\": \"string\",\n        \"amount\": \"string\",\n        \"projects\": [\n          \"string\",\n          \"string\"\n        ],\n        \"paymentInfo\": \"string\",\n        \"transactionId\": \"string\",\n        \"isAnonymous\": true\n      },\n      \"metadata\": \"string\"\n    },\n    {\n      \"id\": 5697,\n      \"createdDateTime\": \"string\",\n      \"recurringGiftId\": 4020,\n      \"type\": 2,\n      \"activityOrigin\": 3,\n      \"referenceId\": 9584,\n      \"changedBy\": \"string\",\n      \"gift\": {\n        \"id\": 3567,\n        \"status\": 12,\n        \"createDate\": \"string\",\n        \"amount\": \"string\",\n        \"projects\": [\n          \"string\",\n          \"string\"\n        ],\n        \"paymentInfo\": \"string\",\n        \"transactionId\": \"string\",\n        \"isAnonymous\": false\n      },\n      \"metadata\": \"string\"\n    }\n  ],\n  \"total\": 3628\n}"},{"id":"ddf2de27-e0a6-4c7a-851a-b39214eb5d28","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/RecurringGift/:id/activities?Filter=string&Skip=8361&Take=8361&SortBy=amount&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","RecurringGift",":id","activities"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: amount, donorname, frequency, id, nextchargedate, profilenumber, status, total","key":"SortBy","value":"amount"},{"key":"Descending","value":"true"}],"variable":[{"key":"id","value":"3573"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"129f24e0-f615-49a4-808e-b59356ed9457"},{"name":"Cancel a specific recurring gift.","id":"88e7296b-2e7b-4114-bcc4-8018300f5773","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/RecurringGift/:id/cancel","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","RecurringGift",":id","cancel"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"00992256-1ad8-42d1-8fb7-c7f8892ad066","description":{"content":"<p>The id of the recurring gift.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"e5f68bb1-be39-4b2e-ae6d-af2bd33769ea","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/RecurringGift/:id/cancel","host":["https://prod-api.raisedonors.com"],"path":["api","RecurringGift",":id","cancel"],"variable":[{"key":"id","value":"3573","description":"The id of the recurring gift."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 2199,\n  \"organizationId\": 6717,\n  \"createdDate\": \"string\",\n  \"modifiedDate\": \"string\",\n  \"profileNumber\": \"string\",\n  \"amount\": 9219.779246363552,\n  \"currencyCode\": \"string\",\n  \"baseCurrencyCode\": \"string\",\n  \"formattedAmount\": \"string\",\n  \"donor\": {\n    \"id\": 7712,\n    \"name\": \"string\",\n    \"title\": \"string\",\n    \"firstName\": \"string\",\n    \"middleName\": \"string\",\n    \"lastName\": \"string\",\n    \"suffix\": \"string\",\n    \"email\": \"string\",\n    \"phone\": \"string\",\n    \"createdDate\": \"string\",\n    \"modifiedDate\": \"string\",\n    \"notes\": \"string\",\n    \"isOrganization\": false,\n    \"organizationName\": \"string\",\n    \"crmKeyUrls\": {\n      \"key_0\": {\n        \"crmKey\": \"string\",\n        \"url\": \"string\"\n      },\n      \"key_1\": {\n        \"crmKey\": \"string\",\n        \"url\": \"string\"\n      },\n      \"key_2\": {\n        \"crmKey\": \"string\",\n        \"url\": \"string\"\n      }\n    },\n    \"crmKey\": \"string\",\n    \"crmSecondKey\": \"string\",\n    \"isTestMode\": true,\n    \"isArchived\": true,\n    \"isGDPRDeleted\": false,\n    \"primaryAddress\": {\n      \"address1\": \"string\",\n      \"address2\": \"string\",\n      \"city\": \"string\",\n      \"state\": \"string\",\n      \"postal\": \"string\",\n      \"countryString\": \"string\",\n      \"addressType\": 2,\n      \"addressTypeDisplay\": \"string\"\n    },\n    \"donorAddresses\": [\n      {\n        \"address1\": \"string\",\n        \"address2\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"postal\": \"string\",\n        \"countryString\": \"string\",\n        \"addressType\": 3,\n        \"addressTypeDisplay\": \"string\"\n      },\n      {\n        \"address1\": \"string\",\n        \"address2\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"postal\": \"string\",\n        \"countryString\": \"string\",\n        \"addressType\": 4,\n        \"addressTypeDisplay\": \"string\"\n      }\n    ],\n    \"donorEmailAddresses\": [\n      {\n        \"id\": 2008,\n        \"donorId\": 4154,\n        \"type\": 0,\n        \"typeDisplay\": \"string\",\n        \"value\": \"string\",\n        \"secondaryValue\": \"string\",\n        \"isPrimary\": true,\n        \"isOptedIn\": true,\n        \"isValid\": false,\n        \"isEmail\": true,\n        \"isPhone\": true,\n        \"isBounced\": true,\n        \"countryCode\": \"string\"\n      },\n      {\n        \"id\": 6805,\n        \"donorId\": 9319,\n        \"type\": 22,\n        \"typeDisplay\": \"string\",\n        \"value\": \"string\",\n        \"secondaryValue\": \"string\",\n        \"isPrimary\": false,\n        \"isOptedIn\": false,\n        \"isValid\": false,\n        \"isEmail\": true,\n        \"isPhone\": true,\n        \"isBounced\": false,\n        \"countryCode\": \"string\"\n      }\n    ],\n    \"donorPhoneNumbers\": [\n      {\n        \"id\": 1008,\n        \"donorId\": 9674,\n        \"type\": 10,\n        \"typeDisplay\": \"string\",\n        \"value\": \"string\",\n        \"secondaryValue\": \"string\",\n        \"isPrimary\": true,\n        \"isOptedIn\": true,\n        \"isValid\": true,\n        \"isEmail\": true,\n        \"isPhone\": true,\n        \"isBounced\": true,\n        \"countryCode\": \"string\"\n      },\n      {\n        \"id\": 4395,\n        \"donorId\": 1294,\n        \"type\": 11,\n        \"typeDisplay\": \"string\",\n        \"value\": \"string\",\n        \"secondaryValue\": \"string\",\n        \"isPrimary\": true,\n        \"isOptedIn\": false,\n        \"isValid\": true,\n        \"isEmail\": true,\n        \"isPhone\": false,\n        \"isBounced\": false,\n        \"countryCode\": \"string\"\n      }\n    ]\n  },\n  \"frequency\": 26,\n  \"formattedFrequency\": \"string\",\n  \"total\": 5480.549728962143,\n  \"formattedTotal\": \"string\",\n  \"successfulCycles\": 4162,\n  \"startDate\": \"2002-10-17T22:27:54.830Z\",\n  \"startDateFormatted\": \"string\",\n  \"nextChargeDate\": \"1951-04-25T22:23:14.855Z\",\n  \"nextChargeDateFormatted\": \"string\",\n  \"nextChargeDateEditFormatted\": \"string\",\n  \"status\": 6,\n  \"statusText\": \"string\",\n  \"gatewayId\": 2051,\n  \"gateway\": \"string\",\n  \"paymentInfo\": \"string\",\n  \"expMonthAndYear\": \"string\",\n  \"cardBrand\": \"string\",\n  \"paymentMethodCountryCode\": \"string\",\n  \"projectAllocation\": [\n    {\n      \"projectId\": 6105,\n      \"projectName\": \"string\",\n      \"amount\": 1805.6517676290373,\n      \"formattedAmount\": \"string\"\n    },\n    {\n      \"projectId\": 5687,\n      \"projectName\": \"string\",\n      \"amount\": 3217.109547761916,\n      \"formattedAmount\": \"string\"\n    }\n  ],\n  \"isAnonymous\": false,\n  \"isTestMode\": true,\n  \"donorCoverCosts\": true,\n  \"motivationCode\": \"string\",\n  \"sourceCode\": \"string\",\n  \"segmentId\": 1429,\n  \"segmentName\": \"string\",\n  \"segmentCode\": \"string\",\n  \"notes\": \"string\",\n  \"comments\": \"string\",\n  \"premium\": {\n    \"id\": 4527,\n    \"currency\": \"string\",\n    \"name\": \"string\",\n    \"nameShort\": \"string\",\n    \"code\": \"string\",\n    \"description\": \"string\",\n    \"isActive\": false,\n    \"price\": 5555.33709536375,\n    \"formattedPrice\": \"string\",\n    \"fairMarketValue\": 7738.611321003747,\n    \"formattedFairMarketValue\": \"string\",\n    \"inventory\": 2684,\n    \"keepActiveWhenHasNoInventory\": true,\n    \"recurringPremiumId\": 3929,\n    \"recurringPremiumName\": \"string\",\n    \"image\": \"string\",\n    \"externalIdentifier\": \"string\",\n    \"otherMinimumAmounts\": [\n      {\n        \"currency\": \"string\",\n        \"value\": 4081.979602093746\n      },\n      {\n        \"currency\": \"string\",\n        \"value\": 7133.597011815722\n      }\n    ]\n  },\n  \"recurringPremium\": {\n    \"id\": 2468,\n    \"currency\": \"string\",\n    \"name\": \"string\",\n    \"nameShort\": \"string\",\n    \"code\": \"string\",\n    \"description\": \"string\",\n    \"isActive\": false,\n    \"price\": 5486.51832806301,\n    \"formattedPrice\": \"string\",\n    \"fairMarketValue\": 8291.189003348978,\n    \"formattedFairMarketValue\": \"string\",\n    \"inventory\": 5586,\n    \"keepActiveWhenHasNoInventory\": true,\n    \"recurringPremiumId\": 8004,\n    \"recurringPremiumName\": \"string\",\n    \"image\": \"string\",\n    \"externalIdentifier\": \"string\",\n    \"otherMinimumAmounts\": [\n      {\n        \"currency\": \"string\",\n        \"value\": 9452.862370716855\n      },\n      {\n        \"currency\": \"string\",\n        \"value\": 8234.123026882962\n      }\n    ]\n  },\n  \"paymentProviderType\": 3,\n  \"crmKey\": \"string\",\n  \"crmKeyUrls\": {\n    \"key_0\": {\n      \"crmKey\": \"string\",\n      \"url\": \"string\"\n    }\n  },\n  \"page\": {\n    \"id\": 6382,\n    \"name\": \"string\",\n    \"internalName\": \"string\",\n    \"internalDisplayName\": \"string\",\n    \"slug\": \"string\",\n    \"isPublished\": true,\n    \"publicId\": \"e61cb2a8-f5cc-5a7a-9f45-9ef0095847e0\",\n    \"type\": 0,\n    \"typeDisplayName\": \"string\",\n    \"formType\": 0,\n    \"externalReferenceId\": \"01c135b4-8078-af22-f12f-f3ce491b4043\",\n    \"json\": \"string\",\n    \"gatewayId\": 7417,\n    \"merchantAccount\": \"string\",\n    \"merchantType\": 1,\n    \"tokenizationKey\": \"string\",\n    \"payPalGatewayId\": 4213,\n    \"payPalMerchantAccount\": \"string\",\n    \"payPalTokenizationKey\": \"string\",\n    \"defaultSegmentId\": 3960,\n    \"defaultSegmentName\": \"string\",\n    \"defaultSegmentCode\": \"string\",\n    \"defaultLanguage\": \"string\",\n    \"isTranslationEnabled\": true,\n    \"defaultCampaignId\": 8302,\n    \"defaultProjectId\": 5891,\n    \"defaultProjectName\": \"string\",\n    \"defaultProjectCode\": \"string\",\n    \"isExpireEnabled\": true,\n    \"expireDateTimeUtc\": \"2008-12-11T19:46:05.646Z\",\n    \"redirectPageId\": 2739,\n    \"redirectPageName\": \"string\",\n    \"redirectUrl\": \"string\",\n    \"autoArchiveOnExpire\": true,\n    \"designSettings\": {\n      \"websiteUrl\": \"string\",\n      \"logoUrl\": \"string\",\n      \"faviconUrl\": \"string\",\n      \"primaryColor\": \"string\",\n      \"secondaryColor\": \"string\",\n      \"backgroundColor\": \"string\",\n      \"headerColor\": \"string\",\n      \"headerTextColor\": \"string\",\n      \"bodyTextColor\": \"string\",\n      \"footerColor\": \"string\",\n      \"footerTextColor\": \"string\",\n      \"buttonColor\": \"string\",\n      \"buttonTextColor\": \"string\",\n      \"buttonHoverColor\": \"string\",\n      \"buttonHoverTextColor\": \"string\",\n      \"linkColor\": \"string\",\n      \"fieldLabelColor\": \"string\",\n      \"fieldBorderColor\": \"string\",\n      \"borderRadius\": \"string\",\n      \"fontFamily\": \"string\",\n      \"globalCss\": \"string\",\n      \"globalJs\": \"string\"\n    },\n    \"integrations\": [\n      {\n        \"id\": 633,\n        \"name\": \"string\",\n        \"publicKey\": \"string\",\n        \"integrationType\": 3\n      },\n      {\n        \"id\": 4701,\n        \"name\": \"string\",\n        \"publicKey\": \"string\",\n        \"integrationType\": 9\n      }\n    ],\n    \"confirmationEmailId\": 6811,\n    \"confirmationEmailName\": \"string\",\n    \"recurringEmailId\": 977,\n    \"recurringEmailName\": \"string\",\n    \"acknowledgementEmailId\": 4783,\n    \"acknowledgementEmailName\": \"string\",\n    \"hasMinAmount\": false,\n    \"minAmount\": 8093.409736471298,\n    \"minAmountMessage\": \"string\",\n    \"hasExperiment\": true,\n    \"pageExperimentId\": 3455,\n    \"experimentStatus\": 6,\n    \"createdDateTime\": \"string\",\n    \"modifiedDateTime\": \"string\"\n  },\n  \"merchantType\": 5,\n  \"merchantAccount\": \"string\",\n  \"tokenizationKey\": \"string\",\n  \"paymentTenderType\": 11,\n  \"gatewayCustomerKey\": \"string\",\n  \"hasPaymentFailed\": false,\n  \"isLegacy\": false,\n  \"currencyExchange\": {\n    \"nativeAmount\": \"string\",\n    \"nativeCurrencyCode\": \"string\",\n    \"settledExchangeRate\": 8264.173693595123,\n    \"settledAmount\": \"string\",\n    \"settledCurrencyCode\": \"string\",\n    \"baseExchangeRate\": 3329.6755276300273,\n    \"baseAmount\": \"string\",\n    \"baseCurrencyCode\": \"string\",\n    \"isDifferentCurrency\": true\n  },\n  \"tribute\": {\n    \"isInMemoryOf\": false,\n    \"isInHonorOf\": true,\n    \"nameOrOccasion\": \"string\",\n    \"tributeFirstName\": \"string\",\n    \"tributeLastName\": \"string\",\n    \"tributeAddress1\": \"string\",\n    \"tributeAddress2\": \"string\",\n    \"tributeCity\": \"string\",\n    \"tributeState\": \"string\",\n    \"tributeCountry\": \"string\",\n    \"tributePostal\": \"string\",\n    \"acknowledgeeFirstName\": \"string\",\n    \"acknowledgeeLastName\": \"string\",\n    \"sendByEmail\": false,\n    \"acknowledgeeEmailAddress\": \"string\",\n    \"sendByPostal\": true,\n    \"acknowledgeeAddress1\": \"string\",\n    \"acknowledgeeAddress2\": \"string\",\n    \"acknowledgeeCity\": \"string\",\n    \"acknowledgeeState\": \"string\",\n    \"acknowledgeeCountry\": \"string\",\n    \"acknowledgeePostal\": \"string\",\n    \"message\": \"string\"\n  }\n}"},{"id":"08540cc1-23de-4c96-a2f7-9d1b60513d99","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/RecurringGift/:id/cancel","host":["https://prod-api.raisedonors.com"],"path":["api","RecurringGift",":id","cancel"],"variable":[{"key":"id","value":"3573","description":"The id of the recurring gift."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"d3711c10-b84a-4120-ab82-d9ec4b3be668","name":"Not Found","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/RecurringGift/:id/cancel","host":["https://prod-api.raisedonors.com"],"path":["api","RecurringGift",":id","cancel"],"variable":[{"key":"id","value":"3573","description":"The id of the recurring gift."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"88e7296b-2e7b-4114-bcc4-8018300f5773"}],"id":"ef5f14b8-7e26-4fea-bdc7-60907b9a68e4","_postman_id":"ef5f14b8-7e26-4fea-bdc7-60907b9a68e4","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}}},{"name":"Segment","item":[{"name":"List segments with optional campaign filter and pagination.","id":"695e12f6-d132-431d-ac9b-6a6d9f1eda7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Segment/list/:campaignId?Filter=string&Skip=8361&Take=8361&SortBy=code&Descending=true","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Segment","list",":campaignId"],"host":["https://prod-api.raisedonors.com"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":{"content":"<p>Field to sort by (case-insensitive). Valid options: code, description, id, name, totaldonors, totalgifts</p>\n","type":"text/plain"},"key":"SortBy","value":"code"},{"key":"Descending","value":"true"}],"variable":[{"id":"0816dcdf-17b8-4941-9e14-61d79fb7f911","description":{"content":"<p>The optional campaign ID to filter segments.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"campaignId"}]}},"response":[{"id":"1e370839-2cfd-46c5-90b4-478f3ed49d99","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Segment/list/:campaignId?Filter=string&Skip=8361&Take=8361&SortBy=code&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Segment","list",":campaignId"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: code, description, id, name, totaldonors, totalgifts","key":"SortBy","value":"code"},{"key":"Descending","value":"true"}],"variable":[{"key":"campaignId","value":"3573","description":"The optional campaign ID to filter segments."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 9828,\n      \"campaignId\": 6211,\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"code\": \"string\",\n      \"totalDonors\": 2218,\n      \"totalGifts\": 797,\n      \"totalGiftAmount\": 9382.520814827369,\n      \"externalIdentifier\": \"string\",\n      \"metadata\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    {\n      \"id\": 1701,\n      \"campaignId\": 1787,\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"code\": \"string\",\n      \"totalDonors\": 7227,\n      \"totalGifts\": 6270,\n      \"totalGiftAmount\": 9505.792894848943,\n      \"externalIdentifier\": \"string\",\n      \"metadata\": [\n        \"string\",\n        \"string\"\n      ]\n    }\n  ],\n  \"total\": 3870\n}"},{"id":"78f5b3b7-c953-4b2a-8636-e4ab4dce55bb","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Segment/list/:campaignId?Filter=string&Skip=8361&Take=8361&SortBy=code&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Segment","list",":campaignId"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: code, description, id, name, totaldonors, totalgifts","key":"SortBy","value":"code"},{"key":"Descending","value":"true"}],"variable":[{"key":"campaignId","value":"3573","description":"The optional campaign ID to filter segments."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"695e12f6-d132-431d-ac9b-6a6d9f1eda7d"},{"name":"Verify if a segment with the specified code exists.","id":"4e670716-ac0a-47cf-a5e1-ee78677818f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Segment/exists?code=string&segmentId=3573","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Segment","exists"],"host":["https://prod-api.raisedonors.com"],"query":[{"description":{"content":"<p>The segment code to check.</p>\n","type":"text/plain"},"key":"code","value":"string"},{"description":{"content":"<p>The optional segment ID to exclude from the check.</p>\n","type":"text/plain"},"key":"segmentId","value":"3573"}],"variable":[]}},"response":[{"id":"7f87a902-1a87-48bf-af8f-dc32badcf0cb","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Segment/exists?code=string&segmentId=3573","host":["https://prod-api.raisedonors.com"],"path":["api","Segment","exists"],"query":[{"description":"The segment code to check.","key":"code","value":"string"},{"description":"The optional segment ID to exclude from the check.","key":"segmentId","value":"3573"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"true"},{"id":"eab237d9-b2b0-45b2-b833-d6b9e0bbdcf9","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Segment/exists?code=string&segmentId=3573","host":["https://prod-api.raisedonors.com"],"path":["api","Segment","exists"],"query":[{"description":"The segment code to check.","key":"code","value":"string"},{"description":"The optional segment ID to exclude from the check.","key":"segmentId","value":"3573"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"4e670716-ac0a-47cf-a5e1-ee78677818f3"},{"name":"Get a specific segment by ID.","id":"54b2fb84-f141-4fdb-9e35-e1c108c8986e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Segment/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Segment",":id"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"b19cbec0-9ba7-412d-9eb8-2c2fef9bd3bb","description":{"content":"<p>The ID of the segment.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"19f5bff2-aa72-4ff3-9a2b-f922484c5c2f","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Segment/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Segment",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the segment."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9779,\n  \"campaignId\": 9066,\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"code\": \"string\",\n  \"externalIdentifier\": \"string\",\n  \"totalDonors\": 6877,\n  \"totalGifts\": 447,\n  \"totalGiftAmount\": \"string\",\n  \"averageGiftAmount\": \"string\",\n  \"medianGiftAmount\": \"string\",\n  \"highestGiftAmount\": \"string\",\n  \"totalVisitors\": 97,\n  \"conversionRate\": \"string\",\n  \"createdDateTime\": \"string\",\n  \"modifiedDateTime\": \"string\"\n}"},{"id":"6c0c0930-7df4-4986-bf10-a3e96f7c9859","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Segment/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Segment",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the segment."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"54b2fb84-f141-4fdb-9e35-e1c108c8986e"},{"name":"Update a specific segment.","id":"b4fa3962-d7ab-4028-8201-5e74bfb60cc1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"campaignId\": 2312,\n  \"code\": \"string\",\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"externalIdentifier\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Segment/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Segment",":id"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"9666b597-792d-4a15-aa55-79e709754c3a","description":{"content":"<p>The ID of the segment.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"36ad90fd-d952-44a8-ad75-f6481bb65668","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"campaignId\": 2312,\n  \"code\": \"string\",\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"externalIdentifier\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Segment/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Segment",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the segment."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9779,\n  \"campaignId\": 9066,\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"code\": \"string\",\n  \"externalIdentifier\": \"string\",\n  \"totalDonors\": 6877,\n  \"totalGifts\": 447,\n  \"totalGiftAmount\": \"string\",\n  \"averageGiftAmount\": \"string\",\n  \"medianGiftAmount\": \"string\",\n  \"highestGiftAmount\": \"string\",\n  \"totalVisitors\": 97,\n  \"conversionRate\": \"string\",\n  \"createdDateTime\": \"string\",\n  \"modifiedDateTime\": \"string\"\n}"},{"id":"c524cc5c-eb14-4966-a6a5-a6119faf85b1","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"campaignId\": 2312,\n  \"code\": \"string\",\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"externalIdentifier\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Segment/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Segment",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the segment."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"b4fa3962-d7ab-4028-8201-5e74bfb60cc1"},{"name":"Delete a specific segment.","id":"12f7abdf-7e80-432c-8aca-651cada7728c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Segment/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Segment",":id"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"7c71bcd9-2ac7-4d33-8039-83fdd80251ca","description":{"content":"<p>The ID of the segment.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"37ec980d-f51a-42f2-99cc-27beef6fafe2","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Segment/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Segment",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the segment."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"79621773-804c-4795-b784-fd80c311da19","name":"Bad Request","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Segment/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Segment",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the segment."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"12f7abdf-7e80-432c-8aca-651cada7728c"},{"name":"Create a new segment.","id":"d30a1212-99d1-4232-bdea-31a22f9d1a1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"campaignId\": 2312,\n  \"code\": \"string\",\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"externalIdentifier\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Segment","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Segment"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[]}},"response":[{"id":"19e1b775-b7c2-49de-92d0-287627820567","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"campaignId\": 2312,\n  \"code\": \"string\",\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"externalIdentifier\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Segment"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 9779,\n  \"campaignId\": 9066,\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"code\": \"string\",\n  \"externalIdentifier\": \"string\",\n  \"totalDonors\": 6877,\n  \"totalGifts\": 447,\n  \"totalGiftAmount\": \"string\",\n  \"averageGiftAmount\": \"string\",\n  \"medianGiftAmount\": \"string\",\n  \"highestGiftAmount\": \"string\",\n  \"totalVisitors\": 97,\n  \"conversionRate\": \"string\",\n  \"createdDateTime\": \"string\",\n  \"modifiedDateTime\": \"string\"\n}"},{"id":"dec3273e-3bc0-4ca3-8936-1088c159d00c","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"campaignId\": 2312,\n  \"code\": \"string\",\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"externalIdentifier\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Segment"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"d30a1212-99d1-4232-bdea-31a22f9d1a1b"},{"name":"Replace a segment with a new one.","id":"71247d90-167a-43e6-b018-82a8bad24e92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"currentSegmentId\": 9352,\n  \"newSegmentId\": 1740\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Segment/replace","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Segment","replace"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[]}},"response":[{"id":"50906f12-c638-44ff-ad56-1d3cf1c9eed3","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"currentSegmentId\": 9352,\n  \"newSegmentId\": 1740\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Segment/replace"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"8361"},{"id":"089a619a-3db2-4ce7-88a4-ab83882b65aa","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"currentSegmentId\": 9352,\n  \"newSegmentId\": 1740\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Segment/replace"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"71247d90-167a-43e6-b018-82a8bad24e92"},{"name":"Get a paginated list of donors for a segment.","id":"473a5f41-b7c7-4bf1-856f-df6dcf0e54bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Segment/:segmentId/donors?Filter=string&Skip=8361&Take=8361&SortBy=code&Descending=true","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Segment",":segmentId","donors"],"host":["https://prod-api.raisedonors.com"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":{"content":"<p>Field to sort by (case-insensitive). Valid options: code, description, id, name, totaldonors, totalgifts</p>\n","type":"text/plain"},"key":"SortBy","value":"code"},{"key":"Descending","value":"true"}],"variable":[{"id":"9f7ce62d-d7b8-4cc3-8358-298a71851210","description":{"content":"<p>The ID of the segment.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"segmentId"}]}},"response":[{"id":"65a3fe9a-252e-4bb5-b2b2-f93796f0c4c2","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Segment/:segmentId/donors?Filter=string&Skip=8361&Take=8361&SortBy=code&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Segment",":segmentId","donors"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: code, description, id, name, totaldonors, totalgifts","key":"SortBy","value":"code"},{"key":"Descending","value":"true"}],"variable":[{"key":"segmentId","value":"3573","description":"The ID of the segment."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 9564,\n      \"firstName\": \"string\",\n      \"lastName\": \"string\",\n      \"name\": \"string\",\n      \"isOrganization\": true,\n      \"phone\": \"string\",\n      \"address\": {\n        \"address1\": \"string\",\n        \"address2\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"postal\": \"string\",\n        \"countryString\": \"string\",\n        \"addressType\": 5,\n        \"addressTypeDisplay\": \"string\"\n      },\n      \"totalGifts\": 7076,\n      \"totalGiftAmount\": \"string\"\n    },\n    {\n      \"id\": 9718,\n      \"firstName\": \"string\",\n      \"lastName\": \"string\",\n      \"name\": \"string\",\n      \"isOrganization\": true,\n      \"phone\": \"string\",\n      \"address\": {\n        \"address1\": \"string\",\n        \"address2\": \"string\",\n        \"city\": \"string\",\n        \"state\": \"string\",\n        \"postal\": \"string\",\n        \"countryString\": \"string\",\n        \"addressType\": 3,\n        \"addressTypeDisplay\": \"string\"\n      },\n      \"totalGifts\": 7664,\n      \"totalGiftAmount\": \"string\"\n    }\n  ],\n  \"total\": 2601\n}"},{"id":"1b890f51-6198-4b81-aa12-faa1d8c54074","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Segment/:segmentId/donors?Filter=string&Skip=8361&Take=8361&SortBy=code&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Segment",":segmentId","donors"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: code, description, id, name, totaldonors, totalgifts","key":"SortBy","value":"code"},{"key":"Descending","value":"true"}],"variable":[{"key":"segmentId","value":"3573","description":"The ID of the segment."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"473a5f41-b7c7-4bf1-856f-df6dcf0e54bf"},{"name":"Get a paginated list of gifts for a segment.","id":"a355afb4-7617-4657-9f69-996522f29ac3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Segment/:segmentId/gifts?Filter=string&Skip=8361&Take=8361&SortBy=code&Descending=true","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Segment",":segmentId","gifts"],"host":["https://prod-api.raisedonors.com"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":{"content":"<p>Field to sort by (case-insensitive). Valid options: code, description, id, name, totaldonors, totalgifts</p>\n","type":"text/plain"},"key":"SortBy","value":"code"},{"key":"Descending","value":"true"}],"variable":[{"id":"cdf27269-ab02-469f-b2f3-d9673a7f17ba","description":{"content":"<p>The ID of the segment.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"segmentId"}]}},"response":[{"id":"3f05d446-4cc9-452b-9a60-ff222c68ffc7","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Segment/:segmentId/gifts?Filter=string&Skip=8361&Take=8361&SortBy=code&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Segment",":segmentId","gifts"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: code, description, id, name, totaldonors, totalgifts","key":"SortBy","value":"code"},{"key":"Descending","value":"true"}],"variable":[{"key":"segmentId","value":"3573","description":"The ID of the segment."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 6359,\n      \"amount\": \"string\",\n      \"date\": \"string\",\n      \"donorName\": \"string\",\n      \"form\": \"string\",\n      \"status\": 3,\n      \"statusText\": \"string\",\n      \"isAnonymous\": false,\n      \"isRecurring\": false,\n      \"isDonorOrganization\": true,\n      \"segmentCode\": \"string\"\n    },\n    {\n      \"id\": 2789,\n      \"amount\": \"string\",\n      \"date\": \"string\",\n      \"donorName\": \"string\",\n      \"form\": \"string\",\n      \"status\": 2,\n      \"statusText\": \"string\",\n      \"isAnonymous\": true,\n      \"isRecurring\": true,\n      \"isDonorOrganization\": true,\n      \"segmentCode\": \"string\"\n    }\n  ],\n  \"total\": 6781\n}"},{"id":"770301bc-cf8b-442d-86cc-871181c31293","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Segment/:segmentId/gifts?Filter=string&Skip=8361&Take=8361&SortBy=code&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Segment",":segmentId","gifts"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: code, description, id, name, totaldonors, totalgifts","key":"SortBy","value":"code"},{"key":"Descending","value":"true"}],"variable":[{"key":"segmentId","value":"3573","description":"The ID of the segment."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"a355afb4-7617-4657-9f69-996522f29ac3"},{"name":"Get the page dependency count for a specific segment.","id":"0afbe3d0-c675-44ae-979a-d5e744ff998e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Segment/:segmentId/page-count","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Segment",":segmentId","page-count"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"51d1133f-15a2-48a4-bfdf-d1afef887c33","description":{"content":"<p>The ID of the segment.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"segmentId"}]}},"response":[{"id":"37917089-eed0-46b4-a943-f47d98fbc6ab","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Segment/:segmentId/page-count","host":["https://prod-api.raisedonors.com"],"path":["api","Segment",":segmentId","page-count"],"variable":[{"key":"segmentId","value":"3573","description":"The ID of the segment."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"8361"},{"id":"03aa4925-ab59-46d6-8a3a-017742a373cf","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Segment/:segmentId/page-count","host":["https://prod-api.raisedonors.com"],"path":["api","Segment",":segmentId","page-count"],"variable":[{"key":"segmentId","value":"3573","description":"The ID of the segment."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"0afbe3d0-c675-44ae-979a-d5e744ff998e"},{"name":"Query segments based on the specified query request model.","id":"af1d8cb7-cb52-4a88-a6bd-60ee6228e98b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"filter\": \"string\",\n  \"skip\": 7689,\n  \"take\": 1304,\n  \"sortBy\": \"createdate\",\n  \"descending\": true,\n  \"queryType\": 3,\n  \"groups\": [\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 4,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 19,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    },\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    }\n  ],\n  \"selectedColumns\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Segment/query","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Segment","query"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[]}},"response":[{"id":"af5287fb-d38c-485a-9df0-6c776bff069f","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"filter\": \"string\",\n  \"skip\": 7689,\n  \"take\": 1304,\n  \"sortBy\": \"createdate\",\n  \"descending\": true,\n  \"queryType\": 3,\n  \"groups\": [\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 4,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 19,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    },\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    }\n  ],\n  \"selectedColumns\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Segment/query"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 9828,\n      \"campaignId\": 6211,\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"code\": \"string\",\n      \"totalDonors\": 2218,\n      \"totalGifts\": 797,\n      \"totalGiftAmount\": 9382.520814827369,\n      \"externalIdentifier\": \"string\",\n      \"metadata\": [\n        \"string\",\n        \"string\"\n      ]\n    },\n    {\n      \"id\": 1701,\n      \"campaignId\": 1787,\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"code\": \"string\",\n      \"totalDonors\": 7227,\n      \"totalGifts\": 6270,\n      \"totalGiftAmount\": 9505.792894848943,\n      \"externalIdentifier\": \"string\",\n      \"metadata\": [\n        \"string\",\n        \"string\"\n      ]\n    }\n  ],\n  \"total\": 3870\n}"},{"id":"3fa105e0-95ea-4df1-9439-14c803def21d","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"filter\": \"string\",\n  \"skip\": 7689,\n  \"take\": 1304,\n  \"sortBy\": \"createdate\",\n  \"descending\": true,\n  \"queryType\": 3,\n  \"groups\": [\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 4,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 1\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 19,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    },\n    {\n      \"conditions\": [\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        },\n        {\n          \"parameter\": \"string\",\n          \"operator\": 17,\n          \"value\": \"string\",\n          \"secondaryValue\": \"string\",\n          \"values\": [\n            \"string\",\n            \"string\"\n          ],\n          \"conjunct\": 0\n        }\n      ],\n      \"conjunct\": 1\n    }\n  ],\n  \"selectedColumns\": [\n    \"string\",\n    \"string\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Segment/query"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"af1d8cb7-cb52-4a88-a6bd-60ee6228e98b"}],"id":"1bba3802-8276-45e0-bd3b-0c87c97d7336","_postman_id":"1bba3802-8276-45e0-bd3b-0c87c97d7336","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}}},{"name":"Webhook","item":[{"name":"Get a specific webhook by ID.","id":"1d771aa2-09b1-40ea-80c7-073aae718119","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Webhook/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Webhook",":id"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"8b422b0e-8e8e-4257-b09f-979a49dcf04c","description":{"content":"<p>The ID of the webhook.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"8c37463b-32d8-494c-9664-8af32dd31fa6","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Webhook/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Webhook",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the webhook."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6415,\n  \"name\": \"string\",\n  \"eventTypes\": \"string\",\n  \"notificationUrl\": \"string\",\n  \"status\": 2,\n  \"format\": 1,\n  \"formatDisplay\": \"string\",\n  \"statusDisplay\": \"string\",\n  \"securityToken\": \"string\",\n  \"createdDate\": \"string\",\n  \"modifiedDate\": \"string\"\n}"},{"id":"87d8ff70-417c-492e-bd2d-ae599c7be6b9","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Webhook/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Webhook",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the webhook."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"1d771aa2-09b1-40ea-80c7-073aae718119"},{"name":"Update a specific webhook.","id":"1f9ac3b1-24a3-4de0-beb7-9be6adee737d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"eventTypesList\": [\n    11,\n    22\n  ],\n  \"notificationUrl\": \"https://SjOlGwbEobn.xyaQ9trrGNqjrhHIab7YpKLkKbVgp-tCYnfhJZlTVXNNoomyAVKEwLcga5uTLf2d+JQu-O3\",\n  \"status\": 1,\n  \"format\": 1,\n  \"securityToken\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Webhook/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Webhook",":id"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"b678a2bd-a1bf-4633-9865-89da871b4247","description":{"content":"<p>The ID of the webhook.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"c3581cd2-de11-4af6-8873-d90fdb8b11f7","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"eventTypesList\": [\n    11,\n    22\n  ],\n  \"notificationUrl\": \"https://SjOlGwbEobn.xyaQ9trrGNqjrhHIab7YpKLkKbVgp-tCYnfhJZlTVXNNoomyAVKEwLcga5uTLf2d+JQu-O3\",\n  \"status\": 1,\n  \"format\": 1,\n  \"securityToken\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Webhook/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Webhook",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the webhook."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6415,\n  \"name\": \"string\",\n  \"eventTypes\": \"string\",\n  \"notificationUrl\": \"string\",\n  \"status\": 2,\n  \"format\": 1,\n  \"formatDisplay\": \"string\",\n  \"statusDisplay\": \"string\",\n  \"securityToken\": \"string\",\n  \"createdDate\": \"string\",\n  \"modifiedDate\": \"string\"\n}"},{"id":"b1962749-2c9b-4ad9-8cfb-10f86fd6fbd1","name":"Bad Request","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"eventTypesList\": [\n    11,\n    22\n  ],\n  \"notificationUrl\": \"https://SjOlGwbEobn.xyaQ9trrGNqjrhHIab7YpKLkKbVgp-tCYnfhJZlTVXNNoomyAVKEwLcga5uTLf2d+JQu-O3\",\n  \"status\": 1,\n  \"format\": 1,\n  \"securityToken\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://prod-api.raisedonors.com/api/Webhook/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Webhook",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the webhook."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"1f9ac3b1-24a3-4de0-beb7-9be6adee737d"},{"name":"Delete a specific webhook.","id":"60542ad0-5fe1-47e0-ae7b-35eb587d58ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Webhook/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Webhook",":id"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"08c8ced7-df64-4ec9-9682-b2f9807c9d59","description":{"content":"<p>The ID of the webhook.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"8d5aa5b2-4ebd-4cae-9e0e-48b7d7ddd030","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Webhook/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Webhook",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the webhook."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"a848d3e7-7389-41a5-88e1-5e7f3c3eb596","name":"Bad Request","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Webhook/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Webhook",":id"],"variable":[{"key":"id","value":"3573","description":"The ID of the webhook."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"60542ad0-5fe1-47e0-ae7b-35eb587d58ab"},{"name":"Get a paginated list of webhooks.","id":"54a80e6a-d3f4-4de0-9de7-3348aa193e0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Webhook/list?Filter=string&Skip=8361&Take=8361&SortBy=createddatetime&Descending=true","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Webhook","list"],"host":["https://prod-api.raisedonors.com"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":{"content":"<p>Field to sort by (case-insensitive). Valid options: createddatetime, format, id, modifieddatetimeutc, name, status</p>\n","type":"text/plain"},"key":"SortBy","value":"createddatetime"},{"key":"Descending","value":"true"}],"variable":[]}},"response":[{"id":"987805b3-d027-4e79-ae5d-1b8c3ab584a9","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Webhook/list?Filter=string&Skip=8361&Take=8361&SortBy=createddatetime&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Webhook","list"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: createddatetime, format, id, modifieddatetimeutc, name, status","key":"SortBy","value":"createddatetime"},{"key":"Descending","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 6979,\n      \"name\": \"string\",\n      \"eventTypes\": \"string\",\n      \"notificationUrl\": \"string\",\n      \"status\": 2,\n      \"format\": 2,\n      \"formatDisplay\": \"string\",\n      \"statusDisplay\": \"string\",\n      \"securityToken\": \"string\",\n      \"createdDate\": \"string\",\n      \"modifiedDate\": \"string\"\n    },\n    {\n      \"id\": 5219,\n      \"name\": \"string\",\n      \"eventTypes\": \"string\",\n      \"notificationUrl\": \"string\",\n      \"status\": 2,\n      \"format\": 2,\n      \"formatDisplay\": \"string\",\n      \"statusDisplay\": \"string\",\n      \"securityToken\": \"string\",\n      \"createdDate\": \"string\",\n      \"modifiedDate\": \"string\"\n    }\n  ],\n  \"total\": 4456\n}"},{"id":"c69dac53-37b3-4192-afbc-935515681c66","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Webhook/list?Filter=string&Skip=8361&Take=8361&SortBy=createddatetime&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Webhook","list"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: createddatetime, format, id, modifieddatetimeutc, name, status","key":"SortBy","value":"createddatetime"},{"key":"Descending","value":"true"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"54a80e6a-d3f4-4de0-9de7-3348aa193e0c"},{"name":"Create a new webhook.","id":"9deceba6-b999-4899-b626-886a9a95e149","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"eventTypesList\": [\n    11,\n    22\n  ],\n  \"notificationUrl\": \"https://SjOlGwbEobn.xyaQ9trrGNqjrhHIab7YpKLkKbVgp-tCYnfhJZlTVXNNoomyAVKEwLcga5uTLf2d+JQu-O3\",\n  \"status\": 1,\n  \"format\": 1,\n  \"securityToken\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Webhook","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Webhook"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[]}},"response":[{"id":"325faadb-d396-4823-9c19-03167b6fb26e","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"eventTypesList\": [\n    11,\n    22\n  ],\n  \"notificationUrl\": \"https://SjOlGwbEobn.xyaQ9trrGNqjrhHIab7YpKLkKbVgp-tCYnfhJZlTVXNNoomyAVKEwLcga5uTLf2d+JQu-O3\",\n  \"status\": 1,\n  \"format\": 1,\n  \"securityToken\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Webhook"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 6415,\n  \"name\": \"string\",\n  \"eventTypes\": \"string\",\n  \"notificationUrl\": \"string\",\n  \"status\": 2,\n  \"format\": 1,\n  \"formatDisplay\": \"string\",\n  \"statusDisplay\": \"string\",\n  \"securityToken\": \"string\",\n  \"createdDate\": \"string\",\n  \"modifiedDate\": \"string\"\n}"},{"id":"15b41254-8214-49e3-8048-08d5f68b8a4e","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"eventTypesList\": [\n    11,\n    22\n  ],\n  \"notificationUrl\": \"https://SjOlGwbEobn.xyaQ9trrGNqjrhHIab7YpKLkKbVgp-tCYnfhJZlTVXNNoomyAVKEwLcga5uTLf2d+JQu-O3\",\n  \"status\": 1,\n  \"format\": 1,\n  \"securityToken\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Webhook"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"9deceba6-b999-4899-b626-886a9a95e149"},{"name":"Get a paginated list of webhook logs.","id":"ae81b391-f6d4-4004-a24c-0029dc97544d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Webhook/log/list?Filter=string&Skip=8361&Take=8361&SortBy=createddatetime&Descending=true","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Webhook","log","list"],"host":["https://prod-api.raisedonors.com"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":{"content":"<p>Field to sort by (case-insensitive). Valid options: createddatetime, format, id, modifieddatetimeutc, name, status</p>\n","type":"text/plain"},"key":"SortBy","value":"createddatetime"},{"key":"Descending","value":"true"}],"variable":[]}},"response":[{"id":"f542306a-0db8-4700-867c-6a3644c0f724","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Webhook/log/list?Filter=string&Skip=8361&Take=8361&SortBy=createddatetime&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Webhook","log","list"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: createddatetime, format, id, modifieddatetimeutc, name, status","key":"SortBy","value":"createddatetime"},{"key":"Descending","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 4465,\n      \"webhookId\": 3009,\n      \"contextId\": 2162,\n      \"eventType\": 22,\n      \"eventTypeDisplay\": \"string\",\n      \"serverResponse\": \"string\",\n      \"success\": \"string\",\n      \"httpStatusCode\": \"string\",\n      \"createdDate\": \"string\",\n      \"modifiedDate\": \"string\"\n    },\n    {\n      \"id\": 1156,\n      \"webhookId\": 3617,\n      \"contextId\": 754,\n      \"eventType\": 10,\n      \"eventTypeDisplay\": \"string\",\n      \"serverResponse\": \"string\",\n      \"success\": \"string\",\n      \"httpStatusCode\": \"string\",\n      \"createdDate\": \"string\",\n      \"modifiedDate\": \"string\"\n    }\n  ],\n  \"total\": 3116\n}"},{"id":"7ef5e2fe-de14-4276-847b-0ec1c8e3775a","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Webhook/log/list?Filter=string&Skip=8361&Take=8361&SortBy=createddatetime&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Webhook","log","list"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: createddatetime, format, id, modifieddatetimeutc, name, status","key":"SortBy","value":"createddatetime"},{"key":"Descending","value":"true"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"ae81b391-f6d4-4004-a24c-0029dc97544d"},{"name":"Get a paginated list of logs for a specific webhook.","id":"27827775-f66a-4a84-b1c2-aa605455e6e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Webhook/:id/log/list?Filter=string&Skip=8361&Take=8361&SortBy=createddatetime&Descending=true","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Webhook",":id","log","list"],"host":["https://prod-api.raisedonors.com"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":{"content":"<p>Field to sort by (case-insensitive). Valid options: createddatetime, format, id, modifieddatetimeutc, name, status</p>\n","type":"text/plain"},"key":"SortBy","value":"createddatetime"},{"key":"Descending","value":"true"}],"variable":[{"id":"eed94438-04a0-48be-aac1-f31290626663","description":{"content":"<p>The ID of the webhook.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"64eb7aea-6a77-4732-b7a4-635341a1c61b","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Webhook/:id/log/list?Filter=string&Skip=8361&Take=8361&SortBy=createddatetime&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Webhook",":id","log","list"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: createddatetime, format, id, modifieddatetimeutc, name, status","key":"SortBy","value":"createddatetime"},{"key":"Descending","value":"true"}],"variable":[{"key":"id","value":"3573","description":"The ID of the webhook."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": 4465,\n      \"webhookId\": 3009,\n      \"contextId\": 2162,\n      \"eventType\": 22,\n      \"eventTypeDisplay\": \"string\",\n      \"serverResponse\": \"string\",\n      \"success\": \"string\",\n      \"httpStatusCode\": \"string\",\n      \"createdDate\": \"string\",\n      \"modifiedDate\": \"string\"\n    },\n    {\n      \"id\": 1156,\n      \"webhookId\": 3617,\n      \"contextId\": 754,\n      \"eventType\": 10,\n      \"eventTypeDisplay\": \"string\",\n      \"serverResponse\": \"string\",\n      \"success\": \"string\",\n      \"httpStatusCode\": \"string\",\n      \"createdDate\": \"string\",\n      \"modifiedDate\": \"string\"\n    }\n  ],\n  \"total\": 3116\n}"},{"id":"1633ea8b-2f86-470c-b82e-14cd270df663","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Webhook/:id/log/list?Filter=string&Skip=8361&Take=8361&SortBy=createddatetime&Descending=true","host":["https://prod-api.raisedonors.com"],"path":["api","Webhook",":id","log","list"],"query":[{"key":"Filter","value":"string"},{"key":"Skip","value":"8361"},{"key":"Take","value":"8361"},{"description":"Field to sort by (case-insensitive). Valid options: createddatetime, format, id, modifieddatetimeutc, name, status","key":"SortBy","value":"createddatetime"},{"key":"Descending","value":"true"}],"variable":[{"key":"id","value":"3573","description":"The ID of the webhook."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"27827775-f66a-4a84-b1c2-aa605455e6e3"},{"name":"Get a specific log for a webhook.","id":"26f74b20-cd84-40df-9069-403b002be529","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Webhook/:id/log/:logId","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Webhook",":id","log",":logId"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"7e4caffc-e52d-489f-a973-349839f263c2","description":{"content":"<p>The ID of the webhook.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"},{"id":"54370c15-cd3c-43de-9de5-eef7a411dbd9","description":{"content":"<p>The ID of the log.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"logId"}]}},"response":[{"id":"2117bfc5-8c1d-43d6-83da-502bfa2c4b0e","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Webhook/:id/log/:logId","host":["https://prod-api.raisedonors.com"],"path":["api","Webhook",":id","log",":logId"],"variable":[{"key":"id","value":"3573","description":"The ID of the webhook."},{"key":"logId","value":"3573","description":"The ID of the log."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 1343,\n  \"webhookId\": 9481,\n  \"contextId\": 6729,\n  \"eventType\": 30,\n  \"eventTypeDisplay\": \"string\",\n  \"serverResponse\": \"string\",\n  \"success\": \"string\",\n  \"httpStatusCode\": \"string\",\n  \"createdDate\": \"string\",\n  \"modifiedDate\": \"string\"\n}"},{"id":"c307992a-ce89-49b9-b9d8-c4e620aba190","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Webhook/:id/log/:logId","host":["https://prod-api.raisedonors.com"],"path":["api","Webhook",":id","log",":logId"],"variable":[{"key":"id","value":"3573","description":"The ID of the webhook."},{"key":"logId","value":"3573","description":"The ID of the log."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"26f74b20-cd84-40df-9069-403b002be529"}],"id":"c43cc5d5-914b-4b51-a074-0fb5b42b96d2","_postman_id":"c43cc5d5-914b-4b51-a074-0fb5b42b96d2","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}}},{"name":"Zapier","item":[{"name":"Subscribes Zapier to receive webhook notifications for a specific event type.\nCreates a new webhook in Raise Donors that will send notifications to Zapier's target URL.","id":"afd8c0ce-2e2e-40e3-ba2b-f5a9174ad872","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"}],"body":{"mode":"raw","raw":"{\n  \"eventType\": \"string\",\n  \"targetUrl\": \"https://eclAiMDNApJzUGvjiFWTq.fvxF1P+SDsxGy1.xX8h8ZHHlJq\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Zapier/subscribe","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Zapier","subscribe"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[]}},"response":[{"id":"8e414279-396e-4394-a91a-39bc78cd3a3a","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"eventType\": \"string\",\n  \"targetUrl\": \"https://eclAiMDNApJzUGvjiFWTq.fvxF1P+SDsxGy1.xX8h8ZHHlJq\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Zapier/subscribe"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": 8818\n}"},{"id":"da12f6f4-869a-486c-ae64-174cd9f2b875","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"eventType\": \"string\",\n  \"targetUrl\": \"https://eclAiMDNApJzUGvjiFWTq.fvxF1P+SDsxGy1.xX8h8ZHHlJq\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://prod-api.raisedonors.com/api/Zapier/subscribe"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"afd8c0ce-2e2e-40e3-ba2b-f5a9174ad872"},{"name":"Unsubscribes Zapier from receiving webhook notifications by deleting the webhook.","id":"c64f429a-c900-45b6-8847-ec2ae67753ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Zapier/unsubscribe/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Zapier","unsubscribe",":id"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"c7bd5a6f-54a7-481f-ad44-0a7dc0d39b6e","description":{"content":"<p>The webhook ID to unsubscribe.</p>\n","type":"text/plain"},"type":"any","value":"3573","key":"id"}]}},"response":[{"id":"676bae2b-57ee-4a06-a7c3-12cf1e0a765c","name":"No Content","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Zapier/unsubscribe/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Zapier","unsubscribe",":id"],"variable":[{"key":"id","value":"3573","description":"The webhook ID to unsubscribe."}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"035d577e-dc64-4128-9257-8b5a17007c69","name":"Bad Request","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Zapier/unsubscribe/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Zapier","unsubscribe",":id"],"variable":[{"key":"id","value":"3573","description":"The webhook ID to unsubscribe."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"},{"id":"300f2f98-63f2-478b-81eb-a78a9618e21e","name":"Not Found","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Zapier/unsubscribe/:id","host":["https://prod-api.raisedonors.com"],"path":["api","Zapier","unsubscribe",":id"],"variable":[{"key":"id","value":"3573","description":"The webhook ID to unsubscribe."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"c64f429a-c900-45b6-8847-ec2ae67753ce"},{"name":"Test endpoint for Zapier to verify the connection and authentication.","id":"a3f5b479-c80c-461c-be64-198da5cedb50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Zapier/test","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Zapier","test"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[]}},"response":[{"id":"464ea01b-6582-4d88-b327-61d3b060c867","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://prod-api.raisedonors.com/api/Zapier/test"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"organizationName\": \"string\"\n}"}],"_postman_id":"a3f5b479-c80c-461c-be64-198da5cedb50"},{"name":"Retrieves sample records for a specific event type to use in Zapier trigger testing.\nReturns recent records that match the event type for testing purposes.","id":"5fc0a44c-2d4f-4010-9358-91d67133cbf2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/plain"}],"url":"https://prod-api.raisedonors.com/api/Zapier/samples/:eventType","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}},"urlObject":{"path":["api","Zapier","samples",":eventType"],"host":["https://prod-api.raisedonors.com"],"query":[],"variable":[{"id":"40801cbe-ad6d-4c5d-a076-638e94bab2c3","description":{"content":"<p>The event type to get samples for (e.g., 'Gift_Added', 'Donor_Modified').</p>\n","type":"text/plain"},"type":"any","value":"string","key":"eventType"}]}},"response":[{"id":"9e14cdee-f62a-4847-9654-db198188f54d","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Zapier/samples/:eventType","host":["https://prod-api.raisedonors.com"],"path":["api","Zapier","samples",":eventType"],"variable":[{"key":"eventType","value":"string","description":"The event type to get samples for (e.g., 'Gift_Added', 'Donor_Modified')."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  \"\",\n  \"\"\n]"},{"id":"97427775-62a1-4fb5-9be8-2d22b5c84c14","name":"Bad Request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/plain"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://prod-api.raisedonors.com/api/Zapier/samples/:eventType","host":["https://prod-api.raisedonors.com"],"path":["api","Zapier","samples",":eventType"],"variable":[{"key":"eventType","value":"string","description":"The event type to get samples for (e.g., 'Gift_Added', 'Donor_Modified')."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"status\": 5377,\n  \"detail\": \"string\",\n  \"instance\": \"string\"\n}"}],"_postman_id":"5fc0a44c-2d4f-4010-9358-91d67133cbf2"}],"id":"59bfdc06-4703-4ad9-bdd7-1945628558bc","_postman_id":"59bfdc06-4703-4ad9-bdd7-1945628558bc","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","id":"e04f1796-5602-405d-9d3a-cf6bab6d911e","name":"Virtuous Raise API 2.5.23","type":"collection"}}}],"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]}},"variable":[{"key":"baseUrl","value":"https://prod-api.raisedonors.com"}]}