{"info":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","description":"<html><head></head><body><p>The Virtuous 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. We do <em>not</em> support <a href=\"http://en.wikipedia.org/wiki/Cross-origin_resource_sharing\">cross-origin resource sharing</a> on authenticated endpoints to ensure tokens are never shared with the public internet. 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>There are two authentication methods for the API and both have their benefits.</p>\n<ol>\n<li><p>API Keys: recommended for integrations and syncs. Tokens are static and last 15 years.</p>\n</li>\n<li><p>OAuth Tokens: recommended for user-based interactions. Tokens last 15 days and can be refreshed with a refresh token that lasts 365 days.</p>\n</li>\n</ol>\n<h2 id=\"how-to-use-api-keys\">How to use API Keys</h2>\n<p>API Keys can be created in the Virtuous UI and do not expire. To create a token, login to Virtuous and then navigate to the API Keys section and click to \"Create a Key\".</p>\n<img src=\"https://cdn.virtuoussoftware.com/images/postman/api-keys-1.PNG\">\n\n<p>Enter a name for the key, choose a permission group, and click save. You will now have the option to view and copy the API Key.</p>\n<img src=\"https://cdn.virtuoussoftware.com/images/postman/exampletoken.png\">\n\n<p>You can use this token with the authorization header as shown below.</p>\n<p><code>Authorization: {{vault:bearer-token}}</code></p>\n<h2 id=\"how-to-use-oauth-tokens\">How to use OAuth Tokens</h2>\n<p>To fetch a token, the email address and password need to be URL encoded prior to the string construction to allow any special characters that may be present in your password.</p>\n<p><code>curl -d \"grant_type=password&amp;username=YOUR_EMAIL&amp;password=YOUR_PASSWORD\" -X POST</code> <a href=\"https://api.virtuoussoftware.com/Token\"><code>https://api.virtuoussoftware.com/Token</code></a></p>\n<p>When fetching a token, a refresh token will also be returned. This should be stored and used to fetch new tokens whenever your token expires.</p>\n<p>To request a new Token use the <strong>refresh_token</strong> from your original Token response as follows:</p>\n<p><code>curl -d \"grant_type=refresh_token&amp;refresh_token=REFRESH_TOKEN\" -X POST</code> <a href=\"https://api.virtuoussoftware.com/TokenOAuth\"><code>https://api.virtuoussoftware.com/Token</code></a></p>\n<p>When fetching a token for a user with Two-Factor Authentication, you will receive a 202 (Accepted) response stating that a verification code is required.</p>\n<p>The user will then need to enter the verification code that was sent to their phone. You will then request the token again but this time you will pass in an OTP (one-time-password) header with the verification code received</p>\n<p>If the verification code and user credentials are correct, you will receive a token as seen in the Token authentication above.</p>\n<p>To request a new Token after the user enters the verification code, add an OTP header:</p>\n<p><code>curl -d \"grant_type=password&amp;username=YOUR_EMAIL&amp;password=YOUR_PASSWORD&amp;otp=YOUR_OTP\" -X POST</code> <a href=\"https://api.virtuoussoftware.com/Token\"><code>https://api.virtuoussoftware.com/Token</code></a></p>\n<h1 id=\"rate-limits\">Rate Limits</h1>\n<p>Virtuous 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<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 Contact, 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. <a href=\"https://support.virtuous.org/hc/en-us/articles/360051385392-How-Do-I-Integrate-with-Virtuous-Webhooks-\">You can learn more about our webhooks here.</a></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-bulk-endpoints\">3) Bulk Endpoints</h4>\n<p>Anytime you're querying for objects, or updating a group of objects, use our bulk endpoints. For example, if you want to query for all gifts in a batch, use the gift query endpoint and search by the batch rather than querying for each gift in a batch. Another example would be when updating a list of projects, use our project bulk update endpoint rather than updating each project individually.</p>\n<h4 id=\"4-read-the-response\">4) 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<h4 id=\"5-use-the-transaction-endpoints-for-gifts-and-contacts\">5) Use the Transaction Endpoints for Gifts and Contacts</h4>\n<p>We highly recommend using the Gift and Contact transaction endpoints instead of creating Gifts and Contacts directly to avoid duplication of Contacts. Learn more about this under Import Tool Endpoints.</p>\n<h1 id=\"import-tool-endpoints\">Import Tool Endpoints</h1>\n<h4 id=\"how-the-import-endpoints-work\">How the Import Endpoints work:</h4>\n<ol>\n<li><p>Transactions are posted to the API and are set to a holding state.</p>\n</li>\n<li><p>At midnight, transactions are bundled into imports based on the source they were posted with.</p>\n</li>\n<li><p>Imports are processed.</p>\n</li>\n<li><p>The organization reviews the imported transactions, and then clicks run.</p>\n</li>\n<li><p>When the import is run, we will create the actual Gifts and send webhooks to each webhook subscriber.</p>\n</li>\n</ol>\n<h4 id=\"benefits\">Benefits</h4>\n<ul>\n<li><p><strong>Contact Matching:</strong> The transaction endpoints will match contacts based on their addresses, emails, phones, references, and names. If you choose to create a contact directly, you are likely to create duplicates.</p>\n</li>\n<li><p><strong>Validation:</strong> the transaction endpoints will provide validation for the contacts, gifts, premiums, designations, etc., and will not allow duplicate or bad data to enter the organization's database.</p>\n</li>\n<li><p><strong>Gift Matching:</strong> when a Gift goes through the Gift Transaction tool, it will be processed will intelligent matching to determine if the gift should be associated with a Recurring Gift Payment, or a Pledge Payment. It will also identify which Contact the Gift belongs to. If it cannot determine a matching Contact, it will be placed into the <em>needs update</em> bucket for a user to determine where it goes.</p>\n</li>\n<li><p><strong>Summary:</strong> There are many benefits including intelligent matching in the transactions endpoints and it's nearly impossible to provide the same level of data integrity when you create Gifts and Contacts directly. We are not responsible for data cleanup if a mistake is made when creating Gifts and Contacts directly.</p>\n</li>\n</ul>\n<h4 id=\"common-questions\">Common Questions</h4>\n<ul>\n<li>Why don't I get a response when sending Gifts or Contacts to the transaction endpoints? The transaction endpoints do not create Gifts and Contacts in real-time, but rather they process them after the fact. If you need to know when Gifts and Contacts are created, <a href=\"https://app.virtuoussoftware.com/Generosity/Webhook\">use webhooks.</a> Webhooks are helpful because they will notify you of <em>any</em> Gifts or Contacts that are created, not just the ones you create. 🙌</li>\n</ul>\n<h1 id=\"virtuous-forms\">Virtuous Forms</h1>\n<p>Virtuous Forms allow users to set default values, override settings, and expose an onSuccess event. The success event can be used to track the event with Facebook Pixel, Google Analytics or to display a custom message.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">//load the form embed in the HTML where you would like it displayed\n//default values and success event can be loaded in the header or footer\nlet VirtuousForms = VirtuousForms || {};\nVirtuousForms.settings = {\n     firstName: 'DEFAULT_VALUE',\n     lastName: 'DEFAULT_VALUE',\n     email: 'DEFAULT_VALUE',\n     onSuccess: function(response) {\n          //track event here....\n     }\n};\n\n</code></pre>\n</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":"Best Practices","slug":"best-practices"},{"content":"Import Tool Endpoints","slug":"import-tool-endpoints"},{"content":"Virtuous Forms","slug":"virtuous-forms"}],"owner":"19331481","collectionId":"aa0c66a4-0e87-428e-b56c-40e803949ed7","publishedId":"UVeAuTw4","public":true,"customColor":{"top-bar":"162329","right-sidebar":"162329","highlight":"00a3e3"},"publishDate":"2022-02-10T17:49:47.000Z"},"item":[{"name":"Account and Permissions","item":[{"name":"Authentication Token","item":[{"name":"Get Token","id":"899b354a-86a1-41e9-ac40-303cfd0ccda5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"grant_type","value":"password","type":"text"},{"key":"username","value":"bobloblaw@loblaw.org","description":"<p>Username</p>\n","type":"text"},{"key":"password","value":"SomeFancyGoodPassword","description":"<p>Password</p>\n","type":"text"},{"key":"otp","value":"012345","description":"<p>Only required when 2FA is enabled for the user</p>\n","type":"text"}]},"url":"https://api.virtuoussoftware.com/Token","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["Token"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"806b9ec1-fa25-436a-a40c-a652cbb4206d","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"grant_type","value":"password","type":"text"},{"key":"username","value":"bobloblaw@loblaw.org","description":"Username","type":"text"},{"key":"password","value":"SomeFancyGoodPassword","description":"Password","type":"text"},{"key":"otp","value":"012345","description":"Only required when 2FA is enabled for the user","type":"text"}]},"url":"https://api.virtuoussoftware.com/Token"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"access_token\": \"abc123.....\",\n\t\"token_type\": \"bearer\",\n\t\"expires_in\": 3599,\n\t\"refresh_token\": \"zyx987...\",\n\t\"userName\": \"bobloblaw@loblaw.org\",\n\t\"twoFactorEnabled\": \"True\",\n\t\".issued\": \"Thu, 10 Feb 2022 22:27:19 GMT\",\n\t\".expires\": \"Thu, 10 Feb 2022 23:27:19 GMT\"\n}"}],"_postman_id":"899b354a-86a1-41e9-ac40-303cfd0ccda5"}],"id":"18ba55f3-1d8c-450c-801c-1c3ebccc60dd","_postman_id":"18ba55f3-1d8c-450c-801c-1c3ebccc60dd","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Organization","item":[{"name":"Get the Organizations the current user belongs to","id":"c097204e-dbd7-4ad9-8ca8-ee9961d16e1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Organization","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Organization"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"801feaf1-99b0-47e5-9efe-b7b239dd79e4","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Organization"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"organizationUserId\": 12345,\n\t\t\"organizationName\": \"The Human Fund (Sandbox)\",\n\t\t\"organizationTimeZone\": \"US/Arizona\",\n\t\t\"organizationCulture\": \"en-US\",\n\t\t\"isAdministrator\": true,\n\t\t\"isEnabled\": true\n\t},\n\t{\n\t\t\"organizationUserId\": 67890,\n\t\t\"organizationName\": \"The Human Fund\",\n\t\t\"organizationTimeZone\": \"US/Arizona\",\n\t\t\"organizationCulture\": \"en-US\",\n\t\t\"isAdministrator\": true,\n\t\t\"isEnabled\": true\n\t}\n]"}],"_postman_id":"c097204e-dbd7-4ad9-8ca8-ee9961d16e1a"},{"name":"Get the Current Organization for the current user","id":"ba04990d-6579-405d-8a98-67471e9ff24c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Organization/Current","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Organization","Current"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"33a7adf5-3d3b-4c9b-a084-e1a53d3c2076","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Organization/Current"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"organizationUserId\": 67890,\n\t\"organizationName\": \"The Human Fund\",\n\t\"organizationTimeZone\": \"US/Arizona\",\n\t\"organizationCulture\": \"en-US\",\n\t\"currentUserTimeZone\": \"US/Arizona\",\n\t\"isAdministrator\": true,\n\t\"isEnabled\": true\n}"},{"id":"4c68e67e-2729-4378-abe4-b33e5658dd48","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Organization/Current"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ba04990d-6579-405d-8a98-67471e9ff24c"},{"name":"Switch the Current Organization","id":"56ecc784-298a-4a0f-9944-0616428ee0ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"organizationUserId\": \"12345\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Organization/Switch","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Organization","Switch"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"e3538f8e-2fdd-4990-9831-c1e2d1a0f07b","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"organizationUserId\": 12345\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Organization/Switch"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"bccb60c9-cfc4-49c2-b289-6e5ff44dddc1","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"organizationUserId\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Organization/Switch"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":"{\r\n\t\"message\": \"The request is invalid.\",\r\n\t\"modelState\": {\r\n\t\t\"switchOrganization.organizationUserId\": [\r\n\t\t\t\"An error has occurred.\"\r\n\t\t]\r\n\t}\r\n}"},{"id":"fcd0148e-28ad-4602-b734-76f7a31f8693","name":"Forbidden","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"organizationUserId\": 11111\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Organization/Switch"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":"{\r\n\t\"message\": \"The current user does not have permissions to perform this action.\"\r\n}"}],"_postman_id":"56ecc784-298a-4a0f-9944-0616428ee0ed"}],"id":"68a620e8-5fb7-4c1e-a61a-447d70b6ed67","_postman_id":"68a620e8-5fb7-4c1e-a61a-447d70b6ed67","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Permission","item":[{"name":"Get Permissions for the current user","id":"9718828a-169e-42e7-881b-19f347d7b719","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Permission","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Permission"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"723702ec-1151-43eb-8ded-90437320af59","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Permission"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"module\": \"Campaign\",\n\t\t\"action\": \"Delete\",\n\t\t\"allowed\": false\n\t},\n\t{\n\t\t\"module\": \"Campaign\",\n\t\t\"action\": \"Read\",\n\t\t\"allowed\": true\n\t},\n\t{\n\t\t\"module\": \"Campaign\",\n\t\t\"action\": \"Write\",\n\t\t\"allowed\": true\n\t}\n]"}],"_postman_id":"9718828a-169e-42e7-881b-19f347d7b719"}],"id":"3c75dcd9-814a-4245-8a29-10cfe644fd3a","_postman_id":"3c75dcd9-814a-4245-8a29-10cfe644fd3a","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}}],"id":"44ab84ef-eac4-4681-b895-539cfac7cc94","_postman_id":"44ab84ef-eac4-4681-b895-539cfac7cc94","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Contacts and Individuals","item":[{"name":"Contacts","item":[{"name":"How to Get Contacts","item":[{"name":"Get a Contact","id":"118355eb-8028-4751-b5ab-151ff0aa2b22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Contact/:contactId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Contact",":contactId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The contact Id.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactId"}]}},"response":[{"id":"162c6aa8-83d1-4056-aeec-7a4323c510f9","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/:contactId","protocol":"https","host":["api","virtuoussoftware","com"],"path":["api","Contact",":contactId"],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact Id."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"isCurrentUserFollowing\": \"<boolean>\",\n\t\"id\": \"<integer>\",\n\t\"contactType\": \"<string>\",\n\t\"isPrivate\": \"<boolean>\",\n\t\"name\": \"<string>\",\n\t\"informalName\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"website\": \"<string>\",\n\t\"maritalStatus\": \"<string>\",\n\t\"anniversaryMonth\": \"<integer>\",\n\t\"anniversaryDay\": \"<integer>\",\n\t\"anniversaryYear\": \"<integer>\",\n\t\"mergedIntoContactId\": \"<integer>\",\n\t\"address\": {\n\t\t\"id\": \"<integer>\",\n\t\t\"label\": \"<string>\",\n\t\t\"address1\": \"<string>\",\n\t\t\"address2\": \"<string>\",\n\t\t\"city\": \"<string>\",\n\t\t\"state\": \"<string>\",\n\t\t\"postal\": \"<string>\",\n\t\t\"country\": \"<string>\",\n\t\t\"isPrimary\": \"<boolean>\",\n\t\t\"canBePrimary\": \"<boolean>\",\n\t\t\"startMonth\": \"<integer>\",\n\t\t\"startDay\": \"<integer>\",\n\t\t\"endMonth\": \"<integer>\",\n\t\t\"endDay\": \"<integer>\"\n\t},\n\t\"giftAskAmount\": \"<string>\",\n\t\"giftAskType\": \"<string>\",\n\t\"lifeToDateGiving\": \"<string>\",\n\t\"yearToDateGiving\": \"<string>\",\n\t\"lastGiftAmount\": \"<string>\",\n\t\"lastGiftDate\": \"<string>\",\n\t\"contactIndividuals\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"prefix\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"middleName\": \"<string>\",\n\t\t\t\"lastName\": \"<string>\",\n\t\t\t\"suffix\": \"<string>\",\n\t\t\t\"gender\": \"<string>\",\n\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\"canBePrimary\": \"<boolean>\",\n\t\t\t\"isSecondary\": \"<boolean>\",\n\t\t\t\"canBeSecondary\": \"<boolean>\",\n\t\t\t\"birthMonth\": \"<integer>\",\n\t\t\t\"birthDay\": \"<integer>\",\n\t\t\t\"birthYear\": \"<integer>\",\n\t\t\t\"birthDate\": \"<string>\",\n\t\t\t\"approximateAge\": \"<integer>\",\n\t\t\t\"isDeceased\": \"<boolean>\",\n\t\t\t\"passion\": \"<string>\",\n\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\"contactMethods\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"createDateTimeUtc\": \"<dateTime>\",\n\t\t\t\"modifiedDateTimeUtc\": \"<dateTime>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"customCollections\": [\n\t\t\t\t{\n\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"prefix\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"middleName\": \"<string>\",\n\t\t\t\"lastName\": \"<string>\",\n\t\t\t\"suffix\": \"<string>\",\n\t\t\t\"gender\": \"<string>\",\n\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\"canBePrimary\": \"<boolean>\",\n\t\t\t\"isSecondary\": \"<boolean>\",\n\t\t\t\"canBeSecondary\": \"<boolean>\",\n\t\t\t\"birthMonth\": \"<integer>\",\n\t\t\t\"birthDay\": \"<integer>\",\n\t\t\t\"birthYear\": \"<integer>\",\n\t\t\t\"birthDate\": \"<string>\",\n\t\t\t\"approximateAge\": \"<integer>\",\n\t\t\t\"isDeceased\": \"<boolean>\",\n\t\t\t\"passion\": \"<string>\",\n\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\"contactMethods\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"createDateTimeUtc\": \"<dateTime>\",\n\t\t\t\"modifiedDateTimeUtc\": \"<dateTime>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"customCollections\": [\n\t\t\t\t{\n\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"contactGiftsUrl\": \"<string>\",\n\t\"contactPassthroughGiftsUrl\": \"<string>\",\n\t\"contactPlannedGiftsUrl\": \"<string>\",\n\t\"contactRecurringGiftsUrl\": \"<string>\",\n\t\"contactImportantNotesUrl\": \"<string>\",\n\t\"contactNotesUrl\": \"<string>\",\n\t\"contactTagsUrl\": \"<string>\",\n\t\"contactRelationshipsUrl\": \"<string>\",\n\t\"primaryAvatarUrl\": \"<string>\",\n\t\"contactReferences\": [\n\t\t{\n\t\t\t\"source\": \"<string>\",\n\t\t\t\"id\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"source\": \"<string>\",\n\t\t\t\"id\": \"<string>\"\n\t\t}\n\t],\n\t\"originSegmentId\": \"<integer>\",\n\t\"originSegment\": \"<string>\",\n\t\"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n\t\"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"tags\": [\n\t\t\"<string>\",\n\t\t\"<string>\"\n\t],\n\t\"organizationGroups\": [\n\t\t\"<string>\",\n\t\t\"<string>\"\n\t],\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t],\n\t\"customCollections\": [\n\t\t{\n\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\"fields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\"fields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t]\n}"},{"id":"65ebe709-5506-4bf0-ad1a-928c88fff7a5","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/:contactId","host":["https://api.virtuoussoftware.com"],"path":["api","Contact",":contactId"],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact Id."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"118355eb-8028-4751-b5ab-151ff0aa2b22"},{"name":"Get a Contact by Reference Source and ID","id":"0188f30c-9404-4767-a1db-8851250cf6d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Contact/:referenceSource/:referenceId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Contact",":referenceSource",":referenceId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The reference source.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"referenceSource"},{"description":{"content":"<p>(Required) The reference identifier.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"referenceId"}]}},"response":[{"id":"b0e0995c-f65c-4818-8524-075a75d355b3","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/:referenceSource/:referenceId","protocol":"https","host":["api","virtuoussoftware","com"],"path":["api","Contact",":referenceSource",":referenceId"],"variable":[{"key":"referenceSource","value":"<string>","description":"(Required) The reference source."},{"key":"referenceId","value":"<string>","description":"(Required) The reference identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"isCurrentUserFollowing\": \"<boolean>\",\n\t\"id\": \"<integer>\",\n\t\"contactType\": \"<string>\",\n\t\"isPrivate\": \"<boolean>\",\n\t\"name\": \"<string>\",\n\t\"informalName\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"website\": \"<string>\",\n\t\"maritalStatus\": \"<string>\",\n\t\"anniversaryMonth\": \"<integer>\",\n\t\"anniversaryDay\": \"<integer>\",\n\t\"anniversaryYear\": \"<integer>\",\n\t\"mergedIntoContactId\": \"<integer>\",\n\t\"address\": {\n\t\t\"id\": \"<integer>\",\n\t\t\"label\": \"<string>\",\n\t\t\"address1\": \"<string>\",\n\t\t\"address2\": \"<string>\",\n\t\t\"city\": \"<string>\",\n\t\t\"state\": \"<string>\",\n\t\t\"postal\": \"<string>\",\n\t\t\"country\": \"<string>\",\n\t\t\"isPrimary\": \"<boolean>\",\n\t\t\"canBePrimary\": \"<boolean>\",\n\t\t\"startMonth\": \"<integer>\",\n\t\t\"startDay\": \"<integer>\",\n\t\t\"endMonth\": \"<integer>\",\n\t\t\"endDay\": \"<integer>\"\n\t},\n\t\"giftAskAmount\": \"<string>\",\n\t\"giftAskType\": \"<string>\",\n\t\"lifeToDateGiving\": \"<string>\",\n\t\"yearToDateGiving\": \"<string>\",\n\t\"lastGiftAmount\": \"<string>\",\n\t\"lastGiftDate\": \"<string>\",\n\t\"contactIndividuals\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"prefix\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"middleName\": \"<string>\",\n\t\t\t\"lastName\": \"<string>\",\n\t\t\t\"suffix\": \"<string>\",\n\t\t\t\"gender\": \"<string>\",\n\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\"canBePrimary\": \"<boolean>\",\n\t\t\t\"isSecondary\": \"<boolean>\",\n\t\t\t\"canBeSecondary\": \"<boolean>\",\n\t\t\t\"birthMonth\": \"<integer>\",\n\t\t\t\"birthDay\": \"<integer>\",\n\t\t\t\"birthYear\": \"<integer>\",\n\t\t\t\"birthDate\": \"<string>\",\n\t\t\t\"approximateAge\": \"<integer>\",\n\t\t\t\"isDeceased\": \"<boolean>\",\n\t\t\t\"passion\": \"<string>\",\n\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\"contactMethods\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"createDateTimeUtc\": \"<dateTime>\",\n\t\t\t\"modifiedDateTimeUtc\": \"<dateTime>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"customCollections\": [\n\t\t\t\t{\n\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"prefix\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"middleName\": \"<string>\",\n\t\t\t\"lastName\": \"<string>\",\n\t\t\t\"suffix\": \"<string>\",\n\t\t\t\"gender\": \"<string>\",\n\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\"canBePrimary\": \"<boolean>\",\n\t\t\t\"isSecondary\": \"<boolean>\",\n\t\t\t\"canBeSecondary\": \"<boolean>\",\n\t\t\t\"birthMonth\": \"<integer>\",\n\t\t\t\"birthDay\": \"<integer>\",\n\t\t\t\"birthYear\": \"<integer>\",\n\t\t\t\"birthDate\": \"<string>\",\n\t\t\t\"approximateAge\": \"<integer>\",\n\t\t\t\"isDeceased\": \"<boolean>\",\n\t\t\t\"passion\": \"<string>\",\n\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\"contactMethods\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"createDateTimeUtc\": \"<dateTime>\",\n\t\t\t\"modifiedDateTimeUtc\": \"<dateTime>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"customCollections\": [\n\t\t\t\t{\n\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"contactGiftsUrl\": \"<string>\",\n\t\"contactPassthroughGiftsUrl\": \"<string>\",\n\t\"contactPlannedGiftsUrl\": \"<string>\",\n\t\"contactRecurringGiftsUrl\": \"<string>\",\n\t\"contactImportantNotesUrl\": \"<string>\",\n\t\"contactNotesUrl\": \"<string>\",\n\t\"contactTagsUrl\": \"<string>\",\n\t\"contactRelationshipsUrl\": \"<string>\",\n\t\"primaryAvatarUrl\": \"<string>\",\n\t\"contactReferences\": [\n\t\t{\n\t\t\t\"source\": \"<string>\",\n\t\t\t\"id\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"source\": \"<string>\",\n\t\t\t\"id\": \"<string>\"\n\t\t}\n\t],\n\t\"originSegmentId\": \"<integer>\",\n\t\"originSegment\": \"<string>\",\n\t\"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n\t\"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"tags\": [\n\t\t\"<string>\",\n\t\t\"<string>\"\n\t],\n\t\"organizationGroups\": [\n\t\t\"<string>\",\n\t\t\"<string>\"\n\t],\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t],\n\t\"customCollections\": [\n\t\t{\n\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\"fields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\"fields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t]\n}"},{"id":"1a0c3116-c6ce-4cfb-808f-2a50a6e5f815","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/:referenceSource/:referenceId","host":["https://api.virtuoussoftware.com"],"path":["api","Contact",":referenceSource",":referenceId"],"variable":[{"key":"referenceSource","value":"<string>","description":"(Required) The reference source."},{"key":"referenceId","value":"<string>","description":"(Required) The reference identifier."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"0188f30c-9404-4767-a1db-8851250cf6d9"},{"name":"Get a Contact by Reference ID","id":"1b9d2d8a-5b0d-4615-899b-257c07454b78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Contact/ByReference/:referenceId","description":"<p>HMAC Auth only.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Contact","ByReference",":referenceId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The reference identifier.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"referenceId"}]}},"response":[{"id":"a27f1f55-bc0f-426d-9981-b3d5eb0c112a","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/ByReference/:referenceId","host":["https://api.virtuoussoftware.com"],"path":["api","Contact","ByReference",":referenceId"],"variable":[{"key":"referenceId","value":"<string>","description":"(Required) The reference identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"contactType\": \"<string>\",\n\t\"isPrivate\": \"<boolean>\",\n\t\"name\": \"<string>\",\n\t\"informalName\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"website\": \"<string>\",\n\t\"maritalStatus\": \"<string>\",\n\t\"anniversaryMonth\": \"<integer>\",\n\t\"anniversaryDay\": \"<integer>\",\n\t\"anniversaryYear\": \"<integer>\",\n\t\"giftAskAmount\": \"<string>\",\n\t\"giftAskType\": \"<string>\",\n\t\"lifeToDateGiving\": \"<string>\",\n\t\"yearToDateGiving\": \"<string>\",\n\t\"lastGiftAmount\": \"<string>\",\n\t\"lastGiftDate\": \"<string>\",\n\t\"contactIndividuals\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"prefix\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"middleName\": \"<string>\",\n\t\t\t\"lastName\": \"<string>\",\n\t\t\t\"suffix\": \"<string>\",\n\t\t\t\"gender\": \"<string>\",\n\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\"isSecondary\": \"<boolean>\",\n\t\t\t\"birthMonth\": \"<integer>\",\n\t\t\t\"birthDay\": \"<integer>\",\n\t\t\t\"birthYear\": \"<integer>\",\n\t\t\t\"birthDate\": \"<string>\",\n\t\t\t\"approximateAge\": \"<integer>\",\n\t\t\t\"isDeceased\": \"<boolean>\",\n\t\t\t\"passion\": \"<string>\",\n\t\t\t\"contactMethods\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"prefix\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"middleName\": \"<string>\",\n\t\t\t\"lastName\": \"<string>\",\n\t\t\t\"suffix\": \"<string>\",\n\t\t\t\"gender\": \"<string>\",\n\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\"isSecondary\": \"<boolean>\",\n\t\t\t\"birthMonth\": \"<integer>\",\n\t\t\t\"birthDay\": \"<integer>\",\n\t\t\t\"birthYear\": \"<integer>\",\n\t\t\t\"birthDate\": \"<string>\",\n\t\t\t\"approximateAge\": \"<integer>\",\n\t\t\t\"isDeceased\": \"<boolean>\",\n\t\t\t\"passion\": \"<string>\",\n\t\t\t\"contactMethods\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"address\": {\n\t\t\"id\": \"<integer>\",\n\t\t\"label\": \"<string>\",\n\t\t\"address1\": \"<string>\",\n\t\t\"address2\": \"<string>\",\n\t\t\"city\": \"<string>\",\n\t\t\"state\": \"<string>\",\n\t\t\"postal\": \"<string>\",\n\t\t\"country\": \"<string>\",\n\t\t\"isPrimary\": \"<boolean>\",\n\t\t\"startMonth\": \"<integer>\",\n\t\t\"startDay\": \"<integer>\",\n\t\t\"endMonth\": \"<integer>\",\n\t\t\"endDay\": \"<integer>\"\n\t}\n}"},{"id":"b38704e4-9d6e-42c1-806d-03530f5c6b2b","name":"BadRequest","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/ByReference/:referenceId","host":["https://api.virtuoussoftware.com"],"path":["api","Contact","ByReference",":referenceId"],"variable":[{"key":"referenceId","value":"<string>","description":"(Required) The reference identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"23867e42-c6cd-4fe3-a8a0-298df3a8357b","name":"Forbidden","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/ByReference/:referenceId","host":["https://api.virtuoussoftware.com"],"path":["api","Contact","ByReference",":referenceId"],"variable":[{"key":"referenceId","value":"<string>","description":"(Required) The reference identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"c650fd27-15b5-403b-9c96-7be3710f870d","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/ByReference/:referenceId","host":["https://api.virtuoussoftware.com"],"path":["api","Contact","ByReference",":referenceId"],"variable":[{"key":"referenceId","value":"<string>","description":"(Required) The reference identifier."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"1b9d2d8a-5b0d-4615-899b-257c07454b78"},{"name":"Get Contacts by Tag ID","id":"84a3f2c6-364d-4a1e-a29e-4b3a51cdc9a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Contact/ByTag/:tagId?filter=<string>&sortBy=<string>&descending=<boolean>&skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Contact","ByTag",":tagId"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The filter. If provided will filter by Id, Name or Email address.</p>\n","type":"text/plain"},"key":"filter","value":"<string>"},{"description":{"content":"<p>The field to be sorted. Supported: Id, Name, CreatedDateTime.</p>\n","type":"text/plain"},"key":"sortBy","value":"<string>"},{"description":{"content":"<p>The direction to be sorted.</p>\n","type":"text/plain"},"key":"descending","value":"<boolean>"},{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) The tag identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"tagId"}]}},"response":[{"id":"eaed3e97-9985-4780-9d16-836b22b830ee","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/ByTag/:tagId?filter=<string>&sortBy=<string>&descending=<boolean>&skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Contact","ByTag",":tagId"],"query":[{"key":"filter","value":"<string>"},{"key":"sortBy","value":"<string>"},{"key":"descending","value":"<boolean>"},{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}],"variable":[{"key":"tagId","value":"<integer>","description":"(Required) The tag identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"contactType\": \"<string>\",\n\t\t\t\"contactName\": \"<string>\",\n\t\t\t\"address\": \"<string>\",\n\t\t\t\"email\": \"<string>\",\n\t\t\t\"phone\": \"<string>\",\n\t\t\t\"contactViewUrl\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"contactType\": \"<string>\",\n\t\t\t\"contactName\": \"<string>\",\n\t\t\t\"address\": \"<string>\",\n\t\t\t\"email\": \"<string>\",\n\t\t\t\"phone\": \"<string>\",\n\t\t\t\"contactViewUrl\": \"<string>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"84a3f2c6-364d-4a1e-a29e-4b3a51cdc9a6"},{"name":"Find a Contact by Email Address or Reference Source and ID","id":"d4fb962c-c02b-4128-aa62-8f2822dd2e6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Contact/Find?email=<string>&referenceSource=<string>&referenceId=<string>","description":"<p>Either email addres <em>or</em> reference source and id are required.\n            Providing both will prioritize the reference source and id.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Contact","Find"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The email address.</p>\n","type":"text/plain"},"key":"email","value":"<string>"},{"description":{"content":"<p>The reference source. Examples: Stripe, MailChimp, Shopify</p>\n","type":"text/plain"},"key":"referenceSource","value":"<string>"},{"description":{"content":"<p>The reference identifier that belongs to the reference source.</p>\n","type":"text/plain"},"key":"referenceId","value":"<string>"}],"variable":[]}},"response":[{"id":"1476d5ab-dff3-41f9-b143-52c11ee55a76","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/Find?email=<string>&referenceSource=<string>&referenceId=<string>","host":["https://api.virtuoussoftware.com"],"path":["api","Contact","Find"],"query":[{"key":"email","value":"<string>"},{"key":"referenceSource","value":"<string>"},{"key":"referenceId","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"contactType\": \"<string>\",\n\t\"isPrivate\": \"<boolean>\",\n\t\"name\": \"<string>\",\n\t\"informalName\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"website\": \"<string>\",\n\t\"maritalStatus\": \"<string>\",\n\t\"anniversaryMonth\": \"<integer>\",\n\t\"anniversaryDay\": \"<integer>\",\n\t\"anniversaryYear\": \"<integer>\",\n\t\"mergedIntoContactId\": \"<integer>\",\n\t\"address\": {\n\t\t\"id\": \"<integer>\",\n\t\t\"label\": \"<string>\",\n\t\t\"address1\": \"<string>\",\n\t\t\"address2\": \"<string>\",\n\t\t\"city\": \"<string>\",\n\t\t\"state\": \"<string>\",\n\t\t\"postal\": \"<string>\",\n\t\t\"country\": \"<string>\",\n\t\t\"isPrimary\": \"<boolean>\",\n\t\t\"canBePrimary\": \"<boolean>\",\n\t\t\"startMonth\": \"<integer>\",\n\t\t\"startDay\": \"<integer>\",\n\t\t\"endMonth\": \"<integer>\",\n\t\t\"endDay\": \"<integer>\"\n\t},\n\t\"giftAskAmount\": \"<string>\",\n\t\"giftAskType\": \"<string>\",\n\t\"lifeToDateGiving\": \"<string>\",\n\t\"yearToDateGiving\": \"<string>\",\n\t\"lastGiftAmount\": \"<string>\",\n\t\"lastGiftDate\": \"<string>\",\n\t\"contactIndividuals\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"prefix\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"middleName\": \"<string>\",\n\t\t\t\"lastName\": \"<string>\",\n\t\t\t\"suffix\": \"<string>\",\n\t\t\t\"gender\": \"<string>\",\n\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\"canBePrimary\": \"<boolean>\",\n\t\t\t\"isSecondary\": \"<boolean>\",\n\t\t\t\"canBeSecondary\": \"<boolean>\",\n\t\t\t\"birthMonth\": \"<integer>\",\n\t\t\t\"birthDay\": \"<integer>\",\n\t\t\t\"birthYear\": \"<integer>\",\n\t\t\t\"birthDate\": \"<string>\",\n\t\t\t\"approximateAge\": \"<integer>\",\n\t\t\t\"isDeceased\": \"<boolean>\",\n\t\t\t\"passion\": \"<string>\",\n\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\"contactMethods\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"createDateTimeUtc\": \"<dateTime>\",\n\t\t\t\"modifiedDateTimeUtc\": \"<dateTime>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"customCollections\": [\n\t\t\t\t{\n\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"prefix\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"middleName\": \"<string>\",\n\t\t\t\"lastName\": \"<string>\",\n\t\t\t\"suffix\": \"<string>\",\n\t\t\t\"gender\": \"<string>\",\n\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\"canBePrimary\": \"<boolean>\",\n\t\t\t\"isSecondary\": \"<boolean>\",\n\t\t\t\"canBeSecondary\": \"<boolean>\",\n\t\t\t\"birthMonth\": \"<integer>\",\n\t\t\t\"birthDay\": \"<integer>\",\n\t\t\t\"birthYear\": \"<integer>\",\n\t\t\t\"birthDate\": \"<string>\",\n\t\t\t\"approximateAge\": \"<integer>\",\n\t\t\t\"isDeceased\": \"<boolean>\",\n\t\t\t\"passion\": \"<string>\",\n\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\"contactMethods\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"createDateTimeUtc\": \"<dateTime>\",\n\t\t\t\"modifiedDateTimeUtc\": \"<dateTime>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"customCollections\": [\n\t\t\t\t{\n\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"contactGiftsUrl\": \"<string>\",\n\t\"contactPassthroughGiftsUrl\": \"<string>\",\n\t\"contactPlannedGiftsUrl\": \"<string>\",\n\t\"contactRecurringGiftsUrl\": \"<string>\",\n\t\"contactImportantNotesUrl\": \"<string>\",\n\t\"contactNotesUrl\": \"<string>\",\n\t\"contactTagsUrl\": \"<string>\",\n\t\"contactRelationshipsUrl\": \"<string>\",\n\t\"primaryAvatarUrl\": \"<string>\",\n\t\"contactReferences\": [\n\t\t{\n\t\t\t\"source\": \"<string>\",\n\t\t\t\"id\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"source\": \"<string>\",\n\t\t\t\"id\": \"<string>\"\n\t\t}\n\t],\n\t\"originSegmentId\": \"<integer>\",\n\t\"originSegment\": \"<string>\",\n\t\"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n\t\"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"tags\": [\n\t\t\"<string>\",\n\t\t\"<string>\"\n\t],\n\t\"organizationGroups\": [\n\t\t\"<string>\",\n\t\t\"<string>\"\n\t],\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t],\n\t\"customCollections\": [\n\t\t{\n\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\"fields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\"fields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t]\n}"},{"id":"3b9731a5-340a-49a8-8786-496f443ac026","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/Find?email=<string>&referenceSource=<string>&referenceId=<string>","host":["https://api.virtuoussoftware.com"],"path":["api","Contact","Find"],"query":[{"key":"email","value":"<string>"},{"key":"referenceSource","value":"<string>"},{"key":"referenceId","value":"<string>"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d4fb962c-c02b-4128-aa62-8f2822dd2e6c"},{"name":"Find all Contacts that match, fully or partially, the given search parameters","id":"75c52b0c-3d7e-47c7-ba2a-a2f8c9a2f91d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"search\": \"Weyland\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Contact/Search?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Contact","Search"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"bd6fffd5-6654-4ea1-b346-edeb3176ba80","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/Search?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Contact","Search"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"individualId\": 1123,\n\t\t\t\"name\": \"Charles Bishop Weyland\",\n\t\t\t\"id\": 1111,\n\t\t\t\"contactType\": \"Organization\",\n\t\t\t\"contactName\": \"Weyland-Yutani Corporation\",\n\t\t\t\"address\": \"Tokyo, Japan\",\n\t\t\t\"email\": \"inquiries@weyland-yutani.com\",\n\t\t\t\"phone\": \"800-555-1234\",\n\t\t\t\"contactViewUrl\": \"https://api.virtuoussoftware.com/api/Contact/1111\"\n\t\t},\n\t\t{\n\t\t\t\"individualId\": 1344,\n\t\t\t\"name\": \"Carter Burke\",\n\t\t\t\"id\": 1233,\n\t\t\t\"contactType\": \"Household\",\n\t\t\t\"contactName\": \"Carter Burke\",\n\t\t\t\"address\": null,\n\t\t\t\"email\": \"carter.burke@weyland-yutani.com\",\n\t\t\t\"phone\": \"623-555-2933\",\n\t\t\t\"contactViewUrl\": \"https://api.virtuoussoftware.com/api/Contact/1233\"\n\t\t}\n\t],\n\t\"total\": 2\n}"}],"_postman_id":"75c52b0c-3d7e-47c7-ba2a-a2f8c9a2f91d"},{"name":"Find all Contacts within a given proximity of a geocoordinate","id":"78cff7bd-04fd-44e5-809f-625b2d63280c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"latitude\": \"<double>\",\n    \"longitude\": \"<double>\",\n    \"distanceInMiles\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Contact/Proximity?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Contact","Proximity"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"b360b24a-0d25-4905-aae4-bbfa8d882415","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"latitude\": \"<double>\",\n    \"longitude\": \"<double>\",\n    \"distanceInMiles\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/Proximity?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Contact","Proximity"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"id\": \"<integer>\",\n\t\t\"name\": \"<string>\",\n\t\t\"address\": \"<string>\",\n\t\t\"lifeToDateGiving\": \"<string>\",\n\t\t\"contactViewUrl\": \"<string>\",\n\t\t\"latitude\": \"<double>\",\n\t\t\"longitude\": \"<double>\"\n\t},\n\t{\n\t\t\"id\": \"<integer>\",\n\t\t\"name\": \"<string>\",\n\t\t\"address\": \"<string>\",\n\t\t\"lifeToDateGiving\": \"<string>\",\n\t\t\"contactViewUrl\": \"<string>\",\n\t\t\"latitude\": \"<double>\",\n\t\t\"longitude\": \"<double>\"\n\t}\n]"},{"id":"d01829f4-062b-4660-a027-b9e71bc486f4","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"latitude\": \"<double>\",\n    \"longitude\": \"<double>\",\n    \"distanceInMiles\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/Proximity?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Contact","Proximity"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"78cff7bd-04fd-44e5-809f-625b2d63280c"},{"name":"Get the Activity for the Contacts the current user is following","id":"8d547c98-fc38-403c-bedd-d73713be1c63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Contact/Activity?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Contact","Activity"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"0d0b5b7b-9043-441d-abf0-397a9a2a01f7","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/Activity?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Contact","Activity"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactName\": \"<string>\",\n\t\t\t\"activity\": \"<string>\",\n\t\t\t\"contactViewUrl\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactName\": \"<string>\",\n\t\t\t\"activity\": \"<string>\",\n\t\t\t\"contactViewUrl\": \"<string>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"8d547c98-fc38-403c-bedd-d73713be1c63"},{"name":"Get the Contacts the current user is following","id":"0b0bd866-0c5b-463e-9d2e-f348cc32def0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Contact/Following?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Contact","Following"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"d4ebe6b4-b97e-4e59-941b-cb43bef5ad1d","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/Following?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Contact","Following"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"contactType\": \"<string>\",\n\t\t\t\"contactName\": \"<string>\",\n\t\t\t\"address\": \"<string>\",\n\t\t\t\"email\": \"<string>\",\n\t\t\t\"phone\": \"<string>\",\n\t\t\t\"contactViewUrl\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"contactType\": \"<string>\",\n\t\t\t\"contactName\": \"<string>\",\n\t\t\t\"address\": \"<string>\",\n\t\t\t\"email\": \"<string>\",\n\t\t\t\"phone\": \"<string>\",\n\t\t\t\"contactViewUrl\": \"<string>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"0b0bd866-0c5b-463e-9d2e-f348cc32def0"}],"id":"8ad08b9f-360f-4016-8d8c-b0b07af9c117","_postman_id":"8ad08b9f-360f-4016-8d8c-b0b07af9c117","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"How to Create and Update Contacts","item":[{"name":"Create a Contact","id":"ac338617-d5b2-4ce0-93c5-9921be01ec88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"contactType\": \"<string>\",\n    \"referenceSource\": \"<string>\",\n    \"referenceId\": \"<string>\",\n    \"name\": \"<string>\",\n    \"informalName\": \"<string>\",\n    \"description\": \"<string>\",\n    \"website\": \"<string>\",\n    \"maritalStatus\": \"<string>\",\n    \"anniversaryMonth\": \"<integer>\",\n    \"anniversaryDay\": \"<integer>\",\n    \"anniversaryYear\": \"<integer>\",\n    \"originSegmentId\": \"<integer>\",\n    \"isPrivate\": \"<boolean>\",\n    \"isArchived\": \"<boolean>\",\n    \"contactAddresses\": [\n        {\n            \"label\": \"<string>\",\n            \"address1\": \"<string>\",\n            \"address2\": \"<string>\",\n            \"city\": \"<string>\",\n            \"stateCode\": \"<string>\",\n            \"postal\": \"<string>\",\n            \"countryCode\": \"<string>\",\n            \"isPrimary\": \"<boolean>\",\n            \"latitude\": \"<double>\",\n            \"longitude\": \"<double>\"\n        },\n        {\n            \"label\": \"<string>\",\n            \"address1\": \"<string>\",\n            \"address2\": \"<string>\",\n            \"city\": \"<string>\",\n            \"stateCode\": \"<string>\",\n            \"postal\": \"<string>\",\n            \"countryCode\": \"<string>\",\n            \"isPrimary\": \"<boolean>\",\n            \"latitude\": \"<double>\",\n            \"longitude\": \"<double>\"\n        }\n    ],\n    \"contactIndividuals\": [\n        {\n            \"firstName\": \"<string>\",\n            \"lastName\": \"<string>\",\n            \"prefix\": \"<string>\",\n            \"middleName\": \"<string>\",\n            \"suffix\": \"<string>\",\n            \"birthMonth\": \"<integer>\",\n            \"birthDay\": \"<integer>\",\n            \"birthYear\": \"<integer>\",\n            \"approximateAge\": \"<integer>\",\n            \"gender\": \"<string>\",\n            \"passion\": \"<string>\",\n            \"isPrimary\": \"<boolean>\",\n            \"isSecondary\": \"<boolean>\",\n            \"isDeceased\": \"<boolean>\",\n            \"contactMethods\": [\n                {\n                    \"type\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"isOptedIn\": \"<boolean>\",\n                    \"isPrimary\": \"<boolean>\"\n                },\n                {\n                    \"type\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"isOptedIn\": \"<boolean>\",\n                    \"isPrimary\": \"<boolean>\"\n                }\n            ],\n            \"customFields\": \"<object>\"\n        },\n        {\n            \"firstName\": \"<string>\",\n            \"lastName\": \"<string>\",\n            \"prefix\": \"<string>\",\n            \"middleName\": \"<string>\",\n            \"suffix\": \"<string>\",\n            \"birthMonth\": \"<integer>\",\n            \"birthDay\": \"<integer>\",\n            \"birthYear\": \"<integer>\",\n            \"approximateAge\": \"<integer>\",\n            \"gender\": \"<string>\",\n            \"passion\": \"<string>\",\n            \"isPrimary\": \"<boolean>\",\n            \"isSecondary\": \"<boolean>\",\n            \"isDeceased\": \"<boolean>\",\n            \"contactMethods\": [\n                {\n                    \"type\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"isOptedIn\": \"<boolean>\",\n                    \"isPrimary\": \"<boolean>\"\n                },\n                {\n                    \"type\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"isOptedIn\": \"<boolean>\",\n                    \"isPrimary\": \"<boolean>\"\n                }\n            ],\n            \"customFields\": \"<object>\"\n        }\n    ],\n    \"customFields\": \"<object>\",\n    \"customCollections\": [\n        {\n            \"name\": \"<string>\",\n            \"fields\": [\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                }\n            ]\n        },\n        {\n            \"name\": \"<string>\",\n            \"fields\": [\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                }\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Contact","description":"<p>Will not check for contact duplicates.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Contact"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"59fb8fdb-0fff-4eb8-844e-dfca16e2610b","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactType\": \"<string>\",\n    \"referenceSource\": \"<string>\",\n    \"referenceId\": \"<string>\",\n    \"name\": \"<string>\",\n    \"informalName\": \"<string>\",\n    \"description\": \"<string>\",\n    \"website\": \"<string>\",\n    \"maritalStatus\": \"<string>\",\n    \"anniversaryMonth\": \"<integer>\",\n    \"anniversaryDay\": \"<integer>\",\n    \"anniversaryYear\": \"<integer>\",\n    \"originSegmentId\": \"<integer>\",\n    \"isPrivate\": \"<boolean>\",\n    \"isArchived\": \"<boolean>\",\n    \"contactAddresses\": [\n        {\n            \"label\": \"<string>\",\n            \"address1\": \"<string>\",\n            \"address2\": \"<string>\",\n            \"city\": \"<string>\",\n            \"stateCode\": \"<string>\",\n            \"postal\": \"<string>\",\n            \"countryCode\": \"<string>\",\n            \"isPrimary\": \"<boolean>\",\n            \"latitude\": \"<double>\",\n            \"longitude\": \"<double>\"\n        },\n        {\n            \"label\": \"<string>\",\n            \"address1\": \"<string>\",\n            \"address2\": \"<string>\",\n            \"city\": \"<string>\",\n            \"stateCode\": \"<string>\",\n            \"postal\": \"<string>\",\n            \"countryCode\": \"<string>\",\n            \"isPrimary\": \"<boolean>\",\n            \"latitude\": \"<double>\",\n            \"longitude\": \"<double>\"\n        }\n    ],\n    \"contactIndividuals\": [\n        {\n            \"firstName\": \"<string>\",\n            \"lastName\": \"<string>\",\n            \"prefix\": \"<string>\",\n            \"middleName\": \"<string>\",\n            \"suffix\": \"<string>\",\n            \"birthMonth\": \"<integer>\",\n            \"birthDay\": \"<integer>\",\n            \"birthYear\": \"<integer>\",\n            \"approximateAge\": \"<integer>\",\n            \"gender\": \"<string>\",\n            \"passion\": \"<string>\",\n            \"isPrimary\": \"<boolean>\",\n            \"isSecondary\": \"<boolean>\",\n            \"isDeceased\": \"<boolean>\",\n            \"contactMethods\": [\n                {\n                    \"type\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"isOptedIn\": \"<boolean>\",\n                    \"isPrimary\": \"<boolean>\"\n                },\n                {\n                    \"type\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"isOptedIn\": \"<boolean>\",\n                    \"isPrimary\": \"<boolean>\"\n                }\n            ],\n            \"customFields\": \"<object>\"\n        },\n        {\n            \"firstName\": \"<string>\",\n            \"lastName\": \"<string>\",\n            \"prefix\": \"<string>\",\n            \"middleName\": \"<string>\",\n            \"suffix\": \"<string>\",\n            \"birthMonth\": \"<integer>\",\n            \"birthDay\": \"<integer>\",\n            \"birthYear\": \"<integer>\",\n            \"approximateAge\": \"<integer>\",\n            \"gender\": \"<string>\",\n            \"passion\": \"<string>\",\n            \"isPrimary\": \"<boolean>\",\n            \"isSecondary\": \"<boolean>\",\n            \"isDeceased\": \"<boolean>\",\n            \"contactMethods\": [\n                {\n                    \"type\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"isOptedIn\": \"<boolean>\",\n                    \"isPrimary\": \"<boolean>\"\n                },\n                {\n                    \"type\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"isOptedIn\": \"<boolean>\",\n                    \"isPrimary\": \"<boolean>\"\n                }\n            ],\n            \"customFields\": \"<object>\"\n        }\n    ],\n    \"customFields\": \"<object>\",\n    \"customCollections\": [\n        {\n            \"name\": \"<string>\",\n            \"fields\": [\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                }\n            ]\n        },\n        {\n            \"name\": \"<string>\",\n            \"fields\": [\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                }\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Contact"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"contactType\": \"<string>\",\n\t\"isPrivate\": \"<boolean>\",\n\t\"name\": \"<string>\",\n\t\"informalName\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"website\": \"<string>\",\n\t\"maritalStatus\": \"<string>\",\n\t\"anniversaryMonth\": \"<integer>\",\n\t\"anniversaryDay\": \"<integer>\",\n\t\"anniversaryYear\": \"<integer>\",\n\t\"mergedIntoContactId\": \"<integer>\",\n\t\"address\": {\n\t\t\"id\": \"<integer>\",\n\t\t\"label\": \"<string>\",\n\t\t\"address1\": \"<string>\",\n\t\t\"address2\": \"<string>\",\n\t\t\"city\": \"<string>\",\n\t\t\"state\": \"<string>\",\n\t\t\"postal\": \"<string>\",\n\t\t\"country\": \"<string>\",\n\t\t\"isPrimary\": \"<boolean>\",\n\t\t\"canBePrimary\": \"<boolean>\",\n\t\t\"startMonth\": \"<integer>\",\n\t\t\"startDay\": \"<integer>\",\n\t\t\"endMonth\": \"<integer>\",\n\t\t\"endDay\": \"<integer>\"\n\t},\n\t\"giftAskAmount\": \"<string>\",\n\t\"giftAskType\": \"<string>\",\n\t\"lifeToDateGiving\": \"<string>\",\n\t\"yearToDateGiving\": \"<string>\",\n\t\"lastGiftAmount\": \"<string>\",\n\t\"lastGiftDate\": \"<string>\",\n\t\"contactIndividuals\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"prefix\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"middleName\": \"<string>\",\n\t\t\t\"lastName\": \"<string>\",\n\t\t\t\"suffix\": \"<string>\",\n\t\t\t\"gender\": \"<string>\",\n\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\"canBePrimary\": \"<boolean>\",\n\t\t\t\"isSecondary\": \"<boolean>\",\n\t\t\t\"canBeSecondary\": \"<boolean>\",\n\t\t\t\"birthMonth\": \"<integer>\",\n\t\t\t\"birthDay\": \"<integer>\",\n\t\t\t\"birthYear\": \"<integer>\",\n\t\t\t\"birthDate\": \"<string>\",\n\t\t\t\"approximateAge\": \"<integer>\",\n\t\t\t\"isDeceased\": \"<boolean>\",\n\t\t\t\"passion\": \"<string>\",\n\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\"contactMethods\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"createDateTimeUtc\": \"<dateTime>\",\n\t\t\t\"modifiedDateTimeUtc\": \"<dateTime>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"customCollections\": [\n\t\t\t\t{\n\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"prefix\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"middleName\": \"<string>\",\n\t\t\t\"lastName\": \"<string>\",\n\t\t\t\"suffix\": \"<string>\",\n\t\t\t\"gender\": \"<string>\",\n\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\"canBePrimary\": \"<boolean>\",\n\t\t\t\"isSecondary\": \"<boolean>\",\n\t\t\t\"canBeSecondary\": \"<boolean>\",\n\t\t\t\"birthMonth\": \"<integer>\",\n\t\t\t\"birthDay\": \"<integer>\",\n\t\t\t\"birthYear\": \"<integer>\",\n\t\t\t\"birthDate\": \"<string>\",\n\t\t\t\"approximateAge\": \"<integer>\",\n\t\t\t\"isDeceased\": \"<boolean>\",\n\t\t\t\"passion\": \"<string>\",\n\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\"contactMethods\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"createDateTimeUtc\": \"<dateTime>\",\n\t\t\t\"modifiedDateTimeUtc\": \"<dateTime>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"customCollections\": [\n\t\t\t\t{\n\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"contactGiftsUrl\": \"<string>\",\n\t\"contactPassthroughGiftsUrl\": \"<string>\",\n\t\"contactPlannedGiftsUrl\": \"<string>\",\n\t\"contactRecurringGiftsUrl\": \"<string>\",\n\t\"contactImportantNotesUrl\": \"<string>\",\n\t\"contactNotesUrl\": \"<string>\",\n\t\"contactTagsUrl\": \"<string>\",\n\t\"contactRelationshipsUrl\": \"<string>\",\n\t\"primaryAvatarUrl\": \"<string>\",\n\t\"contactReferences\": [\n\t\t{\n\t\t\t\"source\": \"<string>\",\n\t\t\t\"id\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"source\": \"<string>\",\n\t\t\t\"id\": \"<string>\"\n\t\t}\n\t],\n\t\"originSegmentId\": \"<integer>\",\n\t\"originSegment\": \"<string>\",\n\t\"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n\t\"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"tags\": [\n\t\t\"<string>\",\n\t\t\"<string>\"\n\t],\n\t\"organizationGroups\": [\n\t\t\"<string>\",\n\t\t\"<string>\"\n\t],\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t],\n\t\"customCollections\": [\n\t\t{\n\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\"fields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\"fields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t]\n}"},{"id":"2c190ec1-9cf7-45f8-b18f-9368af5fcf54","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactType\": \"<string>\",\n    \"referenceSource\": \"<string>\",\n    \"referenceId\": \"<string>\",\n    \"name\": \"<string>\",\n    \"informalName\": \"<string>\",\n    \"description\": \"<string>\",\n    \"website\": \"<string>\",\n    \"maritalStatus\": \"<string>\",\n    \"anniversaryMonth\": \"<integer>\",\n    \"anniversaryDay\": \"<integer>\",\n    \"anniversaryYear\": \"<integer>\",\n    \"originSegmentId\": \"<integer>\",\n    \"isPrivate\": \"<boolean>\",\n    \"isArchived\": \"<boolean>\",\n    \"contactAddresses\": [\n        {\n            \"label\": \"<string>\",\n            \"address1\": \"<string>\",\n            \"address2\": \"<string>\",\n            \"city\": \"<string>\",\n            \"stateCode\": \"<string>\",\n            \"postal\": \"<string>\",\n            \"countryCode\": \"<string>\",\n            \"isPrimary\": \"<boolean>\",\n            \"latitude\": \"<double>\",\n            \"longitude\": \"<double>\"\n        },\n        {\n            \"label\": \"<string>\",\n            \"address1\": \"<string>\",\n            \"address2\": \"<string>\",\n            \"city\": \"<string>\",\n            \"stateCode\": \"<string>\",\n            \"postal\": \"<string>\",\n            \"countryCode\": \"<string>\",\n            \"isPrimary\": \"<boolean>\",\n            \"latitude\": \"<double>\",\n            \"longitude\": \"<double>\"\n        }\n    ],\n    \"contactIndividuals\": [\n        {\n            \"firstName\": \"<string>\",\n            \"lastName\": \"<string>\",\n            \"prefix\": \"<string>\",\n            \"middleName\": \"<string>\",\n            \"suffix\": \"<string>\",\n            \"birthMonth\": \"<integer>\",\n            \"birthDay\": \"<integer>\",\n            \"birthYear\": \"<integer>\",\n            \"approximateAge\": \"<integer>\",\n            \"gender\": \"<string>\",\n            \"passion\": \"<string>\",\n            \"isPrimary\": \"<boolean>\",\n            \"isSecondary\": \"<boolean>\",\n            \"isDeceased\": \"<boolean>\",\n            \"contactMethods\": [\n                {\n                    \"type\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"isOptedIn\": \"<boolean>\",\n                    \"isPrimary\": \"<boolean>\"\n                },\n                {\n                    \"type\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"isOptedIn\": \"<boolean>\",\n                    \"isPrimary\": \"<boolean>\"\n                }\n            ],\n            \"customFields\": \"<object>\"\n        },\n        {\n            \"firstName\": \"<string>\",\n            \"lastName\": \"<string>\",\n            \"prefix\": \"<string>\",\n            \"middleName\": \"<string>\",\n            \"suffix\": \"<string>\",\n            \"birthMonth\": \"<integer>\",\n            \"birthDay\": \"<integer>\",\n            \"birthYear\": \"<integer>\",\n            \"approximateAge\": \"<integer>\",\n            \"gender\": \"<string>\",\n            \"passion\": \"<string>\",\n            \"isPrimary\": \"<boolean>\",\n            \"isSecondary\": \"<boolean>\",\n            \"isDeceased\": \"<boolean>\",\n            \"contactMethods\": [\n                {\n                    \"type\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"isOptedIn\": \"<boolean>\",\n                    \"isPrimary\": \"<boolean>\"\n                },\n                {\n                    \"type\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"isOptedIn\": \"<boolean>\",\n                    \"isPrimary\": \"<boolean>\"\n                }\n            ],\n            \"customFields\": \"<object>\"\n        }\n    ],\n    \"customFields\": \"<object>\",\n    \"customCollections\": [\n        {\n            \"name\": \"<string>\",\n            \"fields\": [\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                }\n            ]\n        },\n        {\n            \"name\": \"<string>\",\n            \"fields\": [\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                }\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Contact"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ac338617-d5b2-4ce0-93c5-9921be01ec88"},{"name":"Update a Contact","id":"b1903993-cd12-400c-ba44-5ac553ae117c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"contactType\": \"<string>\",\n    \"name\": \"<string>\",\n    \"informalName\": \"<string>\",\n    \"description\": \"<string>\",\n    \"website\": \"<string>\",\n    \"maritalStatus\": \"<string>\",\n    \"anniversaryMonth\": \"<integer>\",\n    \"anniversaryDay\": \"<integer>\",\n    \"anniversaryYear\": \"<integer>\",\n    \"originSegmentId\": \"<integer>\",\n    \"isPrivate\": \"<boolean>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ],\n    \"customCollections\": [\n        {\n            \"name\": \"<string>\",\n            \"fields\": [\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                }\n            ]\n        },\n        {\n            \"name\": \"<string>\",\n            \"fields\": [\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                }\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Contact/:contactId","description":"<p>Similar to other update methods in the API, excluding a property will remove it's value from the object.\nIf you're only updating a single property, the entire model is still required.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Contact",":contactId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactId"}]}},"response":[{"id":"93d85e96-b6fd-421a-8425-50e2b23af33d","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"contactType\": \"<string>\",\n    \"name\": \"<string>\",\n    \"informalName\": \"<string>\",\n    \"description\": \"<string>\",\n    \"website\": \"<string>\",\n    \"maritalStatus\": \"<string>\",\n    \"anniversaryMonth\": \"<integer>\",\n    \"anniversaryDay\": \"<integer>\",\n    \"anniversaryYear\": \"<integer>\",\n    \"originSegmentId\": \"<integer>\",\n    \"isPrivate\": \"<boolean>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ],\n    \"customCollections\": [\n        {\n            \"name\": \"<string>\",\n            \"fields\": [\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                }\n            ]\n        },\n        {\n            \"name\": \"<string>\",\n            \"fields\": [\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                }\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/:contactId","host":["https://api.virtuoussoftware.com"],"path":["api","Contact",":contactId"],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"isCurrentUserFollowing\": \"<boolean>\",\n\t\"id\": \"<integer>\",\n\t\"contactType\": \"<string>\",\n\t\"isPrivate\": \"<boolean>\",\n\t\"name\": \"<string>\",\n\t\"informalName\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"website\": \"<string>\",\n\t\"maritalStatus\": \"<string>\",\n\t\"anniversaryMonth\": \"<integer>\",\n\t\"anniversaryDay\": \"<integer>\",\n\t\"anniversaryYear\": \"<integer>\",\n\t\"mergedIntoContactId\": \"<integer>\",\n\t\"address\": {\n\t\t\"id\": \"<integer>\",\n\t\t\"label\": \"<string>\",\n\t\t\"address1\": \"<string>\",\n\t\t\"address2\": \"<string>\",\n\t\t\"city\": \"<string>\",\n\t\t\"state\": \"<string>\",\n\t\t\"postal\": \"<string>\",\n\t\t\"country\": \"<string>\",\n\t\t\"isPrimary\": \"<boolean>\",\n\t\t\"canBePrimary\": \"<boolean>\",\n\t\t\"startMonth\": \"<integer>\",\n\t\t\"startDay\": \"<integer>\",\n\t\t\"endMonth\": \"<integer>\",\n\t\t\"endDay\": \"<integer>\"\n\t},\n\t\"giftAskAmount\": \"<string>\",\n\t\"giftAskType\": \"<string>\",\n\t\"lifeToDateGiving\": \"<string>\",\n\t\"yearToDateGiving\": \"<string>\",\n\t\"lastGiftAmount\": \"<string>\",\n\t\"lastGiftDate\": \"<string>\",\n\t\"contactIndividuals\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"prefix\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"middleName\": \"<string>\",\n\t\t\t\"lastName\": \"<string>\",\n\t\t\t\"suffix\": \"<string>\",\n\t\t\t\"gender\": \"<string>\",\n\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\"canBePrimary\": \"<boolean>\",\n\t\t\t\"isSecondary\": \"<boolean>\",\n\t\t\t\"canBeSecondary\": \"<boolean>\",\n\t\t\t\"birthMonth\": \"<integer>\",\n\t\t\t\"birthDay\": \"<integer>\",\n\t\t\t\"birthYear\": \"<integer>\",\n\t\t\t\"birthDate\": \"<string>\",\n\t\t\t\"approximateAge\": \"<integer>\",\n\t\t\t\"isDeceased\": \"<boolean>\",\n\t\t\t\"passion\": \"<string>\",\n\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\"contactMethods\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"createDateTimeUtc\": \"<dateTime>\",\n\t\t\t\"modifiedDateTimeUtc\": \"<dateTime>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"customCollections\": [\n\t\t\t\t{\n\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"prefix\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"middleName\": \"<string>\",\n\t\t\t\"lastName\": \"<string>\",\n\t\t\t\"suffix\": \"<string>\",\n\t\t\t\"gender\": \"<string>\",\n\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\"canBePrimary\": \"<boolean>\",\n\t\t\t\"isSecondary\": \"<boolean>\",\n\t\t\t\"canBeSecondary\": \"<boolean>\",\n\t\t\t\"birthMonth\": \"<integer>\",\n\t\t\t\"birthDay\": \"<integer>\",\n\t\t\t\"birthYear\": \"<integer>\",\n\t\t\t\"birthDate\": \"<string>\",\n\t\t\t\"approximateAge\": \"<integer>\",\n\t\t\t\"isDeceased\": \"<boolean>\",\n\t\t\t\"passion\": \"<string>\",\n\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\"contactMethods\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"createDateTimeUtc\": \"<dateTime>\",\n\t\t\t\"modifiedDateTimeUtc\": \"<dateTime>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"customCollections\": [\n\t\t\t\t{\n\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"contactGiftsUrl\": \"<string>\",\n\t\"contactPassthroughGiftsUrl\": \"<string>\",\n\t\"contactPlannedGiftsUrl\": \"<string>\",\n\t\"contactRecurringGiftsUrl\": \"<string>\",\n\t\"contactImportantNotesUrl\": \"<string>\",\n\t\"contactNotesUrl\": \"<string>\",\n\t\"contactTagsUrl\": \"<string>\",\n\t\"contactRelationshipsUrl\": \"<string>\",\n\t\"primaryAvatarUrl\": \"<string>\",\n\t\"contactReferences\": [\n\t\t{\n\t\t\t\"source\": \"<string>\",\n\t\t\t\"id\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"source\": \"<string>\",\n\t\t\t\"id\": \"<string>\"\n\t\t}\n\t],\n\t\"originSegmentId\": \"<integer>\",\n\t\"originSegment\": \"<string>\",\n\t\"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n\t\"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"tags\": [\n\t\t\"<string>\",\n\t\t\"<string>\"\n\t],\n\t\"organizationGroups\": [\n\t\t\"<string>\",\n\t\t\"<string>\"\n\t],\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t],\n\t\"customCollections\": [\n\t\t{\n\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\"fields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\"fields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t]\n}"},{"id":"99c9131f-fe61-47bf-ad52-4cbfc1ff1d71","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"contactType\": \"<string>\",\n    \"name\": \"<string>\",\n    \"informalName\": \"<string>\",\n    \"description\": \"<string>\",\n    \"website\": \"<string>\",\n    \"maritalStatus\": \"<string>\",\n    \"anniversaryMonth\": \"<integer>\",\n    \"anniversaryDay\": \"<integer>\",\n    \"anniversaryYear\": \"<integer>\",\n    \"originSegmentId\": \"<integer>\",\n    \"isPrivate\": \"<boolean>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ],\n    \"customCollections\": [\n        {\n            \"name\": \"<string>\",\n            \"fields\": [\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                }\n            ]\n        },\n        {\n            \"name\": \"<string>\",\n            \"fields\": [\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                }\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/:contactId","host":["https://api.virtuoussoftware.com"],"path":["api","Contact",":contactId"],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"b1903993-cd12-400c-ba44-5ac553ae117c"},{"name":"Archive a Contact","id":"052d1067-9289-4a92-b8c4-f6e436b13f9b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"archiveReason\": \"Optional reason for Archiving the contact\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Contact/Archive/:contactId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Contact","Archive",":contactId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactId"}]}},"response":[{"id":"008b07ed-6159-4819-a4ca-de2de9476d38","name":"OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"archiveReason\": \"Extremely lapsed giver\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/Archive/:contactId","host":["https://api.virtuoussoftware.com"],"path":["api","Contact","Archive",":contactId"],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"d9926b15-4f4d-415f-ac28-49a9233d7366","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/Archive/:contactId","host":["https://api.virtuoussoftware.com"],"path":["api","Contact","Archive",":contactId"],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"052d1067-9289-4a92-b8c4-f6e436b13f9b"},{"name":"Unarchive a Contact","id":"4994fefa-2e0c-40be-8b35-1b297a575016","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://api.virtuoussoftware.com/api/Contact/Unarchive/:contactId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Contact","Unarchive",":contactId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactId"}]}},"response":[{"id":"8140f9b9-efd5-4d05-b96e-184ec5165477","name":"OK","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/Unarchive/:contactId","host":["https://api.virtuoussoftware.com"],"path":["api","Contact","Unarchive",":contactId"],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"\"<object>\""},{"id":"872864d6-16bd-4d23-b970-792c32476ae1","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/Unarchive/:contactId","host":["https://api.virtuoussoftware.com"],"path":["api","Contact","Unarchive",":contactId"],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"4994fefa-2e0c-40be-8b35-1b297a575016"},{"name":"Follow or Unfollow a Contact for the current user","id":"8416ec6d-74e3-4502-9c9f-c4cbdc4eca26","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://api.virtuoussoftware.com/api/Contact/ToggleFollow/:contactId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Contact","ToggleFollow",":contactId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactId"}]}},"response":[{"id":"62480726-01d5-4d32-a289-0aafd853d88e","name":"OK","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/ToggleFollow/:contactId","host":["https://api.virtuoussoftware.com"],"path":["api","Contact","ToggleFollow",":contactId"],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"2fdaee72-6c1e-4612-a861-0d21cde9b603","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/ToggleFollow/:contactId","host":["https://api.virtuoussoftware.com"],"path":["api","Contact","ToggleFollow",":contactId"],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"6b4bc0ec-4df5-4e37-ad25-262f19523b9f","name":"NotFound","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/ToggleFollow/:contactId","host":["https://api.virtuoussoftware.com"],"path":["api","Contact","ToggleFollow",":contactId"],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"8416ec6d-74e3-4502-9c9f-c4cbdc4eca26"}],"id":"43ced63e-ebb1-40c2-8c07-2f6e81abbefe","_postman_id":"43ced63e-ebb1-40c2-8c07-2f6e81abbefe","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Working with Collections","item":[{"name":"Get Custom Collections for Contacts","id":"a1699247-3c3d-4c8e-8348-b97f9134697b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Contact/CustomCollections","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Contact","CustomCollections"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"878305b8-0ed4-49af-9c2e-dd5ea078e48f","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Contact/CustomCollections"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"id\": \"<integer>\",\n\t\t\"entityType\": \"<string>\",\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"fields\": [\n\t\t\t{\n\t\t\t\t\"dataType\": \"<string>\",\n\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\",\n\t\t\t\t\"required\": \"<boolean>\",\n\t\t\t\t\"options\": [\n\t\t\t\t\t\"<string>\",\n\t\t\t\t\t\"<string>\"\n\t\t\t\t]\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"dataType\": \"<string>\",\n\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\",\n\t\t\t\t\"required\": \"<boolean>\",\n\t\t\t\t\"options\": [\n\t\t\t\t\t\"<string>\",\n\t\t\t\t\t\"<string>\"\n\t\t\t\t]\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"id\": \"<integer>\",\n\t\t\"entityType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\",\n\t\t\"fields\": [\n\t\t\t{\n\t\t\t\t\"dataType\": \"<string>\",\n\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\",\n\t\t\t\t\"required\": \"<boolean>\",\n\t\t\t\t\"options\": [\n\t\t\t\t\t\"<string>\",\n\t\t\t\t\t\"<string>\"\n\t\t\t\t]\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"dataType\": \"<string>\",\n\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\",\n\t\t\t\t\"required\": \"<boolean>\",\n\t\t\t\t\"options\": [\n\t\t\t\t\t\"<string>\",\n\t\t\t\t\t\"<string>\"\n\t\t\t\t]\n\t\t\t}\n\t\t]\n\t}\n]"}],"_postman_id":"a1699247-3c3d-4c8e-8348-b97f9134697b"},{"name":"Create Collection for a Contact","id":"028b8b0d-62ae-4427-8b41-7edfe207aa0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"fields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Contact/:contactId/Collection/:customCollectionId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Contact",":contactId","Collection",":customCollectionId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactId"},{"description":{"content":"<p>(Required) The custom collection identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"customCollectionId"}]}},"response":[{"id":"cff20ffa-26e3-4bf1-97a9-a08a29dc1148","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/:contactId/Collection/:customCollectionId","host":["https://api.virtuoussoftware.com"],"path":["api","Contact",":contactId","Collection",":customCollectionId"],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."},{"key":"customCollectionId","value":"<integer>","description":"(Required) The custom collection identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"customCollectionId\": \"<integer>\",\n\t\"customCollectionName\": \"<string>\",\n\t\"collectionInstanceId\": \"<integer>\",\n\t\"fields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"678c8dec-df56-40ee-befb-57127881174e","name":"BadRequest","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/:contactId/Collection/:customCollectionId","host":["https://api.virtuoussoftware.com"],"path":["api","Contact",":contactId","Collection",":customCollectionId"],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."},{"key":"customCollectionId","value":"<integer>","description":"(Required) The custom collection identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"028b8b0d-62ae-4427-8b41-7edfe207aa0f"},{"name":"Update Collection for a Contact","id":"2ee0875f-ab44-417a-88d5-7ae7e400cd45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"fields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Contact/:contactId/Collection/:collectionInstanceId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Contact",":contactId","Collection",":collectionInstanceId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactId"},{"description":{"content":"<p>(Required) The collection instance identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"collectionInstanceId"}]}},"response":[{"id":"bed47e62-cf61-4d19-b829-fb82ec760b30","name":"OK","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/:contactId/Collection/:collectionInstanceId","host":["https://api.virtuoussoftware.com"],"path":["api","Contact",":contactId","Collection",":collectionInstanceId"],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."},{"key":"collectionInstanceId","value":"<integer>","description":"(Required) The collection instance identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"customCollectionId\": \"<integer>\",\n\t\"customCollectionName\": \"<string>\",\n\t\"collectionInstanceId\": \"<integer>\",\n\t\"fields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"d52234ca-a05e-4a0d-9668-7f253fdc0bf5","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/:contactId/Collection/:collectionInstanceId","host":["https://api.virtuoussoftware.com"],"path":["api","Contact",":contactId","Collection",":collectionInstanceId"],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."},{"key":"collectionInstanceId","value":"<integer>","description":"(Required) The collection instance identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"2ee0875f-ab44-417a-88d5-7ae7e400cd45"},{"name":"Delete Collection for a Contact","id":"04ce7d36-130b-46b8-aa98-b19101a012fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.virtuoussoftware.com/api/Contact/:contactId/Collection/:collectionInstanceId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Contact",":contactId","Collection",":collectionInstanceId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactId"},{"description":{"content":"<p>(Required) The collection instance identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"collectionInstanceId"}]}},"response":[{"id":"b2dd689c-13ff-432e-83e5-dcc85e4545cb","name":"OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/:contactId/Collection/:collectionInstanceId","host":["https://api.virtuoussoftware.com"],"path":["api","Contact",":contactId","Collection",":collectionInstanceId"],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."},{"key":"collectionInstanceId","value":"<integer>","description":"(Required) The collection instance identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"64c194b7-a028-4ba6-a016-84b52eaeba2f","name":"BadRequest","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/:contactId/Collection/:collectionInstanceId","host":["https://api.virtuoussoftware.com"],"path":["api","Contact",":contactId","Collection",":collectionInstanceId"],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."},{"key":"collectionInstanceId","value":"<integer>","description":"(Required) The collection instance identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"04ce7d36-130b-46b8-aa98-b19101a012fb"}],"id":"857957be-795a-4d58-a8b4-d2e68f9468f1","description":"<p>A Collection is a custom series of related values/fields with an undefined amount of entries that can be added to Contacts or Individuals. For example, let’s say your organization has an animal adoption program and you want to track all of the animals each Contact has adopted. Using a <em>Custom Field</em> for this wouldn’t work because it would limit them to one animal, so this is where using a <em>Custom Collection</em> would be best. This information could include “Animal Name,” “Cat or Dog,” and “Date Adopted,” and you could have several entries with these fields to track all of the animals adopted by a single Contact.</p>\n","_postman_id":"857957be-795a-4d58-a8b4-d2e68f9468f1","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Contact Imports","item":[{"name":"Create a Contact that will go through the import process","id":"0b27a920-243c-4f02-a5c3-6e522b926431","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"referenceSource\": \"<string>\",\n    \"referenceId\": \"<string>\",\n    \"contactType\": \"<string>\",\n    \"name\": \"<string>\",\n    \"title\": \"<string>\",\n    \"firstName\": \"<string>\",\n    \"middleName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"suffix\": \"<string>\",\n    \"emailType\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phoneType\": \"<string>\",\n    \"phone\": \"<string>\",\n    \"address1\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"postal\": \"<string>\",\n    \"country\": \"<string>\",\n    \"eventId\": \"<integer>\",\n    \"eventName\": \"<string>\",\n    \"invited\": \"<boolean>\",\n    \"rsvp\": \"<boolean>\",\n    \"rsvpResponse\": \"<boolean>\",\n    \"attended\": \"<boolean>\",\n    \"tags\": \"<string>\",\n    \"originSegmentCode\": \"<string>\",\n    \"emailLists\": [\n        \"<string>\",\n        \"<string>\"\n    ],\n    \"customFields\": \"<object>\",\n    \"volunteerAttendances\": [\n        {\n            \"volunteerOpportunityId\": \"<integer>\",\n            \"volunteerOpportunityName\": \"<string>\",\n            \"date\": \"<string>\",\n            \"hours\": \"<string>\"\n        },\n        {\n            \"volunteerOpportunityId\": \"<integer>\",\n            \"volunteerOpportunityName\": \"<string>\",\n            \"date\": \"<string>\",\n            \"hours\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Contact/Transaction","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Contact","Transaction"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"f98de057-7121-45cd-95cf-362cbcb673e3","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"referenceSource\": \"<string>\",\n    \"referenceId\": \"<string>\",\n    \"contactType\": \"<string>\",\n    \"name\": \"<string>\",\n    \"title\": \"<string>\",\n    \"firstName\": \"<string>\",\n    \"middleName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"suffix\": \"<string>\",\n    \"emailType\": \"<string>\",\n    \"email\": \"<string>\",\n    \"phoneType\": \"<string>\",\n    \"phone\": \"<string>\",\n    \"address1\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"postal\": \"<string>\",\n    \"country\": \"<string>\",\n    \"eventId\": \"<integer>\",\n    \"eventName\": \"<string>\",\n    \"invited\": \"<boolean>\",\n    \"rsvp\": \"<boolean>\",\n    \"rsvpResponse\": \"<boolean>\",\n    \"attended\": \"<boolean>\",\n    \"tags\": \"<string>\",\n    \"originSegmentCode\": \"<string>\",\n    \"emailLists\": [\n        \"<string>\",\n        \"<string>\"\n    ],\n    \"customFields\": \"<object>\",\n    \"volunteerAttendances\": [\n        {\n            \"volunteerOpportunityId\": \"<integer>\",\n            \"volunteerOpportunityName\": \"<string>\",\n            \"date\": \"<string>\",\n            \"hours\": \"<string>\"\n        },\n        {\n            \"volunteerOpportunityId\": \"<integer>\",\n            \"volunteerOpportunityName\": \"<string>\",\n            \"date\": \"<string>\",\n            \"hours\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Contact/Transaction"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"0b27a920-243c-4f02-a5c3-6e522b926431"},{"name":"Create a Contact Import that will be processed for changes and duplicates","id":"fe6c2bdd-e65a-4e7c-b503-9ede0b7ea9f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"referenceSource\": \"<string>\",\n    \"contacts\": [\n        {\n            \"referenceId\": \"<string>\",\n            \"contactType\": \"<string>\",\n            \"name\": \"<string>\",\n            \"title\": \"<string>\",\n            \"firstName\": \"<string>\",\n            \"middleName\": \"<string>\",\n            \"lastName\": \"<string>\",\n            \"suffix\": \"<string>\",\n            \"emailType\": \"<string>\",\n            \"email\": \"<string>\",\n            \"phoneType\": \"<string>\",\n            \"phone\": \"<string>\",\n            \"address1\": \"<string>\",\n            \"address2\": \"<string>\",\n            \"city\": \"<string>\",\n            \"state\": \"<string>\",\n            \"postal\": \"<string>\",\n            \"country\": \"<string>\",\n            \"eventId\": \"<integer>\",\n            \"eventName\": \"<string>\",\n            \"invited\": \"<boolean>\",\n            \"rsvp\": \"<boolean>\",\n            \"rsvpResponse\": \"<boolean>\",\n            \"attended\": \"<boolean>\",\n            \"tags\": \"<string>\",\n            \"originSegmentCode\": \"<string>\",\n            \"emailLists\": [\n                \"<string>\",\n                \"<string>\"\n            ],\n            \"customFields\": \"<object>\",\n            \"volunteerAttendances\": [\n                {\n                    \"volunteerOpportunityId\": \"<integer>\",\n                    \"volunteerOpportunityName\": \"<string>\",\n                    \"date\": \"<string>\",\n                    \"hours\": \"<string>\"\n                },\n                {\n                    \"volunteerOpportunityId\": \"<integer>\",\n                    \"volunteerOpportunityName\": \"<string>\",\n                    \"date\": \"<string>\",\n                    \"hours\": \"<string>\"\n                }\n            ]\n        },\n        {\n            \"referenceId\": \"<string>\",\n            \"contactType\": \"<string>\",\n            \"name\": \"<string>\",\n            \"title\": \"<string>\",\n            \"firstName\": \"<string>\",\n            \"middleName\": \"<string>\",\n            \"lastName\": \"<string>\",\n            \"suffix\": \"<string>\",\n            \"emailType\": \"<string>\",\n            \"email\": \"<string>\",\n            \"phoneType\": \"<string>\",\n            \"phone\": \"<string>\",\n            \"address1\": \"<string>\",\n            \"address2\": \"<string>\",\n            \"city\": \"<string>\",\n            \"state\": \"<string>\",\n            \"postal\": \"<string>\",\n            \"country\": \"<string>\",\n            \"eventId\": \"<integer>\",\n            \"eventName\": \"<string>\",\n            \"invited\": \"<boolean>\",\n            \"rsvp\": \"<boolean>\",\n            \"rsvpResponse\": \"<boolean>\",\n            \"attended\": \"<boolean>\",\n            \"tags\": \"<string>\",\n            \"originSegmentCode\": \"<string>\",\n            \"emailLists\": [\n                \"<string>\",\n                \"<string>\"\n            ],\n            \"customFields\": \"<object>\",\n            \"volunteerAttendances\": [\n                {\n                    \"volunteerOpportunityId\": \"<integer>\",\n                    \"volunteerOpportunityName\": \"<string>\",\n                    \"date\": \"<string>\",\n                    \"hours\": \"<string>\"\n                },\n                {\n                    \"volunteerOpportunityId\": \"<integer>\",\n                    \"volunteerOpportunityName\": \"<string>\",\n                    \"date\": \"<string>\",\n                    \"hours\": \"<string>\"\n                }\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Contact/Batch","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Contact","Batch"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"7e5750e1-7cb6-40c4-9cc9-cc66fce56102","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"referenceSource\": \"<string>\",\n    \"contacts\": [\n        {\n            \"referenceId\": \"<string>\",\n            \"contactType\": \"<string>\",\n            \"name\": \"<string>\",\n            \"title\": \"<string>\",\n            \"firstName\": \"<string>\",\n            \"middleName\": \"<string>\",\n            \"lastName\": \"<string>\",\n            \"suffix\": \"<string>\",\n            \"emailType\": \"<string>\",\n            \"email\": \"<string>\",\n            \"phoneType\": \"<string>\",\n            \"phone\": \"<string>\",\n            \"address1\": \"<string>\",\n            \"address2\": \"<string>\",\n            \"city\": \"<string>\",\n            \"state\": \"<string>\",\n            \"postal\": \"<string>\",\n            \"country\": \"<string>\",\n            \"eventId\": \"<integer>\",\n            \"eventName\": \"<string>\",\n            \"invited\": \"<boolean>\",\n            \"rsvp\": \"<boolean>\",\n            \"rsvpResponse\": \"<boolean>\",\n            \"attended\": \"<boolean>\",\n            \"tags\": \"<string>\",\n            \"originSegmentCode\": \"<string>\",\n            \"emailLists\": [\n                \"<string>\",\n                \"<string>\"\n            ],\n            \"customFields\": \"<object>\",\n            \"volunteerAttendances\": [\n                {\n                    \"volunteerOpportunityId\": \"<integer>\",\n                    \"volunteerOpportunityName\": \"<string>\",\n                    \"date\": \"<string>\",\n                    \"hours\": \"<string>\"\n                },\n                {\n                    \"volunteerOpportunityId\": \"<integer>\",\n                    \"volunteerOpportunityName\": \"<string>\",\n                    \"date\": \"<string>\",\n                    \"hours\": \"<string>\"\n                }\n            ]\n        },\n        {\n            \"referenceId\": \"<string>\",\n            \"contactType\": \"<string>\",\n            \"name\": \"<string>\",\n            \"title\": \"<string>\",\n            \"firstName\": \"<string>\",\n            \"middleName\": \"<string>\",\n            \"lastName\": \"<string>\",\n            \"suffix\": \"<string>\",\n            \"emailType\": \"<string>\",\n            \"email\": \"<string>\",\n            \"phoneType\": \"<string>\",\n            \"phone\": \"<string>\",\n            \"address1\": \"<string>\",\n            \"address2\": \"<string>\",\n            \"city\": \"<string>\",\n            \"state\": \"<string>\",\n            \"postal\": \"<string>\",\n            \"country\": \"<string>\",\n            \"eventId\": \"<integer>\",\n            \"eventName\": \"<string>\",\n            \"invited\": \"<boolean>\",\n            \"rsvp\": \"<boolean>\",\n            \"rsvpResponse\": \"<boolean>\",\n            \"attended\": \"<boolean>\",\n            \"tags\": \"<string>\",\n            \"originSegmentCode\": \"<string>\",\n            \"emailLists\": [\n                \"<string>\",\n                \"<string>\"\n            ],\n            \"customFields\": \"<object>\",\n            \"volunteerAttendances\": [\n                {\n                    \"volunteerOpportunityId\": \"<integer>\",\n                    \"volunteerOpportunityName\": \"<string>\",\n                    \"date\": \"<string>\",\n                    \"hours\": \"<string>\"\n                },\n                {\n                    \"volunteerOpportunityId\": \"<integer>\",\n                    \"volunteerOpportunityName\": \"<string>\",\n                    \"date\": \"<string>\",\n                    \"hours\": \"<string>\"\n                }\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Contact/Batch"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"fe6c2bdd-e65a-4e7c-b503-9ede0b7ea9f7"}],"id":"caad4c0c-8471-417c-9f9d-b8c0a3858de1","_postman_id":"caad4c0c-8471-417c-9f9d-b8c0a3858de1","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Configuration","item":[{"name":"Get Contact Name Prefixes and Titles","id":"fc692434-1f79-4d7d-96bd-71f741eab7e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Contact/Prefixes","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Contact","Prefixes"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"36d79487-7e10-4746-9651-dcb1db89a870","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Contact/Prefixes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t\"<string>\",\n\t\"<string>\"\n]"}],"_postman_id":"fc692434-1f79-4d7d-96bd-71f741eab7e9"},{"name":"Get Contact Types","id":"a55a9047-cda1-4a9d-8c79-0b62e2246597","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Contact/Types","description":"<p>Default types include Household, Organization and Foundation. Configurable via CRM.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Contact","Types"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"12375550-bfea-4b30-a203-7f18ff9c3af5","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Contact/Types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"parentType\": \"<string>\",\n\t\t\"type\": \"<string>\"\n\t},\n\t{\n\t\t\"parentType\": \"<string>\",\n\t\t\"type\": \"<string>\"\n\t}\n]"}],"_postman_id":"a55a9047-cda1-4a9d-8c79-0b62e2246597"},{"name":"Get Contact Custom Fields Available","id":"060c7f43-3ff8-40a3-8e29-431cecb27f3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Contact/CustomFields","description":"<p>Will return all enabled custom fields available for the Contact object.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Contact","CustomFields"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"493a024a-6381-48fb-8b30-ab0153061c45","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Contact/CustomFields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"dataType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"displayName\": \"<string>\",\n\t\t\"options\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t},\n\t{\n\t\t\"dataType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"displayName\": \"<string>\",\n\t\t\"options\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t}\n]"}],"_postman_id":"060c7f43-3ff8-40a3-8e29-431cecb27f3e"}],"id":"c9ab390e-fd41-4584-9ce0-34ea6b13c312","_postman_id":"c9ab390e-fd41-4584-9ce0-34ea6b13c312","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Contact Queries","item":[{"name":"Get Contact Query Options","id":"8f5e939c-e1e4-481e-a58e-f858d3217b53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Contact/QueryOptions","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Contact","QueryOptions"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"460b695c-8005-498a-a152-bf3925c753e5","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Contact/QueryOptions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"options\": [\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t}\n\t],\n\t\"operatorOptions\": [\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t},\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t}\n\t]\n}"}],"_postman_id":"8f5e939c-e1e4-481e-a58e-f858d3217b53"},{"name":"Query Contacts with Abbreviated Details","id":"1e6894db-136d-49ae-a581-29d747a1f413","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"includeArchived\": \"<boolean>\",\n    \"queryLocation\": {\n        \"topLatitude\": \"<double>\",\n        \"leftLongitude\": \"<double>\",\n        \"bottomLatitude\": \"<double>\",\n        \"rightLongitude\": \"<double>\"\n    },\n    \"groups\": [\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        }\n    ],\n    \"sortBy\": \"<string>\",\n    \"descending\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Contact/Query?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Contact","Query"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10. Max is 1000.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"d174ac3a-0445-4a6e-b442-500c3260210c","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/Query?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Contact","Query"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"contactType\": \"<string>\",\n\t\t\t\"contactName\": \"<string>\",\n\t\t\t\"address\": \"<string>\",\n\t\t\t\"email\": \"<string>\",\n\t\t\t\"phone\": \"<string>\",\n\t\t\t\"contactViewUrl\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"contactType\": \"<string>\",\n\t\t\t\"contactName\": \"<string>\",\n\t\t\t\"address\": \"<string>\",\n\t\t\t\"email\": \"<string>\",\n\t\t\t\"phone\": \"<string>\",\n\t\t\t\"contactViewUrl\": \"<string>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"},{"id":"c15e9bca-7461-41fc-9701-75266f4a6675","name":"BadRequest","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/Query?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Contact","Query"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"1e6894db-136d-49ae-a581-29d747a1f413"},{"name":"Query Contacts with Full Details","id":"8038c7bb-93be-4275-807e-949fb71a638f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\t\"includeArchived\": \"<boolean>\",\n    \"queryLocation\": {\n        \"topLatitude\": \"<double>\",\n        \"leftLongitude\": \"<double>\",\n        \"bottomLatitude\": \"<double>\",\n        \"rightLongitude\": \"<double>\"\n    },\n    \"groups\": [\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        }\n    ],\n    \"sortBy\": \"<string>\",\n    \"descending\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Contact/Query/FullContact?skip=<integer>&take=<integer>","description":"<p>Includes full contact details instead of an abbreviated contact.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Contact","Query","FullContact"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10. Max is 1000.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"e6d156bb-521a-4ccf-aff7-65e379eb0e6a","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/Query/FullContact?skip=<integer>&take=<integer>","protocol":"https","host":["api","virtuoussoftware","com"],"path":["api","Contact","Query","FullContact"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactType\": \"<string>\",\n\t\t\t\"isPrivate\": \"<boolean>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"informalName\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"website\": \"<string>\",\n\t\t\t\"maritalStatus\": \"<string>\",\n\t\t\t\"anniversaryMonth\": \"<integer>\",\n\t\t\t\"anniversaryDay\": \"<integer>\",\n\t\t\t\"anniversaryYear\": \"<integer>\",\n\t\t\t\"mergedIntoContactId\": \"<integer>\",\n\t\t\t\"address\": {\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"label\": \"<string>\",\n\t\t\t\t\"address1\": \"<string>\",\n\t\t\t\t\"address2\": \"<string>\",\n\t\t\t\t\"city\": \"<string>\",\n\t\t\t\t\"state\": \"<string>\",\n\t\t\t\t\"postal\": \"<string>\",\n\t\t\t\t\"country\": \"<string>\",\n\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\"canBePrimary\": \"<boolean>\",\n\t\t\t\t\"startMonth\": \"<integer>\",\n\t\t\t\t\"startDay\": \"<integer>\",\n\t\t\t\t\"endMonth\": \"<integer>\",\n\t\t\t\t\"endDay\": \"<integer>\"\n\t\t\t},\n\t\t\t\"giftAskAmount\": \"<string>\",\n\t\t\t\"giftAskType\": \"<string>\",\n\t\t\t\"lifeToDateGiving\": \"<string>\",\n\t\t\t\"yearToDateGiving\": \"<string>\",\n\t\t\t\"lastGiftAmount\": \"<string>\",\n\t\t\t\"lastGiftDate\": \"<string>\",\n\t\t\t\"contactIndividuals\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\"prefix\": \"<string>\",\n\t\t\t\t\t\"firstName\": \"<string>\",\n\t\t\t\t\t\"middleName\": \"<string>\",\n\t\t\t\t\t\"lastName\": \"<string>\",\n\t\t\t\t\t\"suffix\": \"<string>\",\n\t\t\t\t\t\"gender\": \"<string>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\"canBePrimary\": \"<boolean>\",\n\t\t\t\t\t\"isSecondary\": \"<boolean>\",\n\t\t\t\t\t\"canBeSecondary\": \"<boolean>\",\n\t\t\t\t\t\"birthMonth\": \"<integer>\",\n\t\t\t\t\t\"birthDay\": \"<integer>\",\n\t\t\t\t\t\"birthYear\": \"<integer>\",\n\t\t\t\t\t\"birthDate\": \"<string>\",\n\t\t\t\t\t\"approximateAge\": \"<integer>\",\n\t\t\t\t\t\"isDeceased\": \"<boolean>\",\n\t\t\t\t\t\"passion\": \"<string>\",\n\t\t\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\t\t\"contactMethods\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t],\n\t\t\t\t\t\"createDateTimeUtc\": \"<dateTime>\",\n\t\t\t\t\t\"modifiedDateTimeUtc\": \"<dateTime>\",\n\t\t\t\t\t\"customFields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t],\n\t\t\t\t\t\"customCollections\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\"prefix\": \"<string>\",\n\t\t\t\t\t\"firstName\": \"<string>\",\n\t\t\t\t\t\"middleName\": \"<string>\",\n\t\t\t\t\t\"lastName\": \"<string>\",\n\t\t\t\t\t\"suffix\": \"<string>\",\n\t\t\t\t\t\"gender\": \"<string>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\"canBePrimary\": \"<boolean>\",\n\t\t\t\t\t\"isSecondary\": \"<boolean>\",\n\t\t\t\t\t\"canBeSecondary\": \"<boolean>\",\n\t\t\t\t\t\"birthMonth\": \"<integer>\",\n\t\t\t\t\t\"birthDay\": \"<integer>\",\n\t\t\t\t\t\"birthYear\": \"<integer>\",\n\t\t\t\t\t\"birthDate\": \"<string>\",\n\t\t\t\t\t\"approximateAge\": \"<integer>\",\n\t\t\t\t\t\"isDeceased\": \"<boolean>\",\n\t\t\t\t\t\"passion\": \"<string>\",\n\t\t\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\t\t\"contactMethods\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t],\n\t\t\t\t\t\"createDateTimeUtc\": \"<dateTime>\",\n\t\t\t\t\t\"modifiedDateTimeUtc\": \"<dateTime>\",\n\t\t\t\t\t\"customFields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t],\n\t\t\t\t\t\"customCollections\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"contactGiftsUrl\": \"<string>\",\n\t\t\t\"contactPassthroughGiftsUrl\": \"<string>\",\n\t\t\t\"contactPlannedGiftsUrl\": \"<string>\",\n\t\t\t\"contactRecurringGiftsUrl\": \"<string>\",\n\t\t\t\"contactImportantNotesUrl\": \"<string>\",\n\t\t\t\"contactNotesUrl\": \"<string>\",\n\t\t\t\"contactTagsUrl\": \"<string>\",\n\t\t\t\"contactRelationshipsUrl\": \"<string>\",\n\t\t\t\"primaryAvatarUrl\": \"<string>\",\n\t\t\t\"contactReferences\": [\n\t\t\t\t{\n\t\t\t\t\t\"source\": \"<string>\",\n\t\t\t\t\t\"id\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"source\": \"<string>\",\n\t\t\t\t\t\"id\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"originSegmentId\": \"<integer>\",\n\t\t\t\"originSegment\": \"<string>\",\n\t\t\t\"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"tags\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t],\n\t\t\t\"organizationGroups\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t],\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"customCollections\": [\n\t\t\t\t{\n\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactType\": \"<string>\",\n\t\t\t\"isPrivate\": \"<boolean>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"informalName\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"website\": \"<string>\",\n\t\t\t\"maritalStatus\": \"<string>\",\n\t\t\t\"anniversaryMonth\": \"<integer>\",\n\t\t\t\"anniversaryDay\": \"<integer>\",\n\t\t\t\"anniversaryYear\": \"<integer>\",\n\t\t\t\"mergedIntoContactId\": \"<integer>\",\n\t\t\t\"address\": {\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"label\": \"<string>\",\n\t\t\t\t\"address1\": \"<string>\",\n\t\t\t\t\"address2\": \"<string>\",\n\t\t\t\t\"city\": \"<string>\",\n\t\t\t\t\"state\": \"<string>\",\n\t\t\t\t\"postal\": \"<string>\",\n\t\t\t\t\"country\": \"<string>\",\n\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\"canBePrimary\": \"<boolean>\",\n\t\t\t\t\"startMonth\": \"<integer>\",\n\t\t\t\t\"startDay\": \"<integer>\",\n\t\t\t\t\"endMonth\": \"<integer>\",\n\t\t\t\t\"endDay\": \"<integer>\"\n\t\t\t},\n\t\t\t\"giftAskAmount\": \"<string>\",\n\t\t\t\"giftAskType\": \"<string>\",\n\t\t\t\"lifeToDateGiving\": \"<string>\",\n\t\t\t\"yearToDateGiving\": \"<string>\",\n\t\t\t\"lastGiftAmount\": \"<string>\",\n\t\t\t\"lastGiftDate\": \"<string>\",\n\t\t\t\"contactIndividuals\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\"prefix\": \"<string>\",\n\t\t\t\t\t\"firstName\": \"<string>\",\n\t\t\t\t\t\"middleName\": \"<string>\",\n\t\t\t\t\t\"lastName\": \"<string>\",\n\t\t\t\t\t\"suffix\": \"<string>\",\n\t\t\t\t\t\"gender\": \"<string>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\"canBePrimary\": \"<boolean>\",\n\t\t\t\t\t\"isSecondary\": \"<boolean>\",\n\t\t\t\t\t\"canBeSecondary\": \"<boolean>\",\n\t\t\t\t\t\"birthMonth\": \"<integer>\",\n\t\t\t\t\t\"birthDay\": \"<integer>\",\n\t\t\t\t\t\"birthYear\": \"<integer>\",\n\t\t\t\t\t\"birthDate\": \"<string>\",\n\t\t\t\t\t\"approximateAge\": \"<integer>\",\n\t\t\t\t\t\"isDeceased\": \"<boolean>\",\n\t\t\t\t\t\"passion\": \"<string>\",\n\t\t\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\t\t\"contactMethods\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t],\n\t\t\t\t\t\"createDateTimeUtc\": \"<dateTime>\",\n\t\t\t\t\t\"modifiedDateTimeUtc\": \"<dateTime>\",\n\t\t\t\t\t\"customFields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t],\n\t\t\t\t\t\"customCollections\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\"prefix\": \"<string>\",\n\t\t\t\t\t\"firstName\": \"<string>\",\n\t\t\t\t\t\"middleName\": \"<string>\",\n\t\t\t\t\t\"lastName\": \"<string>\",\n\t\t\t\t\t\"suffix\": \"<string>\",\n\t\t\t\t\t\"gender\": \"<string>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\"canBePrimary\": \"<boolean>\",\n\t\t\t\t\t\"isSecondary\": \"<boolean>\",\n\t\t\t\t\t\"canBeSecondary\": \"<boolean>\",\n\t\t\t\t\t\"birthMonth\": \"<integer>\",\n\t\t\t\t\t\"birthDay\": \"<integer>\",\n\t\t\t\t\t\"birthYear\": \"<integer>\",\n\t\t\t\t\t\"birthDate\": \"<string>\",\n\t\t\t\t\t\"approximateAge\": \"<integer>\",\n\t\t\t\t\t\"isDeceased\": \"<boolean>\",\n\t\t\t\t\t\"passion\": \"<string>\",\n\t\t\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\t\t\"contactMethods\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t],\n\t\t\t\t\t\"createDateTimeUtc\": \"<dateTime>\",\n\t\t\t\t\t\"modifiedDateTimeUtc\": \"<dateTime>\",\n\t\t\t\t\t\"customFields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t],\n\t\t\t\t\t\"customCollections\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"contactGiftsUrl\": \"<string>\",\n\t\t\t\"contactPassthroughGiftsUrl\": \"<string>\",\n\t\t\t\"contactPlannedGiftsUrl\": \"<string>\",\n\t\t\t\"contactRecurringGiftsUrl\": \"<string>\",\n\t\t\t\"contactImportantNotesUrl\": \"<string>\",\n\t\t\t\"contactNotesUrl\": \"<string>\",\n\t\t\t\"contactTagsUrl\": \"<string>\",\n\t\t\t\"contactRelationshipsUrl\": \"<string>\",\n\t\t\t\"primaryAvatarUrl\": \"<string>\",\n\t\t\t\"contactReferences\": [\n\t\t\t\t{\n\t\t\t\t\t\"source\": \"<string>\",\n\t\t\t\t\t\"id\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"source\": \"<string>\",\n\t\t\t\t\t\"id\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"originSegmentId\": \"<integer>\",\n\t\t\t\"originSegment\": \"<string>\",\n\t\t\t\"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"tags\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t],\n\t\t\t\"organizationGroups\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t],\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"customCollections\": [\n\t\t\t\t{\n\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"},{"id":"bec0ff21-37ad-4da2-a2e1-925bbc96ae8d","name":"BadRequest","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/Query/FullContact?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Contact","Query","FullContact"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"8038c7bb-93be-4275-807e-949fb71a638f"}],"id":"ded67afe-0521-4c8e-a559-18b7b8f894a2","_postman_id":"ded67afe-0521-4c8e-a559-18b7b8f894a2","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Receipts","item":[{"name":"Receipts","id":"cafc4c21-01ea-49cd-8cea-c3d50b0c7584","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Contact/Receipts?email=<string>&skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Contact","Receipts"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The email address.</p>\n","type":"text/plain"},"key":"email","value":"<string>"},{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10. Max is 1000.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"4a4a5b10-83b6-4458-b13b-b22103ce2e82","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/Receipts?email=<string>&skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Contact","Receipts"],"query":[{"key":"email","value":"<string>","description":"The email address."},{"key":"skip","value":"<integer>","description":"The number of records to skip. Default = 0."},{"key":"take","value":"<integer>","description":"The number of records to take. Default = 10. Max is 1000."}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\r\n\t\"list\": [\r\n        {\r\n            \"id\": \"<integer>\",\r\n            \"createdDateTimeUtc\": \"<dateTime>\",\r\n            \"receiptType\": \"<single gift per receipt or multiple gifts per receipt>\",\r\n            \"receiptMedium\": \"<mail, email, receipts on demand, or external processing CSV>\",\r\n            \"emialAddress\": \"<string>\",\r\n            \"receiptTitle\": \"<string>\"\r\n        },\r\n        {\r\n            \"id\": \"<integer>\",\r\n            \"createdDateTimeUtc\": \"<dateTime>\",\r\n            \"receiptType\": \"<single gift per receipt or multiple gifts per receipt>\",\r\n            \"receiptMedium\": \"<mail, email, receipts on demand, or external processing CSV>\",\r\n            \"emialAddress\": \"<string>\",\r\n            \"receiptTitle\": \"<string>\"\r\n        }\r\n\t],\r\n\t\"total\": \"<integer>\"\r\n}"}],"_postman_id":"cafc4c21-01ea-49cd-8cea-c3d50b0c7584"},{"name":"Get Receipt","id":"70c4a8ab-65d9-44f7-9465-082182f6e4b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Contact/Receipts/:receiptId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Contact","Receipts",":receiptId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>The donor receipt identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"receiptId"}]}},"response":[{"id":"07fcaa50-0879-4dec-90e7-adf5fe434e06","name":"Get Receipt","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Contact/Receipts/:receiptId","host":["https://api.virtuoussoftware.com"],"path":["api","Contact","Receipts",":receiptId"],"variable":[{"key":"receiptId","value":"<integer>","description":"The donor receipt identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"fileStream\": \"<stream>\",\r\n    \"filePath\": \"<string>\",\r\n    \"contentType\": \"<string>\"\r\n}"}],"_postman_id":"70c4a8ab-65d9-44f7-9465-082182f6e4b9"}],"id":"c8899ae5-c063-4bb0-a5a9-e4e8e8b5c7db","_postman_id":"c8899ae5-c063-4bb0-a5a9-e4e8e8b5c7db","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}}],"id":"b434f6b8-bee6-4744-981e-8c797fd5c38a","description":"<p>Contacts in Virtuous are your constituents, givers, prospects, partners -- anyone who has a relationship with your organization. A single individual may be a contact, but most often contacts are larger entities, like households, companies, nonprofits, super-secret spy organizations -- anything you want, really. Virtuous exists primarily to help you manage your relationships with these people and organizations and leverage their generosity to help advance your mission. <em>Most data in Virtuous is related directly to Contacts</em>, including gifts, pledges, recurring gifts, notes, tasks, and Tags.</p>\n","_postman_id":"b434f6b8-bee6-4744-981e-8c797fd5c38a","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Individuals","item":[{"name":"How to Get Individuals","item":[{"name":"Get Individuals for a Contact","id":"adfa974c-6135-4203-b456-84ffd66b2ccf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ContactIndividual/ByContact/:contactId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactIndividual","ByContact",":contactId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactId"}]}},"response":[{"id":"8966260e-95fd-475e-9911-e4ecd431acf4","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactIndividual/ByContact/:contactId","protocol":"https","host":["api","virtuoussoftware","com"],"path":["api","ContactIndividual","ByContact",":contactId"],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"id\": \"<integer>\",\n\t\t\"contactId\": \"<integer>\",\n\t\t\"prefix\": \"<string>\",\n\t\t\"firstName\": \"<string>\",\n\t\t\"middleName\": \"<string>\",\n\t\t\"lastName\": \"<string>\",\n\t\t\"suffix\": \"<string>\",\n\t\t\"gender\": \"<string>\",\n\t\t\"isPrimary\": \"<boolean>\",\n\t\t\"canBePrimary\": \"<boolean>\",\n\t\t\"isSecondary\": \"<boolean>\",\n\t\t\"canBeSecondary\": \"<boolean>\",\n\t\t\"birthMonth\": \"<integer>\",\n\t\t\"birthDay\": \"<integer>\",\n\t\t\"birthYear\": \"<integer>\",\n\t\t\"birthDate\": \"<string>\",\n\t\t\"approximateAge\": \"<integer>\",\n\t\t\"isDeceased\": \"<boolean>\",\n\t\t\"passion\": \"<string>\",\n\t\t\"avatarUrl\": \"<string>\",\n\t\t\"contactMethods\": [\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t}\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\",\n\t\t\"customFields\": [\n\t\t\t{\n\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t}\n\t\t],\n\t\t\"customCollections\": [\n\t\t\t{\n\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\"fields\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\"fields\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"id\": \"<integer>\",\n\t\t\"contactId\": \"<integer>\",\n\t\t\"prefix\": \"<string>\",\n\t\t\"firstName\": \"<string>\",\n\t\t\"middleName\": \"<string>\",\n\t\t\"lastName\": \"<string>\",\n\t\t\"suffix\": \"<string>\",\n\t\t\"gender\": \"<string>\",\n\t\t\"isPrimary\": \"<boolean>\",\n\t\t\"canBePrimary\": \"<boolean>\",\n\t\t\"isSecondary\": \"<boolean>\",\n\t\t\"canBeSecondary\": \"<boolean>\",\n\t\t\"birthMonth\": \"<integer>\",\n\t\t\"birthDay\": \"<integer>\",\n\t\t\"birthYear\": \"<integer>\",\n\t\t\"birthDate\": \"<string>\",\n\t\t\"approximateAge\": \"<integer>\",\n\t\t\"isDeceased\": \"<boolean>\",\n\t\t\"passion\": \"<string>\",\n\t\t\"avatarUrl\": \"<string>\",\n\t\t\"contactMethods\": [\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t}\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\",\n\t\t\"customFields\": [\n\t\t\t{\n\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t}\n\t\t],\n\t\t\"customCollections\": [\n\t\t\t{\n\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\"fields\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\"fields\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t]\n\t}\n]"}],"_postman_id":"adfa974c-6135-4203-b456-84ffd66b2ccf"},{"name":"Get an Individual","id":"18393359-fb21-49ba-aa6c-cd3421d2a01c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ContactIndividual/:contactIndividualId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactIndividual",":contactIndividualId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The contact individual identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactIndividualId"}]}},"response":[{"id":"8605eebf-74d1-48e9-86a4-90b1aade7b3f","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactIndividual/:contactIndividualId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactIndividual",":contactIndividualId"],"variable":[{"key":"contactIndividualId","value":"<integer>","description":"(Required) The contact individual identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"contactId\": \"<integer>\",\n\t\"prefix\": \"<string>\",\n\t\"firstName\": \"<string>\",\n\t\"middleName\": \"<string>\",\n\t\"lastName\": \"<string>\",\n\t\"suffix\": \"<string>\",\n\t\"gender\": \"<string>\",\n\t\"isPrimary\": \"<boolean>\",\n\t\"canBePrimary\": \"<boolean>\",\n\t\"isSecondary\": \"<boolean>\",\n\t\"canBeSecondary\": \"<boolean>\",\n\t\"birthMonth\": \"<integer>\",\n\t\"birthDay\": \"<integer>\",\n\t\"birthYear\": \"<integer>\",\n\t\"birthDate\": \"<string>\",\n\t\"approximateAge\": \"<integer>\",\n\t\"isDeceased\": \"<boolean>\",\n\t\"passion\": \"<string>\",\n\t\"avatarUrl\": \"<string>\",\n\t\"contactMethods\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t}\n\t],\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t],\n\t\"customCollections\": [\n\t\t{\n\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\"fields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\"fields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t]\n}"}],"_postman_id":"18393359-fb21-49ba-aa6c-cd3421d2a01c"},{"name":"Find an individual by email address","id":"ba6fb21c-071d-4993-85b0-4777a23d14dd","request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ContactIndividual/Find?email=<string>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactIndividual","Find"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>(Required) The email address.</p>\n","type":"text/plain"},"key":"email","value":"<string>"}],"variable":[]}},"response":[{"id":"ca85be10-176f-44ff-9a43-4e14c7918f02","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactIndividual/Find?email=<string>","host":["https://api.virtuoussoftware.com"],"path":["api","ContactIndividual","Find"],"query":[{"key":"email","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"contactId\": \"<integer>\",\n\t\"prefix\": \"<string>\",\n\t\"firstName\": \"<string>\",\n\t\"middleName\": \"<string>\",\n\t\"lastName\": \"<string>\",\n\t\"suffix\": \"<string>\",\n\t\"gender\": \"<string>\",\n\t\"isPrimary\": \"<boolean>\",\n\t\"canBePrimary\": \"<boolean>\",\n\t\"isSecondary\": \"<boolean>\",\n\t\"canBeSecondary\": \"<boolean>\",\n\t\"birthMonth\": \"<integer>\",\n\t\"birthDay\": \"<integer>\",\n\t\"birthYear\": \"<integer>\",\n\t\"birthDate\": \"<string>\",\n\t\"approximateAge\": \"<integer>\",\n\t\"isDeceased\": \"<boolean>\",\n\t\"passion\": \"<string>\",\n\t\"avatarUrl\": \"<string>\",\n\t\"contactMethods\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t}\n\t],\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t],\n\t\"customCollections\": [\n\t\t{\n\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\"fields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\"fields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t]\n}"},{"id":"9c65d056-85a5-4e1e-b756-811c3569c6f3","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactIndividual/Find?email=<string>","host":["https://api.virtuoussoftware.com"],"path":["api","ContactIndividual","Find"],"query":[{"key":"email","value":"<string>"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ba6fb21c-071d-4993-85b0-4777a23d14dd"},{"name":"Gets the avatar for a specified contact individual","id":"718cb2fa-efef-4ebe-82ce-00cd3d37e167","request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ContactIndividual/:contactIndividualId/Avatar","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactIndividual",":contactIndividualId","Avatar"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The contact individual identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactIndividualId"}]}},"response":[{"id":"55f6d066-6cbc-43ca-85b9-bd49cce56a70","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactIndividual/:contactIndividualId/Avatar","host":["https://api.virtuoussoftware.com"],"path":["api","ContactIndividual",":contactIndividualId","Avatar"],"variable":[{"key":"contactIndividualId","value":"<integer>","description":"(Required) The contact individual identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"contactId\": \"<integer>\",\n\t\"prefix\": \"<string>\",\n\t\"firstName\": \"<string>\",\n\t\"middleName\": \"<string>\",\n\t\"lastName\": \"<string>\",\n\t\"suffix\": \"<string>\",\n\t\"gender\": \"<string>\",\n\t\"isPrimary\": \"<boolean>\",\n\t\"canBePrimary\": \"<boolean>\",\n\t\"isSecondary\": \"<boolean>\",\n\t\"canBeSecondary\": \"<boolean>\",\n\t\"birthMonth\": \"<integer>\",\n\t\"birthDay\": \"<integer>\",\n\t\"birthYear\": \"<integer>\",\n\t\"birthDate\": \"<string>\",\n\t\"approximateAge\": \"<integer>\",\n\t\"isDeceased\": \"<boolean>\",\n\t\"passion\": \"<string>\",\n\t\"avatarUrl\": \"<string>\",\n\t\"contactMethods\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t}\n\t],\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t],\n\t\"customCollections\": [\n\t\t{\n\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\"fields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\"fields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t]\n}"},{"id":"0f387801-eea8-43f6-a58d-25d638eedfd0","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactIndividual/:contactIndividualId/Avatar","host":["https://api.virtuoussoftware.com"],"path":["api","ContactIndividual",":contactIndividualId","Avatar"],"variable":[{"key":"contactIndividualId","value":"<integer>","description":"(Required) The contact individual identifier."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"718cb2fa-efef-4ebe-82ce-00cd3d37e167"}],"id":"765d275d-8a24-4e57-8f79-e38d5ff8a9b7","_postman_id":"765d275d-8a24-4e57-8f79-e38d5ff8a9b7","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"How to Create and Update","item":[{"name":"Create an Individual","id":"3a075b76-2810-48ad-b2ab-57aff197ade2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer>\",\n    \"firstName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"contactMethods\": [\n        {\n            \"type\": \"<string>\",\n            \"value\": \"<string>\",\n            \"isOptedIn\": \"<boolean>\",\n            \"isPrimary\": \"<boolean>\"\n        },\n        {\n            \"type\": \"<string>\",\n            \"value\": \"<string>\",\n            \"isOptedIn\": \"<boolean>\",\n            \"isPrimary\": \"<boolean>\"\n        }\n    ],\n    \"prefix\": \"<string>\",\n    \"middleName\": \"<string>\",\n    \"suffix\": \"<string>\",\n    \"gender\": \"<string>\",\n    \"setAsPrimary\": \"<boolean>\",\n    \"setAsSecondary\": \"<boolean>\",\n    \"birthMonth\": \"<integer>\",\n    \"birthDay\": \"<integer>\",\n    \"birthYear\": \"<integer>\",\n    \"approximateAge\": \"<integer>\",\n    \"isDeceased\": \"<boolean>\",\n    \"deceasedDate\": \"<dateTime>\",\n    \"passion\": \"<string>\",\n    \"avatarUrl\": \"<string>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ],\n    \"customCollections\": [\n        {\n            \"name\": \"<string>\",\n            \"fields\": [\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                }\n            ]\n        },\n        {\n            \"name\": \"<string>\",\n            \"fields\": [\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                }\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ContactIndividual","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactIndividual"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"9500d38b-40e9-4ea8-b584-06ba04cfe771","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer>\",\n    \"firstName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"contactMethods\": [\n        {\n            \"type\": \"<string>\",\n            \"value\": \"<string>\",\n            \"isOptedIn\": \"<boolean>\",\n            \"isPrimary\": \"<boolean>\"\n        },\n        {\n            \"type\": \"<string>\",\n            \"value\": \"<string>\",\n            \"isOptedIn\": \"<boolean>\",\n            \"isPrimary\": \"<boolean>\"\n        }\n    ],\n    \"prefix\": \"<string>\",\n    \"middleName\": \"<string>\",\n    \"suffix\": \"<string>\",\n    \"gender\": \"<string>\",\n    \"setAsPrimary\": \"<boolean>\",\n    \"setAsSecondary\": \"<boolean>\",\n    \"birthMonth\": \"<integer>\",\n    \"birthDay\": \"<integer>\",\n    \"birthYear\": \"<integer>\",\n    \"approximateAge\": \"<integer>\",\n    \"isDeceased\": \"<boolean>\",\n    \"passion\": \"<string>\",\n    \"avatarUrl\": \"<string>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ],\n    \"customCollections\": [\n        {\n            \"name\": \"<string>\",\n            \"fields\": [\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                }\n            ]\n        },\n        {\n            \"name\": \"<string>\",\n            \"fields\": [\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                }\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ContactIndividual"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"contactId\": \"<integer>\",\n\t\"prefix\": \"<string>\",\n\t\"firstName\": \"<string>\",\n\t\"middleName\": \"<string>\",\n\t\"lastName\": \"<string>\",\n\t\"suffix\": \"<string>\",\n\t\"gender\": \"<string>\",\n\t\"isPrimary\": \"<boolean>\",\n\t\"canBePrimary\": \"<boolean>\",\n\t\"isSecondary\": \"<boolean>\",\n\t\"canBeSecondary\": \"<boolean>\",\n\t\"birthMonth\": \"<integer>\",\n\t\"birthDay\": \"<integer>\",\n\t\"birthYear\": \"<integer>\",\n\t\"birthDate\": \"<string>\",\n\t\"approximateAge\": \"<integer>\",\n\t\"isDeceased\": \"<boolean>\",\n\t\"passion\": \"<string>\",\n\t\"avatarUrl\": \"<string>\",\n\t\"contactMethods\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t}\n\t],\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t],\n\t\"customCollections\": [\n\t\t{\n\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\"fields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\"fields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t]\n}"},{"id":"c31bfcb4-2a47-4cdf-a195-bcbc9a152f69","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer>\",\n    \"firstName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"contactMethods\": [\n        {\n            \"type\": \"<string>\",\n            \"value\": \"<string>\",\n            \"isOptedIn\": \"<boolean>\",\n            \"isPrimary\": \"<boolean>\"\n        },\n        {\n            \"type\": \"<string>\",\n            \"value\": \"<string>\",\n            \"isOptedIn\": \"<boolean>\",\n            \"isPrimary\": \"<boolean>\"\n        }\n    ],\n    \"prefix\": \"<string>\",\n    \"middleName\": \"<string>\",\n    \"suffix\": \"<string>\",\n    \"gender\": \"<string>\",\n    \"setAsPrimary\": \"<boolean>\",\n    \"setAsSecondary\": \"<boolean>\",\n    \"birthMonth\": \"<integer>\",\n    \"birthDay\": \"<integer>\",\n    \"birthYear\": \"<integer>\",\n    \"approximateAge\": \"<integer>\",\n    \"isDeceased\": \"<boolean>\",\n    \"passion\": \"<string>\",\n    \"avatarUrl\": \"<string>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ],\n    \"customCollections\": [\n        {\n            \"name\": \"<string>\",\n            \"fields\": [\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                }\n            ]\n        },\n        {\n            \"name\": \"<string>\",\n            \"fields\": [\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                }\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ContactIndividual"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3a075b76-2810-48ad-b2ab-57aff197ade2"},{"name":"Upload the avatar for an Individual","id":"1f66acce-d78d-480d-a64f-e3b0ddef0251","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.virtuoussoftware.com/api/ContactIndividual/:contactIndividualId/Avatar","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactIndividual",":contactIndividualId","Avatar"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The contact individual identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactIndividualId"}]}},"response":[{"id":"6cd9a789-c3df-4709-addb-cb76f3982ed6","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactIndividual/:contactIndividualId/Avatar","host":["https://api.virtuoussoftware.com"],"path":["api","ContactIndividual",":contactIndividualId","Avatar"],"variable":[{"key":"contactIndividualId","value":"<integer>","description":"(Required) The contact individual identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"contactId\": \"<integer>\",\n\t\"prefix\": \"<string>\",\n\t\"firstName\": \"<string>\",\n\t\"middleName\": \"<string>\",\n\t\"lastName\": \"<string>\",\n\t\"suffix\": \"<string>\",\n\t\"gender\": \"<string>\",\n\t\"isPrimary\": \"<boolean>\",\n\t\"canBePrimary\": \"<boolean>\",\n\t\"isSecondary\": \"<boolean>\",\n\t\"canBeSecondary\": \"<boolean>\",\n\t\"birthMonth\": \"<integer>\",\n\t\"birthDay\": \"<integer>\",\n\t\"birthYear\": \"<integer>\",\n\t\"birthDate\": \"<string>\",\n\t\"approximateAge\": \"<integer>\",\n\t\"isDeceased\": \"<boolean>\",\n\t\"passion\": \"<string>\",\n\t\"avatarUrl\": \"<string>\",\n\t\"contactMethods\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t}\n\t],\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t],\n\t\"customCollections\": [\n\t\t{\n\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\"fields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\"fields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t]\n}"},{"id":"8886dc0c-4a22-4ccd-8e13-121a8ffb319b","name":"BadRequest","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactIndividual/:contactIndividualId/Avatar","host":["https://api.virtuoussoftware.com"],"path":["api","ContactIndividual",":contactIndividualId","Avatar"],"variable":[{"key":"contactIndividualId","value":"<integer>","description":"(Required) The contact individual identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"1f66acce-d78d-480d-a64f-e3b0ddef0251"},{"name":"Update an Individual","id":"c4a12913-651e-4f6c-a5f4-860679ef33c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firstName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"prefix\": \"<string>\",\n    \"middleName\": \"<string>\",\n    \"suffix\": \"<string>\",\n    \"gender\": \"<string>\",\n    \"setAsPrimary\": \"<boolean>\",\n    \"setAsSecondary\": \"<boolean>\",\n    \"birthMonth\": \"<integer>\",\n    \"birthDay\": \"<integer>\",\n    \"birthYear\": \"<integer>\",\n    \"approximateAge\": \"<integer>\",\n    \"isDeceased\": \"<boolean>\",\n    \"deceasedDate\": \"<dateTime>\",\n    \"passion\": \"<string>\",\n    \"avatarUrl\": \"<string>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ],\n    \"customCollections\": [\n        {\n            \"name\": \"<string>\",\n            \"fields\": [\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                }\n            ]\n        },\n        {\n            \"name\": \"<string>\",\n            \"fields\": [\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                }\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ContactIndividual/:contactIndividualId","description":"<p>Similar to other update methods in the API, excluding a property will remove it's value from the object. \nIf you're only updating a single property, the entire model is still required.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactIndividual",":contactIndividualId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The contact individual identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactIndividualId"}]}},"response":[{"id":"70420b42-9888-4b4b-aa90-3108e3bcf9fc","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"firstName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"prefix\": \"<string>\",\n    \"middleName\": \"<string>\",\n    \"suffix\": \"<string>\",\n    \"gender\": \"<string>\",\n    \"setAsPrimary\": \"<boolean>\",\n    \"setAsSecondary\": \"<boolean>\",\n    \"birthMonth\": \"<integer>\",\n    \"birthDay\": \"<integer>\",\n    \"birthYear\": \"<integer>\",\n    \"approximateAge\": \"<integer>\",\n    \"isDeceased\": \"<boolean>\",\n    \"passion\": \"<string>\",\n    \"avatarUrl\": \"<string>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ],\n    \"customCollections\": [\n        {\n            \"name\": \"<string>\",\n            \"fields\": [\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                }\n            ]\n        },\n        {\n            \"name\": \"<string>\",\n            \"fields\": [\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                }\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/ContactIndividual/:contactIndividualId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactIndividual",":contactIndividualId"],"variable":[{"key":"contactIndividualId","value":"<integer>","description":"(Required) The contact individual identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"contactId\": \"<integer>\",\n\t\"prefix\": \"<string>\",\n\t\"firstName\": \"<string>\",\n\t\"middleName\": \"<string>\",\n\t\"lastName\": \"<string>\",\n\t\"suffix\": \"<string>\",\n\t\"gender\": \"<string>\",\n\t\"isPrimary\": \"<boolean>\",\n\t\"canBePrimary\": \"<boolean>\",\n\t\"isSecondary\": \"<boolean>\",\n\t\"canBeSecondary\": \"<boolean>\",\n\t\"birthMonth\": \"<integer>\",\n\t\"birthDay\": \"<integer>\",\n\t\"birthYear\": \"<integer>\",\n\t\"birthDate\": \"<string>\",\n\t\"approximateAge\": \"<integer>\",\n\t\"isDeceased\": \"<boolean>\",\n    \"deceasedDate\": \"<dateTime>\",\n\t\"passion\": \"<string>\",\n\t\"avatarUrl\": \"<string>\",\n\t\"contactMethods\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t}\n\t],\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t],\n\t\"customCollections\": [\n\t\t{\n\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\"fields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\"fields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t]\n}"},{"id":"b904928f-8410-49bd-98ef-bfbe651a0f52","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"firstName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"prefix\": \"<string>\",\n    \"middleName\": \"<string>\",\n    \"suffix\": \"<string>\",\n    \"gender\": \"<string>\",\n    \"setAsPrimary\": \"<boolean>\",\n    \"setAsSecondary\": \"<boolean>\",\n    \"birthMonth\": \"<integer>\",\n    \"birthDay\": \"<integer>\",\n    \"birthYear\": \"<integer>\",\n    \"approximateAge\": \"<integer>\",\n    \"isDeceased\": \"<boolean>\",\n    \"passion\": \"<string>\",\n    \"avatarUrl\": \"<string>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ],\n    \"customCollections\": [\n        {\n            \"name\": \"<string>\",\n            \"fields\": [\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                }\n            ]\n        },\n        {\n            \"name\": \"<string>\",\n            \"fields\": [\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                }\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/ContactIndividual/:contactIndividualId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactIndividual",":contactIndividualId"],"variable":[{"key":"contactIndividualId","value":"<integer>","description":"(Required) The contact individual identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c4a12913-651e-4f6c-a5f4-860679ef33c3"},{"name":"Delete an Individual","id":"416e190e-a0a2-4fe6-98ab-505dfc0c6fb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.virtuoussoftware.com/api/ContactIndividual/:contactIndividualId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactIndividual",":contactIndividualId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The contact individual identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactIndividualId"}]}},"response":[{"id":"6cb0ec4a-0c04-4b12-9342-0a0e9433b8c6","name":"OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactIndividual/:contactIndividualId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactIndividual",":contactIndividualId"],"variable":[{"key":"contactIndividualId","value":"<integer>","description":"(Required) The contact individual identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"cfa8d24b-65d1-4c3d-b069-4852a049d791","name":"BadRequest","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactIndividual/:contactIndividualId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactIndividual",":contactIndividualId"],"variable":[{"key":"contactIndividualId","value":"<integer>","description":"(Required) The contact individual identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"416e190e-a0a2-4fe6-98ab-505dfc0c6fb8"}],"id":"38d95f01-764d-49f2-90ba-596c2cb2acda","_postman_id":"38d95f01-764d-49f2-90ba-596c2cb2acda","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Working with Collections","item":[{"name":"Get Custom Collections for Individuals","id":"494e2a6b-50bb-486c-84b4-cc4690a5b18e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ContactIndividual/CustomCollections","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactIndividual","CustomCollections"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"79b7ca68-68c9-48d4-b2b3-2572409fe1a7","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ContactIndividual/CustomCollections"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"id\": \"<integer>\",\n\t\t\"entityType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\",\n\t\t\"fields\": [\n\t\t\t{\n\t\t\t\t\"dataType\": \"<string>\",\n\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\",\n\t\t\t\t\"required\": \"<boolean>\",\n\t\t\t\t\"options\": [\n\t\t\t\t\t\"<string>\",\n\t\t\t\t\t\"<string>\"\n\t\t\t\t]\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"dataType\": \"<string>\",\n\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\",\n\t\t\t\t\"required\": \"<boolean>\",\n\t\t\t\t\"options\": [\n\t\t\t\t\t\"<string>\",\n\t\t\t\t\t\"<string>\"\n\t\t\t\t]\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"id\": \"<integer>\",\n\t\t\"entityType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\",\n\t\t\"fields\": [\n\t\t\t{\n\t\t\t\t\"dataType\": \"<string>\",\n\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\",\n\t\t\t\t\"required\": \"<boolean>\",\n\t\t\t\t\"options\": [\n\t\t\t\t\t\"<string>\",\n\t\t\t\t\t\"<string>\"\n\t\t\t\t]\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"dataType\": \"<string>\",\n\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\",\n\t\t\t\t\"required\": \"<boolean>\",\n\t\t\t\t\"options\": [\n\t\t\t\t\t\"<string>\",\n\t\t\t\t\t\"<string>\"\n\t\t\t\t]\n\t\t\t}\n\t\t]\n\t}\n]"}],"_postman_id":"494e2a6b-50bb-486c-84b4-cc4690a5b18e"},{"name":"Create Collection for an Individual","id":"7a72740b-e1ae-4107-b04b-9d14cd8a8f49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"fields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ContactIndividual/:contactIndividualId/Collection/:customCollectionId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactIndividual",":contactIndividualId","Collection",":customCollectionId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The contact individual identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactIndividualId"},{"description":{"content":"<p>(Required) The custom collection identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"customCollectionId"}]}},"response":[{"id":"8908ebe5-b912-4057-8566-2f1c31e8033f","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"fields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/ContactIndividual/:contactIndividualId/Collection/:customCollectionId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactIndividual",":contactIndividualId","Collection",":customCollectionId"],"variable":[{"key":"contactIndividualId","value":"<integer>","description":"(Required) The contact individual identifier."},{"key":"customCollectionId","value":"<integer>","description":"(Required) The custom collection identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"customCollectionId\": \"<integer>\",\n\t\"customCollectionName\": \"<string>\",\n\t\"collectionInstanceId\": \"<integer>\",\n\t\"fields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"8dfc0442-6fd0-4ded-9df0-085e06f7e582","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"fields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/ContactIndividual/:contactIndividualId/Collection/:customCollectionId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactIndividual",":contactIndividualId","Collection",":customCollectionId"],"variable":[{"key":"contactIndividualId","value":"<integer>","description":"(Required) The contact individual identifier."},{"key":"customCollectionId","value":"<integer>","description":"(Required) The custom collection identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"7a72740b-e1ae-4107-b04b-9d14cd8a8f49"},{"name":"Update Collection for an Individual","id":"7a767d99-2c37-4eec-9ee8-bf340d220f07","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"fields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ContactIndividual/:contactIndividualId/Collection/:collectionInstanceId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactIndividual",":contactIndividualId","Collection",":collectionInstanceId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The contact individual identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactIndividualId"},{"description":{"content":"<p>(Required) The collection identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"collectionInstanceId"}]}},"response":[{"id":"92ba9181-35e8-421e-97fd-bdcf6d7b328b","name":"OK","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactIndividual/:contactIndividualId/Collection/:collectionInstanceId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactIndividual",":contactIndividualId","Collection",":collectionInstanceId"],"variable":[{"key":"contactIndividualId","value":"<integer>","description":"(Required) The contact individual identifier."},{"key":"collectionInstanceId","value":"<integer>","description":"(Required) The collection identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"customCollectionId\": \"<integer>\",\n\t\"customCollectionName\": \"<string>\",\n\t\"collectionInstanceId\": \"<integer>\",\n\t\"fields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"8deb5215-4f87-493b-8884-72de1f15dfe4","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactIndividual/:contactIndividualId/Collection/:collectionInstanceId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactIndividual",":contactIndividualId","Collection",":collectionInstanceId"],"variable":[{"key":"contactIndividualId","value":"<integer>","description":"(Required) The contact individual identifier."},{"key":"collectionInstanceId","value":"<integer>","description":"(Required) The collection identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"7a767d99-2c37-4eec-9ee8-bf340d220f07"},{"name":"Delete Collection for an Individual","id":"c837c5b1-5bb8-40e0-a8b5-840c0c1c2032","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.virtuoussoftware.com/api/ContactIndividual/:contactIndividualId/Collection/:collectionId?collectionInstanceId=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactIndividual",":contactIndividualId","Collection",":collectionId"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>(Required) The collection instance identifier.</p>\n","type":"text/plain"},"key":"collectionInstanceId","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) The contact individual identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactIndividualId"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"collectionId"}]}},"response":[{"id":"0cacaa6f-a28f-4db1-8aa6-781d0653ff6c","name":"OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactIndividual/:contactIndividualId/Collection/:collectionId?collectionInstanceId=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","ContactIndividual",":contactIndividualId","Collection",":collectionId"],"query":[{"key":"collectionInstanceId","value":"<integer>"}],"variable":[{"key":"contactIndividualId","value":"<integer>","description":"(Required) The contact individual identifier."},{"key":"collectionId","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"ee4c9d63-2a73-418d-b404-579fd1ea69b6","name":"BadRequest","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactIndividual/:contactIndividualId/Collection/:collectionId?collectionInstanceId=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","ContactIndividual",":contactIndividualId","Collection",":collectionId"],"query":[{"key":"collectionInstanceId","value":"<integer>"}],"variable":[{"key":"contactIndividualId","value":"<integer>","description":"(Required) The contact individual identifier."},{"key":"collectionId","value":"<string>","description":"(Required) "}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c837c5b1-5bb8-40e0-a8b5-840c0c1c2032"}],"id":"55fe93fa-3cc8-4fa3-b776-66fff0e26231","description":"<p>A Collection is a custom series of related values/fields with an undefined amount of entries that can be added to Contacts or Individuals. For example, let’s say your organization has an animal adoption program and you want to track all of the animals each Contact has adopted. Using a <em>Custom Field</em> for this wouldn’t work because it would limit them to one animal, so this is where using a <em>Custom Collection</em> would be best. This information could include “Animal Name,” “Cat or Dog,” and “Date Adopted,” and you could have several entries with these fields to track all of the animals adopted by a single Contact.</p>\n","_postman_id":"55fe93fa-3cc8-4fa3-b776-66fff0e26231","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Configuration","item":[{"name":"Gets the custom fields for contact individuals","id":"8eb4af1d-92e9-4620-ad51-2c5f17e96765","request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ContactIndividual/CustomFields","description":"<p>Will return all enabled custom fields available for the Contact Indvidual object.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactIndividual","CustomFields"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"66d2f2b3-e978-43a7-a83f-517a85a0d013","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ContactIndividual/CustomFields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"dataType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"displayName\": \"<string>\",\n\t\t\"options\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t},\n\t{\n\t\t\"dataType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"displayName\": \"<string>\",\n\t\t\"options\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t}\n]"}],"_postman_id":"8eb4af1d-92e9-4620-ad51-2c5f17e96765"}],"id":"ee1144cd-90ce-4af8-9568-fb33eb76ed13","_postman_id":"ee1144cd-90ce-4af8-9568-fb33eb76ed13","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Individual Queries","item":[{"name":"Get Individual Query Options","id":"1adfce43-e6bd-43c6-9be9-783e48134950","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ContactIndividual/QueryOptions","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactIndividual","QueryOptions"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"4fc87e82-f330-468b-a879-3b4d9a0bf679","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ContactIndividual/QueryOptions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"options\": [\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t}\n\t],\n\t\"operatorOptions\": [\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t},\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t}\n\t]\n}"}],"_postman_id":"1adfce43-e6bd-43c6-9be9-783e48134950"},{"name":"Query Individuals","id":"6f7c7ebb-aa2e-4a22-82c8-0bd07476673a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"groups\": [\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        }\n    ],\n    \"sortBy\": \"<string>\",\n    \"descending\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ContactIndividual/Query?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactIndividual","Query"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10. Max is 1000.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"d1a06258-5b79-4189-95ed-0c8d6a9a3ea8","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactIndividual/Query?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","ContactIndividual","Query"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"prefix\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"middleName\": \"<string>\",\n\t\t\t\"lastName\": \"<string>\",\n\t\t\t\"suffix\": \"<string>\",\n\t\t\t\"gender\": \"<string>\",\n\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\"canBePrimary\": \"<boolean>\",\n\t\t\t\"isSecondary\": \"<boolean>\",\n\t\t\t\"canBeSecondary\": \"<boolean>\",\n\t\t\t\"birthMonth\": \"<integer>\",\n\t\t\t\"birthDay\": \"<integer>\",\n\t\t\t\"birthYear\": \"<integer>\",\n\t\t\t\"birthDate\": \"<string>\",\n\t\t\t\"approximateAge\": \"<integer>\",\n\t\t\t\"isDeceased\": \"<boolean>\",\n\t\t\t\"passion\": \"<string>\",\n\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\"contactMethods\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"customCollections\": [\n\t\t\t\t{\n\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"prefix\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"middleName\": \"<string>\",\n\t\t\t\"lastName\": \"<string>\",\n\t\t\t\"suffix\": \"<string>\",\n\t\t\t\"gender\": \"<string>\",\n\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\"canBePrimary\": \"<boolean>\",\n\t\t\t\"isSecondary\": \"<boolean>\",\n\t\t\t\"canBeSecondary\": \"<boolean>\",\n\t\t\t\"birthMonth\": \"<integer>\",\n\t\t\t\"birthDay\": \"<integer>\",\n\t\t\t\"birthYear\": \"<integer>\",\n\t\t\t\"birthDate\": \"<string>\",\n\t\t\t\"approximateAge\": \"<integer>\",\n\t\t\t\"isDeceased\": \"<boolean>\",\n\t\t\t\"passion\": \"<string>\",\n\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\"contactMethods\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"type\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"isOptedIn\": \"<boolean>\",\n\t\t\t\t\t\"isPrimary\": \"<boolean>\",\n\t\t\t\t\t\"canBePrimary\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"customCollections\": [\n\t\t\t\t{\n\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"customCollectionId\": \"<integer>\",\n\t\t\t\t\t\"customCollectionName\": \"<string>\",\n\t\t\t\t\t\"collectionInstanceId\": \"<integer>\",\n\t\t\t\t\t\"fields\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\t\t\"value\": \"<string>\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"},{"id":"9ce68727-35a9-4dc2-8217-62e30aea7c64","name":"BadRequest","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactIndividual/Query?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","ContactIndividual","Query"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"6f7c7ebb-aa2e-4a22-82c8-0bd07476673a"}],"id":"2ad8e0d0-a5f8-47de-8529-9e74fe935db3","_postman_id":"2ad8e0d0-a5f8-47de-8529-9e74fe935db3","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Email Lists","item":[{"name":"Get Email Lists for an Individual","id":"60bf9add-0dcc-47e2-a9a6-5a7201207684","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ContactIndividual/{contactIndividualId}/EmailList?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactIndividual","{contactIndividualId}","EmailList"],"host":["https://api.virtuoussoftware.com"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"18feb548-044b-42b3-bf3a-b54a558c5e99","name":"Ok","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactIndividual/{contactIndividualId}/EmailList?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","ContactIndividual","{contactIndividualId}","EmailList"],"query":[{"key":"skip","value":"<integer>","description":"The number of records to skip. Default = 0."},{"key":"take","value":"<integer>","description":"The number of records to skip. Default = 10."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"list\": [\n        {\n            \"id\": 0,\n            \"name\": \"string\",\n            \"isSubscribed\": true,\n            \"unsubscribeReason\": \"string\",\n            \"unsubscribeType\": \"string\",\n            \"unsubscribeDateTimeUtc\": \"2019-08-24T14:15:22Z\",\n            \"createDateTimeUtc\": \"2019-08-24T14:15:22Z\",\n            \"createdByUser\": \"string\",\n            \"modifiedDateTimeUtc\": \"2019-08-24T14:15:22Z\",\n            \"modifiedByUser\": \"string\"\n        }\n    ],\n    \"total\": 0\n}"}],"_postman_id":"60bf9add-0dcc-47e2-a9a6-5a7201207684"}],"id":"884c5e3c-5693-4645-8675-0a9f121b0bbf","_postman_id":"884c5e3c-5693-4645-8675-0a9f121b0bbf","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}}],"id":"4b47d698-89e7-41b7-9427-954298ee1ab2","description":"<p>Within a contact record, you may have one or more individuals. These are the people that make up a contact household, or who serve as points of contact with a particular organization. <em>Virtuous CRM does require each contact record to have at least one individual</em>. If you do not have contact names for some of your corporate or foundation contacts, you may enter “Default Contact” or another placeholder value as the primary individual’s name, though we strongly recommend identifying individuals within your constituent organizations. Remember, at Virtuous, we are all about nurturing relationships with your givers.</p>\n","_postman_id":"4b47d698-89e7-41b7-9427-954298ee1ab2","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Contact Addresses","item":[{"name":"Get the Contact Addresses for a Contact","id":"7b216277-1272-43f6-8001-7f0f466112b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ContactAddress/ByContact/:contactId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactAddress","ByContact",":contactId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactId"}]}},"response":[{"id":"ee46f804-7d64-47a8-bd77-529524c9d0dc","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactAddress/ByContact/:contactId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactAddress","ByContact",":contactId"],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"id\": \"<integer>\",\n\t\t\"label\": \"<string>\",\n\t\t\"address1\": \"<string>\",\n\t\t\"address2\": \"<string>\",\n\t\t\"city\": \"<string>\",\n\t\t\"state\": \"<string>\",\n\t\t\"postal\": \"<string>\",\n\t\t\"country\": \"<string>\",\n\t\t\"isPrimary\": \"<boolean>\",\n\t\t\"canBePrimary\": \"<boolean>\",\n\t\t\"startMonth\": \"<integer>\",\n\t\t\"startDay\": \"<integer>\",\n\t\t\"endMonth\": \"<integer>\",\n\t\t\"endDay\": \"<integer>\",\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t},\n\t{\n\t\t\"id\": \"<integer>\",\n\t\t\"label\": \"<string>\",\n\t\t\"address1\": \"<string>\",\n\t\t\"address2\": \"<string>\",\n\t\t\"city\": \"<string>\",\n\t\t\"state\": \"<string>\",\n\t\t\"postal\": \"<string>\",\n\t\t\"country\": \"<string>\",\n\t\t\"isPrimary\": \"<boolean>\",\n\t\t\"canBePrimary\": \"<boolean>\",\n\t\t\"startMonth\": \"<integer>\",\n\t\t\"startDay\": \"<integer>\",\n\t\t\"endMonth\": \"<integer>\",\n\t\t\"endDay\": \"<integer>\",\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t}\n]"}],"_postman_id":"7b216277-1272-43f6-8001-7f0f466112b3"},{"name":"Get a Contact Address","id":"a1ec3ed7-929a-4fc1-99f6-ec60fcfc4072","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ContactAddress/:contactAddressId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactAddress",":contactAddressId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The contact address identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactAddressId"}]}},"response":[{"id":"0e5e79e9-3a37-4e15-96a8-9d2ea253c63c","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactAddress/:contactAddressId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactAddress",":contactAddressId"],"variable":[{"key":"contactAddressId","value":"<integer>","description":"(Required) The contact address identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"label\": \"<string>\",\n\t\"address1\": \"<string>\",\n\t\"address2\": \"<string>\",\n\t\"city\": \"<string>\",\n\t\"state\": \"<string>\",\n\t\"postal\": \"<string>\",\n\t\"country\": \"<string>\",\n\t\"isPrimary\": \"<boolean>\",\n\t\"canBePrimary\": \"<boolean>\",\n\t\"startMonth\": \"<integer>\",\n\t\"startDay\": \"<integer>\",\n\t\"endMonth\": \"<integer>\",\n\t\"endDay\": \"<integer>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\"\n}"}],"_postman_id":"a1ec3ed7-929a-4fc1-99f6-ec60fcfc4072"},{"name":"Create a Contact Address","id":"57b822b2-7c3a-4672-9a81-7fd2f8c29dc9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer>\",\n    \"label\": \"<string>\",\n    \"address1\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"postal\": \"<string>\",\n    \"country\": \"<string>\",\n    \"setAsPrimary\": \"<boolean>\",\n    \"startMonth\": \"<integer>\",\n    \"startDay\": \"<integer>\",\n    \"endMonth\": \"<integer>\",\n    \"endDay\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ContactAddress","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactAddress"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"1f1a5021-882b-420a-8254-09daaae46da4","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer>\",\n    \"label\": \"<string>\",\n    \"address1\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"postal\": \"<string>\",\n    \"country\": \"<string>\",\n    \"setAsPrimary\": \"<boolean>\",\n    \"startMonth\": \"<integer>\",\n    \"startDay\": \"<integer>\",\n    \"endMonth\": \"<integer>\",\n    \"endDay\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ContactAddress"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"label\": \"<string>\",\n\t\"address1\": \"<string>\",\n\t\"address2\": \"<string>\",\n\t\"city\": \"<string>\",\n\t\"state\": \"<string>\",\n\t\"postal\": \"<string>\",\n\t\"country\": \"<string>\",\n\t\"isPrimary\": \"<boolean>\",\n\t\"canBePrimary\": \"<boolean>\",\n\t\"startMonth\": \"<integer>\",\n\t\"startDay\": \"<integer>\",\n\t\"endMonth\": \"<integer>\",\n\t\"endDay\": \"<integer>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\"\n}"},{"id":"28140fce-c44a-4a88-a1c1-0c2584f6b79f","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer>\",\n    \"label\": \"<string>\",\n    \"address1\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"postal\": \"<string>\",\n    \"country\": \"<string>\",\n    \"setAsPrimary\": \"<boolean>\",\n    \"startMonth\": \"<integer>\",\n    \"startDay\": \"<integer>\",\n    \"endMonth\": \"<integer>\",\n    \"endDay\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ContactAddress"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"57b822b2-7c3a-4672-9a81-7fd2f8c29dc9"},{"name":"Update a Contact Address","id":"aa611560-0112-4362-929f-d4789ab70885","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"label\": \"<string>\",\n    \"address1\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"postal\": \"<string>\",\n    \"country\": \"<string>\",\n    \"setAsPrimary\": \"<boolean>\",\n    \"startMonth\": \"<integer>\",\n    \"startDay\": \"<integer>\",\n    \"endMonth\": \"<integer>\",\n    \"endDay\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ContactAddress/:contactAddressId","description":"<p>Similar to other update methods in the API, excluding a property will remove it's value from the object. \nIf you're only updating a single property, the entire model is still required.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactAddress",":contactAddressId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The contact address identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactAddressId"}]}},"response":[{"id":"104cbf1b-d6f1-4d07-b524-b60511e8c83a","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"label\": \"<string>\",\n    \"address1\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"postal\": \"<string>\",\n    \"country\": \"<string>\",\n    \"setAsPrimary\": \"<boolean>\",\n    \"startMonth\": \"<integer>\",\n    \"startDay\": \"<integer>\",\n    \"endMonth\": \"<integer>\",\n    \"endDay\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/ContactAddress/:contactAddressId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactAddress",":contactAddressId"],"variable":[{"key":"contactAddressId","value":"<integer>","description":"(Required) The contact address identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"label\": \"<string>\",\n\t\"address1\": \"<string>\",\n\t\"address2\": \"<string>\",\n\t\"city\": \"<string>\",\n\t\"state\": \"<string>\",\n\t\"postal\": \"<string>\",\n\t\"country\": \"<string>\",\n\t\"isPrimary\": \"<boolean>\",\n\t\"canBePrimary\": \"<boolean>\",\n\t\"startMonth\": \"<integer>\",\n\t\"startDay\": \"<integer>\",\n\t\"endMonth\": \"<integer>\",\n\t\"endDay\": \"<integer>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\"\n}"},{"id":"404394f0-254b-400f-b924-bb17103d977c","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"label\": \"<string>\",\n    \"address1\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"postal\": \"<string>\",\n    \"country\": \"<string>\",\n    \"setAsPrimary\": \"<boolean>\",\n    \"startMonth\": \"<integer>\",\n    \"startDay\": \"<integer>\",\n    \"endMonth\": \"<integer>\",\n    \"endDay\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/ContactAddress/:contactAddressId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactAddress",":contactAddressId"],"variable":[{"key":"contactAddressId","value":"<integer>","description":"(Required) The contact address identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"aa611560-0112-4362-929f-d4789ab70885"},{"name":"Archive a Contact Address","id":"a6caa2c5-78dc-40db-a9f1-7d2e71ad815d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://api.virtuoussoftware.com/api/ContactAddress/Archive/:contactAddressId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactAddress","Archive",":contactAddressId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"type":"any","value":null,"key":"contactAddressId"}]}},"response":[{"id":"d77bcfc6-a263-4dc1-b530-1eb649f9a017","name":"OK","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactAddress/Archive/:contactAddressId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactAddress","Archive",":contactAddressId"],"variable":[{"key":"contactAddressId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"8bcb9f1d-e866-4fa2-a8fc-e7ad72e6b655","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactAddress/Archive/:contactAddressId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactAddress","Archive",":contactAddressId"],"variable":[{"key":"contactAddressId","value":null}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"a6caa2c5-78dc-40db-a9f1-7d2e71ad815d"},{"name":"Unarchive a Contact Address","id":"52af925f-6221-4660-a7fa-e5eaa5923cde","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://api.virtuoussoftware.com/api/ContactAddress/Unarchive/:contactAddressId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactAddress","Unarchive",":contactAddressId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"type":"any","value":null,"key":"contactAddressId"}]}},"response":[{"id":"837bf4cc-9b9f-4ffd-b471-4385820522b8","name":"OK","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactAddress/Unarchive/:contactAddressId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactAddress","Unarchive",":contactAddressId"],"variable":[{"key":"contactAddressId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"36575ef7-6fc5-4c41-97ad-4db4dc9131c3","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactAddress/Unarchive/:contactAddressId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactAddress","Unarchive",":contactAddressId"],"variable":[{"key":"contactAddressId","value":null}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"52af925f-6221-4660-a7fa-e5eaa5923cde"},{"name":"Delete a Contact Address","id":"189fb0a3-45ac-46eb-9ee9-b770d93e5d7f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.virtuoussoftware.com/api/ContactAddress/:contactAddressId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactAddress",":contactAddressId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The contact address identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactAddressId"}]}},"response":[{"id":"43a61116-c38d-4708-804f-6b7912288132","name":"OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactAddress/:contactAddressId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactAddress",":contactAddressId"],"variable":[{"key":"contactAddressId","value":"<integer>","description":"(Required) The contact address identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"1bd48a81-b823-446d-8e05-e005dad2a18e","name":"BadRequest","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactAddress/:contactAddressId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactAddress",":contactAddressId"],"variable":[{"key":"contactAddressId","value":"<integer>","description":"(Required) The contact address identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"189fb0a3-45ac-46eb-9ee9-b770d93e5d7f"}],"id":"0b607d0a-22ea-49e8-aa3e-aca3e60807f8","_postman_id":"0b607d0a-22ea-49e8-aa3e-aca3e60807f8","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Contact Methods","item":[{"name":"Get Contact Method Types","id":"30a0446d-9ee3-48d6-9fea-2ab496550ffa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ContactMethod/Types","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactMethod","Types"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"3601757f-8807-4243-bb32-c5d17cbf2aba","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ContactMethod/Types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t\"<string>\",\n\t\"<string>\"\n]"}],"_postman_id":"30a0446d-9ee3-48d6-9fea-2ab496550ffa"},{"name":"Get Contact Methods Types related to the Base Type","id":"5b8dc758-4375-4513-a210-c57624a288a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ContactMethod/RelatedTypes?name=<string>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactMethod","RelatedTypes"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>(Required) The name to use when restricting the returned types to only related contact method types.</p>\n","type":"text/plain"},"key":"name","value":"<string>"}],"variable":[]}},"response":[{"id":"24e0c2e8-163b-4f56-9043-3322906c3e68","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactMethod/RelatedTypes?name=<string>","host":["https://api.virtuoussoftware.com"],"path":["api","ContactMethod","RelatedTypes"],"query":[{"key":"name","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t\"<string>\",\n\t\"<string>\"\n]"}],"_postman_id":"5b8dc758-4375-4513-a210-c57624a288a0"},{"name":"Get a Contact Method","id":"9dd9f0c7-69c8-4e0a-8a52-319d6368ad1c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ContactMethod/:contactMethodId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactMethod",":contactMethodId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The contact method identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactMethodId"}]}},"response":[{"id":"dd30b3d6-30fc-450f-ad59-3078ed93c69b","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactMethod/:contactMethodId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactMethod",":contactMethodId"],"variable":[{"key":"contactMethodId","value":"<integer>","description":"(Required) The contact method identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"type\": \"<string>\",\n\t\"value\": \"<string>\",\n\t\"isOptedIn\": \"<boolean>\",\n\t\"isPrimary\": \"<boolean>\",\n\t\"canBePrimary\": \"<boolean>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\"\n}"},{"id":"bff818ff-6b15-4a0c-a03b-b614a30b7444","name":"BadRequest","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactMethod/:contactMethodId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactMethod",":contactMethodId"],"variable":[{"key":"contactMethodId","value":"<integer>","description":"(Required) The contact method identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9dd9f0c7-69c8-4e0a-8a52-319d6368ad1c"},{"name":"Create a Contact Method for an Individual","id":"7076d006-9711-41d8-b20c-6cb1b6bcbf10","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"contactIndividualId\": \"<integer>\",\n    \"type\": \"<string>\",\n    \"value\": \"<string>\",\n    \"isOptedIn\": \"<boolean>\",\n    \"setAsPrimary\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ContactMethod","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactMethod"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"583d1c6d-da30-44e7-b9ce-76b239f8bb82","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactIndividualId\": \"<integer>\",\n    \"type\": \"<string>\",\n    \"value\": \"<string>\",\n    \"isOptedIn\": \"<boolean>\",\n    \"setAsPrimary\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ContactMethod"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"type\": \"<string>\",\n\t\"value\": \"<string>\",\n\t\"isOptedIn\": \"<boolean>\",\n\t\"isPrimary\": \"<boolean>\",\n\t\"canBePrimary\": \"<boolean>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\"\n}"},{"id":"fd058288-ab16-483d-bd07-12ea5932006d","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactIndividualId\": \"<integer>\",\n    \"type\": \"<string>\",\n    \"value\": \"<string>\",\n    \"isOptedIn\": \"<boolean>\",\n    \"setAsPrimary\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ContactMethod"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"7076d006-9711-41d8-b20c-6cb1b6bcbf10"},{"name":"Update a Contact Method","id":"ad06b3a2-4331-471d-8b41-91b7699d5e27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"<string>\",\n    \"value\": \"<string>\",\n    \"isOptedIn\": \"<boolean>\",\n    \"setAsPrimary\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ContactMethod/:contactMethodId","description":"<p>Similar to other update methods in the API, excluding a property will remove it's value from the object. \nIf you're only updating a single property, the entire model is still required.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactMethod",":contactMethodId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The contact method identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactMethodId"}]}},"response":[{"id":"4e100b44-e4e3-40db-818e-97ff79f1950a","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"type\": \"<string>\",\n    \"value\": \"<string>\",\n    \"isOptedIn\": \"<boolean>\",\n    \"setAsPrimary\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/ContactMethod/:contactMethodId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactMethod",":contactMethodId"],"variable":[{"key":"contactMethodId","value":"<integer>","description":"(Required) The contact method identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"type\": \"<string>\",\n\t\"value\": \"<string>\",\n\t\"isOptedIn\": \"<boolean>\",\n\t\"isPrimary\": \"<boolean>\",\n\t\"canBePrimary\": \"<boolean>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\"\n}"},{"id":"7593ad57-367f-46ec-be95-0501adfae52f","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"type\": \"<string>\",\n    \"value\": \"<string>\",\n    \"isOptedIn\": \"<boolean>\",\n    \"setAsPrimary\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/ContactMethod/:contactMethodId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactMethod",":contactMethodId"],"variable":[{"key":"contactMethodId","value":"<integer>","description":"(Required) The contact method identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ad06b3a2-4331-471d-8b41-91b7699d5e27"},{"name":"Archive a Contact Method","id":"8bf40a3d-1cfc-4a12-b994-7c1a7f93431a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://api.virtuoussoftware.com/api/ContactMethod/Archive/:contactMethodId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactMethod","Archive",":contactMethodId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"type":"any","value":null,"key":"contactMethodId"}]}},"response":[{"id":"f8a05347-4180-47a9-8f5b-59582b046b94","name":"OK","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactMethod/Archive/:contactMethodId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactMethod","Archive",":contactMethodId"],"variable":[{"key":"contactMethodId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"6d3084dc-3a02-413c-887b-3a6a53a3f9b3","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactMethod/Archive/:contactMethodId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactMethod","Archive",":contactMethodId"],"variable":[{"key":"contactMethodId","value":null}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"8bf40a3d-1cfc-4a12-b994-7c1a7f93431a"},{"name":"Unarchive a Contact Method","id":"98b4384d-46d8-4bb1-ad97-f2af4b2e045a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://api.virtuoussoftware.com/api/ContactMethod/Unarchive/:contactMethodId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactMethod","Unarchive",":contactMethodId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"type":"any","value":null,"key":"contactMethodId"}]}},"response":[{"id":"0d425228-0c9a-4be4-a072-2261ffa2dd9d","name":"OK","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactMethod/Unarchive/:contactMethodId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactMethod","Unarchive",":contactMethodId"],"variable":[{"key":"contactMethodId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"d749e4ec-247a-4623-9b5c-e6be021b8bb5","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactMethod/Unarchive/:contactMethodId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactMethod","Unarchive",":contactMethodId"],"variable":[{"key":"contactMethodId","value":null}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"98b4384d-46d8-4bb1-ad97-f2af4b2e045a"},{"name":"Delete a Contact Method","id":"17fbbbc8-9e11-45f5-960c-482e35a6c87d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.virtuoussoftware.com/api/ContactMethod/:contactMethodId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactMethod",":contactMethodId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The contact method identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactMethodId"}]}},"response":[{"id":"85f95e7b-d94f-4edb-b0e1-0e84aee5d74c","name":"OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactMethod/:contactMethodId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactMethod",":contactMethodId"],"variable":[{"key":"contactMethodId","value":"<integer>","description":"(Required) The contact method identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"5d1c2964-9ca7-4d19-bb78-17049361c4a0","name":"BadRequest","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactMethod/:contactMethodId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactMethod",":contactMethodId"],"variable":[{"key":"contactMethodId","value":"<integer>","description":"(Required) The contact method identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"17fbbbc8-9e11-45f5-960c-482e35a6c87d"}],"id":"e65ef87a-2f2e-4bb2-8fff-71a037d5f91f","description":"<p>Contact methods can include phone numbers, email addresses, and social media handles. Contact methods are always associated with <em>Individuals</em> (not <em>Contacts</em>) as communication is inherently personal, and each Individual will have one phone number and one email address that is identified as their primary phone or email. Each Contact Method also has a Type associated with it. When selecting a Type, the available options are: Home Email, Work Email, Other Email, Home Phone, Mobile Phone, Work Phone, Other Phone, Fax, Facebook, Instagram, Twitter, Foursquare, Pinterest, RSS, Snapchat, Tumblr, Vimeo, YouTube, LinkedIn, Skype, Web, and Other.</p>\n","_postman_id":"e65ef87a-2f2e-4bb2-8fff-71a037d5f91f","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Contact Notes","item":[{"name":"Get the Notes for a Contact","id":"20c64072-2cc9-4fd6-b5c7-30261f66e247","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ContactNote/ByContact/:contactId?sortBy=<string>&descending=<boolean>&skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactNote","ByContact",":contactId"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The field to be sorted. Supported: Id, NoteDate, CreatedDateTime.</p>\n","type":"text/plain"},"key":"sortBy","value":"<string>"},{"description":{"content":"<p>The direction to be sorted.</p>\n","type":"text/plain"},"key":"descending","value":"<boolean>"},{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) The contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactId"}]}},"response":[{"id":"5c278244-cafc-4262-9b30-7c5030f6d6db","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactNote/ByContact/:contactId?sortBy=<string>&descending=<boolean>&skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","ContactNote","ByContact",":contactId"],"query":[{"key":"sortBy","value":"<string>"},{"key":"descending","value":"<boolean>"},{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"noteDate\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"note\": \"<string>\",\n\t\t\t\"important\": \"<boolean>\",\n\t\t\t\"isPrivate\": \"<boolean>\",\n\t\t\t\"createdByAvatarUrl\": \"<string>\",\n\t\t\t\"reminder\": {\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"message\": \"<string>\",\n\t\t\t\t\"targetDate\": \"<string>\",\n\t\t\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\"contactViewUrl\": \"<string>\",\n\t\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\t\t\"reminderType\": \"<string>\",\n\t\t\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\t\t\"taskStatus\": \"<string>\",\n\t\t\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\t\t\"completeUrl\": \"<string>\",\n\t\t\t\t\"dismissUrl\": \"<string>\",\n\t\t\t\t\"description\": \"<string>\",\n\t\t\t\t\"hasContact\": \"<boolean>\",\n\t\t\t\t\"isPastDue\": \"<boolean>\",\n\t\t\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\t\t\"canComplete\": \"<boolean>\",\n\t\t\t\t\"completeActionName\": \"<string>\",\n\t\t\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\t\t\"owner\": \"<string>\",\n\t\t\t\t\"ownerAvatarUrl\": \"<string>\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"noteDate\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"note\": \"<string>\",\n\t\t\t\"important\": \"<boolean>\",\n\t\t\t\"isPrivate\": \"<boolean>\",\n\t\t\t\"createdByAvatarUrl\": \"<string>\",\n\t\t\t\"reminder\": {\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"message\": \"<string>\",\n\t\t\t\t\"targetDate\": \"<string>\",\n\t\t\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\"contactViewUrl\": \"<string>\",\n\t\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\t\t\"reminderType\": \"<string>\",\n\t\t\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\t\t\"taskStatus\": \"<string>\",\n\t\t\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\t\t\"completeUrl\": \"<string>\",\n\t\t\t\t\"dismissUrl\": \"<string>\",\n\t\t\t\t\"description\": \"<string>\",\n\t\t\t\t\"hasContact\": \"<boolean>\",\n\t\t\t\t\"isPastDue\": \"<boolean>\",\n\t\t\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\t\t\"canComplete\": \"<boolean>\",\n\t\t\t\t\"completeActionName\": \"<string>\",\n\t\t\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\t\t\"owner\": \"<string>\",\n\t\t\t\t\"ownerAvatarUrl\": \"<string>\"\n\t\t\t}\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"20c64072-2cc9-4fd6-b5c7-30261f66e247"},{"name":"Get the Important Notes for a Contact","id":"744da609-761f-4088-9939-a7b65ddf3451","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ContactNote/Important/ByContact/:contactId?sortBy=<string>&descending=<boolean>&skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactNote","Important","ByContact",":contactId"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The field to be sorted. Supported: Id, NoteDate, CreatedDateTime.</p>\n","type":"text/plain"},"key":"sortBy","value":"<string>"},{"description":{"content":"<p>The direction to be sorted.</p>\n","type":"text/plain"},"key":"descending","value":"<boolean>"},{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) The contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactId"}]}},"response":[{"id":"324feec7-f850-4320-8116-3120164ba1a3","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactNote/Important/ByContact/:contactId?sortBy=<string>&descending=<boolean>&skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","ContactNote","Important","ByContact",":contactId"],"query":[{"key":"sortBy","value":"<string>"},{"key":"descending","value":"<boolean>"},{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"noteDate\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"note\": \"<string>\",\n\t\t\t\"important\": \"<boolean>\",\n\t\t\t\"isPrivate\": \"<boolean>\",\n\t\t\t\"createdByAvatarUrl\": \"<string>\",\n\t\t\t\"reminder\": {\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"message\": \"<string>\",\n\t\t\t\t\"targetDate\": \"<string>\",\n\t\t\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\"contactViewUrl\": \"<string>\",\n\t\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\t\t\"reminderType\": \"<string>\",\n\t\t\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\t\t\"taskStatus\": \"<string>\",\n\t\t\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\t\t\"completeUrl\": \"<string>\",\n\t\t\t\t\"dismissUrl\": \"<string>\",\n\t\t\t\t\"description\": \"<string>\",\n\t\t\t\t\"hasContact\": \"<boolean>\",\n\t\t\t\t\"isPastDue\": \"<boolean>\",\n\t\t\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\t\t\"canComplete\": \"<boolean>\",\n\t\t\t\t\"completeActionName\": \"<string>\",\n\t\t\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\t\t\"owner\": \"<string>\",\n\t\t\t\t\"ownerAvatarUrl\": \"<string>\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"noteDate\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"note\": \"<string>\",\n\t\t\t\"important\": \"<boolean>\",\n\t\t\t\"isPrivate\": \"<boolean>\",\n\t\t\t\"createdByAvatarUrl\": \"<string>\",\n\t\t\t\"reminder\": {\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"message\": \"<string>\",\n\t\t\t\t\"targetDate\": \"<string>\",\n\t\t\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\"contactViewUrl\": \"<string>\",\n\t\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\t\t\"reminderType\": \"<string>\",\n\t\t\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\t\t\"taskStatus\": \"<string>\",\n\t\t\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\t\t\"completeUrl\": \"<string>\",\n\t\t\t\t\"dismissUrl\": \"<string>\",\n\t\t\t\t\"description\": \"<string>\",\n\t\t\t\t\"hasContact\": \"<boolean>\",\n\t\t\t\t\"isPastDue\": \"<boolean>\",\n\t\t\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\t\t\"canComplete\": \"<boolean>\",\n\t\t\t\t\"completeActionName\": \"<string>\",\n\t\t\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\t\t\"owner\": \"<string>\",\n\t\t\t\t\"ownerAvatarUrl\": \"<string>\"\n\t\t\t}\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"744da609-761f-4088-9939-a7b65ddf3451"},{"name":"Get a Note","id":"e267ff27-b827-486e-8ef1-8b80bfc480c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ContactNote/:noteId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactNote",":noteId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The note identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"noteId"}]}},"response":[{"id":"8ec047c5-718d-4905-8b4f-4674624630c6","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactNote/:noteId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactNote",":noteId"],"variable":[{"key":"noteId","value":"<integer>","description":"(Required) The note identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"contactId\": \"<integer>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"noteDate\": \"<string>\",\n\t\"type\": \"<string>\",\n\t\"note\": \"<string>\",\n\t\"important\": \"<boolean>\",\n\t\"isPrivate\": \"<boolean>\",\n\t\"createdByAvatarUrl\": \"<string>\",\n\t\"reminder\": {\n\t\t\"id\": \"<integer>\",\n\t\t\"message\": \"<string>\",\n\t\t\"targetDate\": \"<string>\",\n\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\"contactId\": \"<integer>\",\n\t\t\"contactViewUrl\": \"<string>\",\n\t\t\"contactDisplayName\": \"<string>\",\n\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\"reminderType\": \"<string>\",\n\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\"taskStatus\": \"<string>\",\n\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\"completeUrl\": \"<string>\",\n\t\t\"dismissUrl\": \"<string>\",\n\t\t\"description\": \"<string>\",\n\t\t\"hasContact\": \"<boolean>\",\n\t\t\"isPastDue\": \"<boolean>\",\n\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\"canComplete\": \"<boolean>\",\n\t\t\"completeActionName\": \"<string>\",\n\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\"owner\": \"<string>\",\n\t\t\"ownerAvatarUrl\": \"<string>\"\n\t}\n}"},{"id":"4726f5d4-39be-414c-95ae-e93d0476007d","name":"BadRequest","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactNote/:noteId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactNote",":noteId"],"variable":[{"key":"noteId","value":"<integer>","description":"(Required) The note identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e267ff27-b827-486e-8ef1-8b80bfc480c4"},{"name":"Create a Note for a Contact","id":"e5a3357c-c7d7-44e9-920a-cf4c13b32867","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer>\",\n    \"type\": \"<string>\",\n    \"note\": \"<string>\",\n    \"noteDateTime\": \"<dateTime>\",\n    \"important\": \"<boolean>\",\n    \"private\": \"<boolean>\",\n    \"timeSpent\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ContactNote","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactNote"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"e1191a67-a8ec-4936-8c1a-b5af472045a2","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer>\",\n    \"type\": \"<string>\",\n    \"note\": \"<string>\",\n    \"noteDateTime\": \"<dateTime>\",\n    \"important\": \"<boolean>\",\n    \"private\": \"<boolean>\",\n    \"timeSpent\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ContactNote"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"contactId\": \"<integer>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"noteDate\": \"<string>\",\n\t\"type\": \"<string>\",\n\t\"note\": \"<string>\",\n\t\"important\": \"<boolean>\",\n\t\"isPrivate\": \"<boolean>\",\n\t\"createdByAvatarUrl\": \"<string>\",\n\t\"reminder\": {\n\t\t\"id\": \"<integer>\",\n\t\t\"message\": \"<string>\",\n\t\t\"targetDate\": \"<string>\",\n\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\"contactId\": \"<integer>\",\n\t\t\"contactViewUrl\": \"<string>\",\n\t\t\"contactDisplayName\": \"<string>\",\n\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\"reminderType\": \"<string>\",\n\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\"taskStatus\": \"<string>\",\n\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\"completeUrl\": \"<string>\",\n\t\t\"dismissUrl\": \"<string>\",\n\t\t\"description\": \"<string>\",\n\t\t\"hasContact\": \"<boolean>\",\n\t\t\"isPastDue\": \"<boolean>\",\n\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\"canComplete\": \"<boolean>\",\n\t\t\"completeActionName\": \"<string>\",\n\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\"owner\": \"<string>\",\n\t\t\"ownerAvatarUrl\": \"<string>\"\n\t}\n}"},{"id":"0478c77e-8be5-4cce-9006-85697cbc29db","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer>\",\n    \"type\": \"<string>\",\n    \"note\": \"<string>\",\n    \"noteDateTime\": \"<dateTime>\",\n    \"important\": \"<boolean>\",\n    \"private\": \"<boolean>\",\n    \"timeSpent\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ContactNote"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e5a3357c-c7d7-44e9-920a-cf4c13b32867"},{"name":"Create a Note using an Email","id":"4b103c68-63a8-488e-82bd-b93812c4ee02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"fromEmail\": \"<string>\",\n    \"toEmail\": \"<string>\",\n    \"subject\": \"<string>\",\n    \"body\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ContactNote/Email","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactNote","Email"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"03603e9f-1d1e-41a2-906e-3c733a5fc2d0","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"fromEmail\": \"<string>\",\n    \"toEmail\": \"<string>\",\n    \"subject\": \"<string>\",\n    \"body\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ContactNote/Email"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"id\": \"<integer>\",\n\t\t\"contactId\": \"<integer>\",\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\",\n\t\t\"noteDate\": \"<string>\",\n\t\t\"type\": \"<string>\",\n\t\t\"note\": \"<string>\",\n\t\t\"important\": \"<boolean>\",\n\t\t\"isPrivate\": \"<boolean>\",\n\t\t\"createdByAvatarUrl\": \"<string>\",\n\t\t\"reminder\": {\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"message\": \"<string>\",\n\t\t\t\"targetDate\": \"<string>\",\n\t\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactViewUrl\": \"<string>\",\n\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\t\"reminderType\": \"<string>\",\n\t\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\t\"taskStatus\": \"<string>\",\n\t\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\t\"completeUrl\": \"<string>\",\n\t\t\t\"dismissUrl\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"hasContact\": \"<boolean>\",\n\t\t\t\"isPastDue\": \"<boolean>\",\n\t\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\t\"canComplete\": \"<boolean>\",\n\t\t\t\"completeActionName\": \"<string>\",\n\t\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\t\"owner\": \"<string>\",\n\t\t\t\"ownerAvatarUrl\": \"<string>\"\n\t\t}\n\t},\n\t{\n\t\t\"id\": \"<integer>\",\n\t\t\"contactId\": \"<integer>\",\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\",\n\t\t\"noteDate\": \"<string>\",\n\t\t\"type\": \"<string>\",\n\t\t\"note\": \"<string>\",\n\t\t\"important\": \"<boolean>\",\n\t\t\"isPrivate\": \"<boolean>\",\n\t\t\"createdByAvatarUrl\": \"<string>\",\n\t\t\"reminder\": {\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"message\": \"<string>\",\n\t\t\t\"targetDate\": \"<string>\",\n\t\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactViewUrl\": \"<string>\",\n\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\t\"reminderType\": \"<string>\",\n\t\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\t\"taskStatus\": \"<string>\",\n\t\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\t\"completeUrl\": \"<string>\",\n\t\t\t\"dismissUrl\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"hasContact\": \"<boolean>\",\n\t\t\t\"isPastDue\": \"<boolean>\",\n\t\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\t\"canComplete\": \"<boolean>\",\n\t\t\t\"completeActionName\": \"<string>\",\n\t\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\t\"owner\": \"<string>\",\n\t\t\t\"ownerAvatarUrl\": \"<string>\"\n\t\t}\n\t}\n]"},{"id":"0f2cabae-34b5-4934-9f22-177ff5bdd336","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"fromEmail\": \"<string>\",\n    \"toEmail\": \"<string>\",\n    \"subject\": \"<string>\",\n    \"body\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ContactNote/Email"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"4b103c68-63a8-488e-82bd-b93812c4ee02"},{"name":"Update a Note","id":"8be9268a-7834-4fb1-bc1b-19399fdf3305","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"<string>\",\n    \"note\": \"<string>\",\n    \"noteDateTime\": \"<dateTime>\",\n    \"important\": \"<boolean>\",\n    \"private\": \"<boolean>\",\n    \"timeSpent\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ContactNote/:noteId","description":"<p>Similar to other update methods in the API, excluding a property will remove it's value from the object. \nIf you're only updating a single property, the entire model is still required.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactNote",":noteId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The note identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"noteId"}]}},"response":[{"id":"afa3d964-1048-411a-ab85-1b38299447d1","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"type\": \"<string>\",\n    \"note\": \"<string>\",\n    \"noteDateTime\": \"<dateTime>\",\n    \"important\": \"<boolean>\",\n    \"private\": \"<boolean>\",\n    \"timeSpent\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/ContactNote/:noteId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactNote",":noteId"],"variable":[{"key":"noteId","value":"<integer>","description":"(Required) The note identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"contactId\": \"<integer>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"noteDate\": \"<string>\",\n\t\"type\": \"<string>\",\n\t\"note\": \"<string>\",\n\t\"important\": \"<boolean>\",\n\t\"isPrivate\": \"<boolean>\",\n\t\"createdByAvatarUrl\": \"<string>\",\n\t\"reminder\": {\n\t\t\"id\": \"<integer>\",\n\t\t\"message\": \"<string>\",\n\t\t\"targetDate\": \"<string>\",\n\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\"contactId\": \"<integer>\",\n\t\t\"contactViewUrl\": \"<string>\",\n\t\t\"contactDisplayName\": \"<string>\",\n\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\"reminderType\": \"<string>\",\n\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\"taskStatus\": \"<string>\",\n\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\"completeUrl\": \"<string>\",\n\t\t\"dismissUrl\": \"<string>\",\n\t\t\"description\": \"<string>\",\n\t\t\"hasContact\": \"<boolean>\",\n\t\t\"isPastDue\": \"<boolean>\",\n\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\"canComplete\": \"<boolean>\",\n\t\t\"completeActionName\": \"<string>\",\n\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\"owner\": \"<string>\",\n\t\t\"ownerAvatarUrl\": \"<string>\"\n\t}\n}"},{"id":"af53d6eb-eb02-413b-8a02-1471b9f442e3","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"type\": \"<string>\",\n    \"note\": \"<string>\",\n    \"noteDateTime\": \"<dateTime>\",\n    \"important\": \"<boolean>\",\n    \"private\": \"<boolean>\",\n    \"timeSpent\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/ContactNote/:noteId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactNote",":noteId"],"variable":[{"key":"noteId","value":"<integer>","description":"(Required) The note identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"8be9268a-7834-4fb1-bc1b-19399fdf3305"},{"name":"Delete a Note","id":"ea196bc2-c769-46cc-8403-e497f9fd4712","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.virtuoussoftware.com/api/ContactNote/:noteId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactNote",":noteId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The note identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"noteId"}]}},"response":[{"id":"11e698da-c6d6-40b5-b8a2-211b07e3e6d8","name":"OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactNote/:noteId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactNote",":noteId"],"variable":[{"key":"noteId","value":"<integer>","description":"(Required) The note identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"e21ccfe3-dcdf-4a15-a253-df2bd5683316","name":"BadRequest","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactNote/:noteId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactNote",":noteId"],"variable":[{"key":"noteId","value":"<integer>","description":"(Required) The note identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ea196bc2-c769-46cc-8403-e497f9fd4712"},{"name":"Get Contact Note Query Options","id":"4823ef8f-c65d-47c4-ae23-bb00f2d4a9b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ContactNote/QueryOptions","description":"<p>Returns all possible query options for Contact Notes.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactNote","QueryOptions"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"abd3043e-00f4-44b2-9fc0-0ed297580846","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ContactNote/QueryOptions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"options\": [\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t}\n\t],\n\t\"operatorOptions\": [\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t},\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t}\n\t]\n}"}],"_postman_id":"4823ef8f-c65d-47c4-ae23-bb00f2d4a9b4"},{"name":"Query Contact Notes","id":"f0208a32-c3c0-408b-bf5b-f28ad7c0a0f7","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"groups\": [\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        }\n    ],\n    \"sortBy\": \"<string>\",\n    \"descending\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ContactNote/Query?skip=<integer>&take=<integer>","description":"<p>To see which options can be sent, use the {M:Virtuous.WebApi.Controllers.ContactNoteController.QueryOptions} endpoint.\nIf you're going to consistently query for updated contact notes or new contact notes, don't. Use a webhook instead.\nIf requests are timing out, you may be asking for too many items at once. The max take is 1,000.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactNote","Query"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10. Max is 1000.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"2357fd85-0e31-4fd9-a9ab-d8457b33b0c3","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactNote/Query?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","ContactNote","Query"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"noteDate\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"note\": \"<string>\",\n\t\t\t\"important\": \"<boolean>\",\n\t\t\t\"isPrivate\": \"<boolean>\",\n\t\t\t\"createdByAvatarUrl\": \"<string>\",\n\t\t\t\"reminder\": {\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"message\": \"<string>\",\n\t\t\t\t\"targetDate\": \"<string>\",\n\t\t\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\"contactViewUrl\": \"<string>\",\n\t\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\t\t\"reminderType\": \"<string>\",\n\t\t\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\t\t\"taskStatus\": \"<string>\",\n\t\t\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\t\t\"completeUrl\": \"<string>\",\n\t\t\t\t\"dismissUrl\": \"<string>\",\n\t\t\t\t\"description\": \"<string>\",\n\t\t\t\t\"hasContact\": \"<boolean>\",\n\t\t\t\t\"isPastDue\": \"<boolean>\",\n\t\t\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\t\t\"canComplete\": \"<boolean>\",\n\t\t\t\t\"completeActionName\": \"<string>\",\n\t\t\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\t\t\"owner\": \"<string>\",\n\t\t\t\t\"ownerAvatarUrl\": \"<string>\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"noteDate\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"note\": \"<string>\",\n\t\t\t\"important\": \"<boolean>\",\n\t\t\t\"isPrivate\": \"<boolean>\",\n\t\t\t\"createdByAvatarUrl\": \"<string>\",\n\t\t\t\"reminder\": {\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"message\": \"<string>\",\n\t\t\t\t\"targetDate\": \"<string>\",\n\t\t\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\"contactViewUrl\": \"<string>\",\n\t\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\t\t\"reminderType\": \"<string>\",\n\t\t\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\t\t\"taskStatus\": \"<string>\",\n\t\t\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\t\t\"completeUrl\": \"<string>\",\n\t\t\t\t\"dismissUrl\": \"<string>\",\n\t\t\t\t\"description\": \"<string>\",\n\t\t\t\t\"hasContact\": \"<boolean>\",\n\t\t\t\t\"isPastDue\": \"<boolean>\",\n\t\t\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\t\t\"canComplete\": \"<boolean>\",\n\t\t\t\t\"completeActionName\": \"<string>\",\n\t\t\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\t\t\"owner\": \"<string>\",\n\t\t\t\t\"ownerAvatarUrl\": \"<string>\"\n\t\t\t}\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"},{"id":"a41f71b8-cc37-496c-bd52-ded1e8516deb","name":"BadRequest","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactNote/Query?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","ContactNote","Query"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"f0208a32-c3c0-408b-bf5b-f28ad7c0a0f7"},{"name":"Get Contact Note Types","id":"3842f3ed-833b-4ad1-94ce-e20ab6867dd5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ContactNote/Types","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactNote","Types"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"7925c1ff-e4f1-45eb-8d07-20e8bd5edb40","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ContactNote/Types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"\"<object>\""}],"_postman_id":"3842f3ed-833b-4ad1-94ce-e20ab6867dd5"},{"name":"Gets the custom fields for contact note","id":"4142c2e4-58af-4e2a-b3ea-a85ccf9d3723","request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ContactNote/CustomFields","description":"<p>Will return all enabled custom fields available for the Contact Indvidual object.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactNote","CustomFields"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"e984ca05-ac38-405e-b1a8-f160740749e6","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ContactNotes/CustomFields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"dataType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"displayName\": \"<string>\",\n\t\t\"options\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t},\n\t{\n\t\t\"dataType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"displayName\": \"<string>\",\n\t\t\"options\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t}\n]"}],"_postman_id":"4142c2e4-58af-4e2a-b3ea-a85ccf9d3723"}],"id":"85bbbc50-8ae4-4dab-b536-4b692122ea85","_postman_id":"85bbbc50-8ae4-4dab-b536-4b692122ea85","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Contact References","item":[{"name":"Create a Contact Reference","id":"d37eeebc-1e44-4c35-a166-d0869581ae54","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer>\",\n    \"referenceSource\": \"<string>\",\n    \"referenceId\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ContactReference","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactReference"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"59c5d98f-55b8-4128-a7f3-c8b3b0b52b8e","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer>\",\n    \"referenceSource\": \"<string>\",\n    \"referenceId\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ContactReference"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"09a1f3a6-0f81-4c18-a9d4-9a62af75d572","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer>\",\n    \"referenceSource\": \"<string>\",\n    \"referenceId\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ContactReference"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d37eeebc-1e44-4c35-a166-d0869581ae54"},{"name":"Delete a Contact Reference","id":"5943f768-a7e7-49b3-a288-04a5512f373d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.virtuoussoftware.com/api/ContactReference/:referenceSource?referenceId=<string>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactReference",":referenceSource"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>(Required) The reference identifier.</p>\n","type":"text/plain"},"key":"referenceId","value":"<string>"}],"variable":[{"description":{"content":"<p>(Required) The reference source.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"referenceSource"}]}},"response":[{"id":"b5a43198-896d-4a4c-96ef-1e93cda3877a","name":"OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactReference/:referenceSource?referenceId=<string>","host":["https://api.virtuoussoftware.com"],"path":["api","ContactReference",":referenceSource"],"query":[{"key":"referenceId","value":"<string>"}],"variable":[{"key":"referenceSource","value":"<string>","description":"(Required) The reference source."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"\"<object>\""},{"id":"6091496f-7b91-4f08-ace4-3396a636b57a","name":"BadRequest","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactReference/:referenceSource?referenceId=<string>","host":["https://api.virtuoussoftware.com"],"path":["api","ContactReference",":referenceSource"],"query":[{"key":"referenceId","value":"<string>"}],"variable":[{"key":"referenceSource","value":"<string>","description":"(Required) The reference source."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"5943f768-a7e7-49b3-a288-04a5512f373d"}],"id":"b545dbae-97b6-48e9-b3c6-63db055af9a1","_postman_id":"b545dbae-97b6-48e9-b3c6-63db055af9a1","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Tags","item":[{"name":"Get all Tags","id":"48163372-9904-49d5-ad59-a0f039284245","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Tag?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Tag"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"4479afff-03ab-4b82-be9b-71fe6d16cbe1","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Tag?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Tag"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"tagName\": \"<string>\",\n\t\t\t\"tagGroupName\": \"<string>\",\n\t\t\t\"contactsByTagUrl\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"tagName\": \"<string>\",\n\t\t\t\"tagGroupName\": \"<string>\",\n\t\t\t\"contactsByTagUrl\": \"<string>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"48163372-9904-49d5-ad59-a0f039284245"},{"name":"Find all Tags that match, fully or partially","id":"b282d660-0eca-4337-869f-c0d315bdd286","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"search\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Tag/Search?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Tag","Search"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"57c75280-6914-47bb-8b10-f6e513c9985f","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Tag/Search?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Tag","Search"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"tagName\": \"<string>\",\n\t\t\t\"tagGroupName\": \"<string>\",\n\t\t\t\"contactsByTagUrl\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"tagName\": \"<string>\",\n\t\t\t\"tagGroupName\": \"<string>\",\n\t\t\t\"contactsByTagUrl\": \"<string>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"b282d660-0eca-4337-869f-c0d315bdd286"}],"id":"ca684061-1f42-4383-9a12-87f93abbc56d","_postman_id":"ca684061-1f42-4383-9a12-87f93abbc56d","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Contact Tags","item":[{"name":"Get Tags for a Contact","id":"b7fdf974-09b7-450f-a2a2-dca84c09c451","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ContactTag/ByContact/:contactId?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactTag","ByContact",":contactId"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) The contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactId"}]}},"response":[{"id":"6ffa06cc-f051-403a-8f0b-8975970abddd","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactTag/ByContact/:contactId?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","ContactTag","ByContact",":contactId"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"contactTagId\": \"<integer>\",\n\t\t\t\"tagId\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"total\": \"<integer>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"contactsByTagUrl\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"contactTagId\": \"<integer>\",\n\t\t\t\"tagId\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"total\": \"<integer>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"contactsByTagUrl\": \"<string>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"b7fdf974-09b7-450f-a2a2-dca84c09c451"},{"name":"Create a Contact Tag","id":"c3156a7f-2480-48ac-8f6a-0a21b58defc5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"tagId\": \"<integer>\",\n    \"contactId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ContactTag","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactTag"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"4fc9366a-7cfa-4ca4-968f-8946d6afaae4","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"tagId\": \"<integer>\",\n    \"contactId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ContactTag"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"contactTagId\": \"<integer>\",\n\t\"tagId\": \"<integer>\",\n\t\"name\": \"<string>\",\n\t\"total\": \"<integer>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"contactsByTagUrl\": \"<string>\"\n}"},{"id":"c778e51f-6888-4010-b3d0-c81c71458fb7","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"tagId\": \"<integer>\",\n    \"contactId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ContactTag"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c3156a7f-2480-48ac-8f6a-0a21b58defc5"},{"name":"Delete a Contact Tag","id":"b98a8bc2-3c6b-4a28-b5c2-21cc59b2ae3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.virtuoussoftware.com/api/ContactTag/:contactTagId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ContactTag",":contactTagId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The contact tag identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactTagId"}]}},"response":[{"id":"778b6339-0fcf-48f1-a126-b4a266f5fbb2","name":"OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactTag/:contactTagId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactTag",":contactTagId"],"variable":[{"key":"contactTagId","value":"<integer>","description":"(Required) The contact tag identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"87804b95-3e36-4be8-aab7-74e6e2e9574e","name":"BadRequest","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ContactTag/:contactTagId","host":["https://api.virtuoussoftware.com"],"path":["api","ContactTag",":contactTagId"],"variable":[{"key":"contactTagId","value":"<integer>","description":"(Required) The contact tag identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"b98a8bc2-3c6b-4a28-b5c2-21cc59b2ae3e"}],"id":"72c516f0-7b7f-407b-a9c9-8099265673c5","_postman_id":"72c516f0-7b7f-407b-a9c9-8099265673c5","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Organization Groups","item":[{"name":"Get all Organization Groups","id":"eca74327-f334-4a70-ad67-dbdd04fccd80","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/OrganizationGroup?filter=<string>&skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","OrganizationGroup"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The optional filter.</p>\n","type":"text/plain"},"key":"filter","value":"<string>"},{"description":{"content":"<p>The number of records to skip.  Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take.  Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"60a76864-1407-4e6f-b670-8e66cf27ac14","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/OrganizationGroup?filter=<string>&skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","OrganizationGroup"],"query":[{"key":"filter","value":"<string>"},{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"organizationGroupUrl\": \"<string>\",\n\t\t\t\"organizationId\": \"<integer>\",\n\t\t\t\"organizationName\": \"<string>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"location\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"organizationGroupContactsUrl\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"organizationGroupUrl\": \"<string>\",\n\t\t\t\"organizationId\": \"<integer>\",\n\t\t\t\"organizationName\": \"<string>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"location\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"organizationGroupContactsUrl\": \"<string>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"eca74327-f334-4a70-ad67-dbdd04fccd80"},{"name":"Get Organization Groups for a Contact","id":"84f881df-27cc-44ce-b8f6-ff5f647b7acf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/OrganizationGroup/ByContact/:contactId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","OrganizationGroup","ByContact",":contactId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactId"}]}},"response":[{"id":"64acd6b3-6d30-4453-9875-cf567fdbe202","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/OrganizationGroup/ByContact/:contactId","host":["https://api.virtuoussoftware.com"],"path":["api","OrganizationGroup","ByContact",":contactId"],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"id\": \"<integer>\",\n\t\t\"organizationGroupUrl\": \"<string>\",\n\t\t\"organizationId\": \"<integer>\",\n\t\t\"organizationName\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"location\": \"<string>\",\n\t\t\"description\": \"<string>\",\n\t\t\"organizationGroupContactsUrl\": \"<string>\"\n\t},\n\t{\n\t\t\"id\": \"<integer>\",\n\t\t\"organizationGroupUrl\": \"<string>\",\n\t\t\"organizationId\": \"<integer>\",\n\t\t\"organizationName\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"location\": \"<string>\",\n\t\t\"description\": \"<string>\",\n\t\t\"organizationGroupContactsUrl\": \"<string>\"\n\t}\n]"}],"_postman_id":"84f881df-27cc-44ce-b8f6-ff5f647b7acf"},{"name":"Get the Contacts in an Organization Group","id":"9bf99237-b0b4-4778-9d1b-dd725d4c5087","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/OrganizationGroup/:organizationGroupId/contacts?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","OrganizationGroup",":organizationGroupId","contacts"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) The organization group identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"organizationGroupId"}]}},"response":[{"id":"0bf40bc1-36ff-4a5c-b2bf-d8906be96168","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/OrganizationGroup/:organizationGroupId/contacts?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","OrganizationGroup",":organizationGroupId","contacts"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}],"variable":[{"key":"organizationGroupId","value":"<integer>","description":"(Required) The organization group identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"organizationGroupId\": \"<integer>\",\n\t\t\t\"organizationGroupUrl\": \"<string>\",\n\t\t\t\"organizationId\": \"<integer>\",\n\t\t\t\"organizationName\": \"<string>\",\n\t\t\t\"organizationGroupName\": \"<string>\",\n\t\t\t\"organizationGroupLocation\": \"<string>\",\n\t\t\t\"organizationGroupDescription\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactName\": \"<string>\",\n\t\t\t\"contactUrl\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"organizationGroupId\": \"<integer>\",\n\t\t\t\"organizationGroupUrl\": \"<string>\",\n\t\t\t\"organizationId\": \"<integer>\",\n\t\t\t\"organizationName\": \"<string>\",\n\t\t\t\"organizationGroupName\": \"<string>\",\n\t\t\t\"organizationGroupLocation\": \"<string>\",\n\t\t\t\"organizationGroupDescription\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactName\": \"<string>\",\n\t\t\t\"contactUrl\": \"<string>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"9bf99237-b0b4-4778-9d1b-dd725d4c5087"},{"name":"Get an Organization Group","id":"28890529-872e-4420-8c8f-12aeb4444d23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/OrganizationGroup/:organizationGroupId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","OrganizationGroup",":organizationGroupId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The organization group identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"organizationGroupId"}]}},"response":[{"id":"e001a62c-62f7-4afc-b93c-b61099cde7ba","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/OrganizationGroup/:organizationGroupId","host":["https://api.virtuoussoftware.com"],"path":["api","OrganizationGroup",":organizationGroupId"],"variable":[{"key":"organizationGroupId","value":"<integer>","description":"(Required) The organization group identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"organizationGroupUrl\": \"<string>\",\n\t\"organizationId\": \"<integer>\",\n\t\"organizationName\": \"<string>\",\n\t\"name\": \"<string>\",\n\t\"location\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"organizationGroupContactsUrl\": \"<string>\"\n}"},{"id":"d4cf37df-9b0c-4184-87a8-d3617d7e6b92","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/OrganizationGroup/:organizationGroupId","host":["https://api.virtuoussoftware.com"],"path":["api","OrganizationGroup",":organizationGroupId"],"variable":[{"key":"organizationGroupId","value":"<integer>","description":"(Required) The organization group identifier."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"28890529-872e-4420-8c8f-12aeb4444d23"},{"name":"Assign a Contact to an Organization Group","id":"2d9bad2d-0922-4f27-b2b3-a0acb1b34de5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://api.virtuoussoftware.com/api/OrganizationGroup/:organizationGroupId/contacts/:contactId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","OrganizationGroup",":organizationGroupId","contacts",":contactId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The organization group identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"organizationGroupId"},{"description":{"content":"<p>(Required) The contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactId"}]}},"response":[{"id":"10e92b9a-92d5-48b8-ab9d-486bbc10333e","name":"OK","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/OrganizationGroup/:organizationGroupId/contacts/:contactId","host":["https://api.virtuoussoftware.com"],"path":["api","OrganizationGroup",":organizationGroupId","contacts",":contactId"],"variable":[{"key":"organizationGroupId","value":"<integer>","description":"(Required) The organization group identifier."},{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"organizationGroupId\": \"<integer>\",\n\t\"organizationGroupUrl\": \"<string>\",\n\t\"organizationId\": \"<integer>\",\n\t\"organizationName\": \"<string>\",\n\t\"organizationGroupName\": \"<string>\",\n\t\"organizationGroupLocation\": \"<string>\",\n\t\"organizationGroupDescription\": \"<string>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactName\": \"<string>\",\n\t\"contactUrl\": \"<string>\"\n}"},{"id":"a638ea57-fa8e-43c3-be3e-d95db050e58e","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/OrganizationGroup/:organizationGroupId/contacts/:contactId","host":["https://api.virtuoussoftware.com"],"path":["api","OrganizationGroup",":organizationGroupId","contacts",":contactId"],"variable":[{"key":"organizationGroupId","value":"<integer>","description":"(Required) The organization group identifier."},{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"2d9bad2d-0922-4f27-b2b3-a0acb1b34de5"},{"name":"Remove a Contact from an Organization Group","id":"80972d99-32fd-42de-965c-13c44010b931","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.virtuoussoftware.com/api/OrganizationGroup/:organizationGroupId/contacts/:contactId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","OrganizationGroup",":organizationGroupId","contacts",":contactId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The organization group identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"organizationGroupId"},{"description":{"content":"<p>(Required) The contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactId"}]}},"response":[{"id":"6eed4ac1-97a4-4f30-8cb4-8099e1786fa6","name":"OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/OrganizationGroup/:organizationGroupId/contacts/:contactId","host":["https://api.virtuoussoftware.com"],"path":["api","OrganizationGroup",":organizationGroupId","contacts",":contactId"],"variable":[{"key":"organizationGroupId","value":"<integer>","description":"(Required) The organization group identifier."},{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"7e07c42e-bbe3-4664-91d3-558916d8dc44","name":"BadRequest","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/OrganizationGroup/:organizationGroupId/contacts/:contactId","host":["https://api.virtuoussoftware.com"],"path":["api","OrganizationGroup",":organizationGroupId","contacts",":contactId"],"variable":[{"key":"organizationGroupId","value":"<integer>","description":"(Required) The organization group identifier."},{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"80972d99-32fd-42de-965c-13c44010b931"}],"id":"84d438ba-d980-4d72-a623-518a11fa0e00","_postman_id":"84d438ba-d980-4d72-a623-518a11fa0e00","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Relationships","item":[{"name":"Get Relationships for a Contact","id":"48497cb3-2183-4592-bc5b-db5d2e6d4689","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Relationship/ByContact/:contactId?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Relationship","ByContact",":contactId"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) The contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactId"}]}},"response":[{"id":"7f5da707-909c-4271-a104-28d7d6775e8a","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Relationship/ByContact/:contactId?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Relationship","ByContact",":contactId"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contact\": \"<string>\",\n\t\t\t\"contactIndividual\": \"<string>\",\n\t\t\t\"relatedContactId\": \"<integer>\",\n\t\t\t\"relatedContact\": \"<string>\",\n\t\t\t\"relatedContactIndividual\": \"<string>\",\n\t\t\t\"relationshipType\": \"<string>\",\n\t\t\t\"notes\": \"<string>\",\n\t\t\t\"relatedContactViewUrl\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contact\": \"<string>\",\n\t\t\t\"contactIndividual\": \"<string>\",\n\t\t\t\"relatedContactId\": \"<integer>\",\n\t\t\t\"relatedContact\": \"<string>\",\n\t\t\t\"relatedContactIndividual\": \"<string>\",\n\t\t\t\"relationshipType\": \"<string>\",\n\t\t\t\"notes\": \"<string>\",\n\t\t\t\"relatedContactViewUrl\": \"<string>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"48497cb3-2183-4592-bc5b-db5d2e6d4689"},{"name":"Create a Relationship","id":"67f32c77-5072-4a74-acc1-9816455ae400","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer>\",\n    \"relationshipType\": \"<string>\",\n    \"contactIndividualId\": \"<integer>\",\n    \"relatedContactId\": \"<integer>\",\n    \"relatedContactIndividualId\": \"<integer>\",\n    \"notes\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Relationship","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Relationship"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"6d9a9f0d-7cbb-41a9-8ae1-d43e9387dc42","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer>\",\n    \"relationshipType\": \"<string>\",\n    \"contactIndividualId\": \"<integer>\",\n    \"relatedContactId\": \"<integer>\",\n    \"relatedContactIndividualId\": \"<integer>\",\n    \"notes\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Relationship"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"contactId\": \"<integer>\",\n\t\"contact\": \"<string>\",\n\t\"contactIndividual\": \"<string>\",\n\t\"relatedContactId\": \"<integer>\",\n\t\"relatedContact\": \"<string>\",\n\t\"relatedContactIndividual\": \"<string>\",\n\t\"relationshipType\": \"<string>\",\n\t\"notes\": \"<string>\",\n\t\"relatedContactViewUrl\": \"<string>\"\n}"},{"id":"3911a7a3-43c1-4ccd-b557-c4fba52266ae","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer>\",\n    \"relationshipType\": \"<string>\",\n    \"contactIndividualId\": \"<integer>\",\n    \"relatedContactId\": \"<integer>\",\n    \"relatedContactIndividualId\": \"<integer>\",\n    \"notes\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Relationship"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"67f32c77-5072-4a74-acc1-9816455ae400"},{"name":"Update a Relationship","id":"5d2478de-c8cc-4b5d-9074-eed2efafcf47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"relationshipType\": \"<string>\",\n    \"notes\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Relationship/:relationshipId","description":"<p>Similar to other update methods in the API, excluding a property will remove it's value from the object. \nIf you're only updating a single property, the entire model is still required.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Relationship",":relationshipId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The relationship identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"relationshipId"}]}},"response":[{"id":"5b6989ea-391b-422a-84b2-f14d8b3b34c6","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"relationshipType\": \"<string>\",\n    \"notes\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Relationship/:relationshipId","host":["https://api.virtuoussoftware.com"],"path":["api","Relationship",":relationshipId"],"variable":[{"key":"relationshipId","value":"<integer>","description":"(Required) The relationship identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"contactId\": \"<integer>\",\n\t\"contact\": \"<string>\",\n\t\"contactIndividual\": \"<string>\",\n\t\"relatedContactId\": \"<integer>\",\n\t\"relatedContact\": \"<string>\",\n\t\"relatedContactIndividual\": \"<string>\",\n\t\"relationshipType\": \"<string>\",\n\t\"notes\": \"<string>\",\n\t\"relatedContactViewUrl\": \"<string>\"\n}"},{"id":"4a3f4145-08ed-4b90-89d7-44e022291edf","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"relationshipType\": \"<string>\",\n    \"notes\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Relationship/:relationshipId","host":["https://api.virtuoussoftware.com"],"path":["api","Relationship",":relationshipId"],"variable":[{"key":"relationshipId","value":"<integer>","description":"(Required) The relationship identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"5d2478de-c8cc-4b5d-9074-eed2efafcf47"},{"name":"Delete a Relationship","id":"5d09b912-2a90-4696-8ef2-5d36255a5d89","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.virtuoussoftware.com/api/Relationship/:relationshipId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Relationship",":relationshipId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The relationship identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"relationshipId"}]}},"response":[{"id":"c198e646-08df-4ab5-a773-c526d14d731d","name":"OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Relationship/:relationshipId","host":["https://api.virtuoussoftware.com"],"path":["api","Relationship",":relationshipId"],"variable":[{"key":"relationshipId","value":"<integer>","description":"(Required) The relationship identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"3e54b5b1-4190-4ce7-9110-8e0e91d71705","name":"BadRequest","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Relationship/:relationshipId","host":["https://api.virtuoussoftware.com"],"path":["api","Relationship",":relationshipId"],"variable":[{"key":"relationshipId","value":"<integer>","description":"(Required) The relationship identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"5d09b912-2a90-4696-8ef2-5d36255a5d89"},{"name":"Get Relationship Types","id":"b9d43217-fdf1-4243-8d06-1f60ce9a1dc8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Relationship/Types","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Relationship","Types"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"b148cda8-f279-4872-979b-11c20a524abd","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Relationship/Types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"group\": \"<string>\",\n\t\t\"relationship\": \"<string>\",\n\t\t\"inverseRelationship\": \"<string>\"\n\t},\n\t{\n\t\t\"group\": \"<string>\",\n\t\t\"relationship\": \"<string>\",\n\t\t\"inverseRelationship\": \"<string>\"\n\t}\n]"}],"_postman_id":"b9d43217-fdf1-4243-8d06-1f60ce9a1dc8"}],"id":"3b8e4963-276b-457d-bd08-1c2d1da764bd","_postman_id":"3b8e4963-276b-457d-bd08-1c2d1da764bd","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Tributes","item":[{"name":"Search for Tributes","id":"040b1619-d9b9-4109-8835-109a9ded8a25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Tribute/Search?firstName=<string>&lastName=<string>&city=<string>&state=<string>&tributeType=<string>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Tribute","Search"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>Optional. The tribute first name.</p>\n","type":"text/plain"},"key":"firstName","value":"<string>"},{"description":{"content":"<p>Optional. The tribute last name.</p>\n","type":"text/plain"},"key":"lastName","value":"<string>"},{"description":{"content":"<p>Optional. The tribute city.</p>\n","type":"text/plain"},"key":"city","value":"<string>"},{"description":{"content":"<p>Optional. The tribute state abbreviation..</p>\n","type":"text/plain"},"key":"state","value":"<string>"},{"description":{"content":"<p>Optional. The tribute type. Options: \"InHonorOf\", \"InMemoryOf\"</p>\n","type":"text/plain"},"key":"tributeType","value":"<string>"}],"variable":[]}},"response":[{"id":"80ad93ed-822f-466c-ac91-e4e3f59f302a","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Tribute/Search?firstName=<string>&lastName=<string>&city=<string>&state=<string>&tributeType=<string>","host":["https://api.virtuoussoftware.com"],"path":["api","Tribute","Search"],"query":[{"key":"firstName","value":"<string>"},{"key":"lastName","value":"<string>"},{"key":"city","value":"<string>"},{"key":"state","value":"<string>"},{"key":"tributeType","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"id\": \"<integer>\",\n\t\t\"tributeType\": \"<string>\",\n\t\t\"firstName\": \"<string>\",\n\t\t\"lastName\": \"<string>\",\n\t\t\"address1\": \"<string>\",\n\t\t\"address2\": \"<string>\",\n\t\t\"city\": \"<string>\",\n\t\t\"state\": \"<string>\",\n\t\t\"postalCode\": \"<string>\",\n\t\t\"defaultAcknowledgeeIndividualId\": \"<integer>\",\n\t\t\"defaultAcknowledgeeIndividualUrl\": \"<string>\",\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t},\n\t{\n\t\t\"id\": \"<integer>\",\n\t\t\"tributeType\": \"<string>\",\n\t\t\"firstName\": \"<string>\",\n\t\t\"lastName\": \"<string>\",\n\t\t\"address1\": \"<string>\",\n\t\t\"address2\": \"<string>\",\n\t\t\"city\": \"<string>\",\n\t\t\"state\": \"<string>\",\n\t\t\"postalCode\": \"<string>\",\n\t\t\"defaultAcknowledgeeIndividualId\": \"<integer>\",\n\t\t\"defaultAcknowledgeeIndividualUrl\": \"<string>\",\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t}\n]"}],"_postman_id":"040b1619-d9b9-4109-8835-109a9ded8a25"},{"name":"Create a Tribute","id":"e111e6ba-d7c3-4ee9-aecc-acc673665405","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"tributeType\": \"<string>\",\n    \"firstName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"address1\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"postalCode\": \"<string>\",\n    \"contactIndividualId\": \"<integer>\",\n    \"defaultAcknowledgeeIndividualId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Tribute","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Tribute"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"a13cb66d-1a87-4f6a-99d4-f81b31fccef6","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"tributeType\": \"<string>\",\n    \"firstName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"address1\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"postalCode\": \"<string>\",\n    \"contactIndividualId\": \"<integer>\",\n    \"defaultAcknowledgeeIndividualId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Tribute"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"tributeType\": \"<string>\",\n\t\"firstName\": \"<string>\",\n\t\"lastName\": \"<string>\",\n\t\"address1\": \"<string>\",\n\t\"address2\": \"<string>\",\n\t\"city\": \"<string>\",\n\t\"state\": \"<string>\",\n\t\"postalCode\": \"<string>\",\n\t\"defaultAcknowledgeeIndividualId\": \"<integer>\",\n\t\"defaultAcknowledgeeIndividualUrl\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\"\n}"},{"id":"743dfa22-c36b-4124-b234-88801223d3a8","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"tributeType\": \"<string>\",\n    \"firstName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"address1\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"postalCode\": \"<string>\",\n    \"contactIndividualId\": \"<integer>\",\n    \"defaultAcknowledgeeIndividualId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Tribute"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e111e6ba-d7c3-4ee9-aecc-acc673665405"},{"name":"Update a Tribute","id":"83bbf315-eb5e-423c-a6cb-c4efc553c65c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"tributeType\": \"<string>\",\n    \"firstName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"address1\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"postalCode\": \"<string>\",\n    \"contactIndividualId\": \"<integer>\",\n    \"defaultAcknowledgeeIndividualId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Tribute/:tributeId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Tribute",":tributeId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The tribute identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"tributeId"}]}},"response":[{"id":"858b1bfd-c22d-40e1-b223-5e742dea127e","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"tributeType\": \"<string>\",\n    \"firstName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"address1\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"postalCode\": \"<string>\",\n    \"contactIndividualId\": \"<integer>\",\n    \"defaultAcknowledgeeIndividualId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Tribute/:tributeId","host":["https://api.virtuoussoftware.com"],"path":["api","Tribute",":tributeId"],"variable":[{"key":"tributeId","value":"<integer>","description":"(Required) The tribute identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"tributeType\": \"<string>\",\n\t\"firstName\": \"<string>\",\n\t\"lastName\": \"<string>\",\n\t\"address1\": \"<string>\",\n\t\"address2\": \"<string>\",\n\t\"city\": \"<string>\",\n\t\"state\": \"<string>\",\n\t\"postalCode\": \"<string>\",\n\t\"defaultAcknowledgeeIndividualId\": \"<integer>\",\n\t\"defaultAcknowledgeeIndividualUrl\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\"\n}"},{"id":"b9d1e792-3d5b-4548-b8ce-b1eaef8aa823","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"tributeType\": \"<string>\",\n    \"firstName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"address1\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"postalCode\": \"<string>\",\n    \"contactIndividualId\": \"<integer>\",\n    \"defaultAcknowledgeeIndividualId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Tribute/:tributeId","host":["https://api.virtuoussoftware.com"],"path":["api","Tribute",":tributeId"],"variable":[{"key":"tributeId","value":"<integer>","description":"(Required) The tribute identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"83bbf315-eb5e-423c-a6cb-c4efc553c65c"}],"id":"e5b1962f-cd6a-4b44-a84c-30987f8d340b","_postman_id":"e5b1962f-cd6a-4b44-a84c-30987f8d340b","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}}],"id":"7dc8c272-a4df-4066-8240-f28dbfadab04","_postman_id":"7dc8c272-a4df-4066-8240-f28dbfadab04","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Giving","item":[{"name":"Gifts","item":[{"name":"How to Get Gifts","item":[{"name":"Get Gifts for a Contact","id":"e033af37-166a-4344-a6e5-7c81dd7651fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Gift/ByContact/:contactId?sortBy=<string>&descending=<boolean>&skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Gift","ByContact",":contactId"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The field to be sorted. Supported: Id, GiftDate, Amount, Batch, CreatedDateTime.</p>\n","type":"text/plain"},"key":"sortBy","value":"<string>"},{"description":{"content":"<p>The direction to be sorted.</p>\n","type":"text/plain"},"key":"descending","value":"<boolean>"},{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) The contact Id.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactId"}]}},"response":[{"id":"c6395fa4-9206-4dae-853f-7cb48b11d674","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Gift/ByContact/:contactId?sortBy=<string>&descending=<boolean>&skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Gift","ByContact",":contactId"],"query":[{"key":"sortBy","value":"<string>"},{"key":"descending","value":"<boolean>"},{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact Id."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactIndividualId\": \"<integer>\",\n\t\t\t\"giftType\": \"<string>\",\n\t\t\t\"giftDate\": \"<string>\",\n\t\t\t\"amount\": \"<string>\",\n\t\t\t\"segment\": \"<string>\",\n\t\t\t\"batch\": \"<string>\",\n\t\t\t\"giftUrl\": \"<string>\",\n\t\t\t\"culture\": \"<string>\",\n\t\t\t\"exchangeRate\": \"<double>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactIndividualId\": \"<integer>\",\n\t\t\t\"giftType\": \"<string>\",\n\t\t\t\"giftDate\": \"<string>\",\n\t\t\t\"amount\": \"<string>\",\n\t\t\t\"segment\": \"<string>\",\n\t\t\t\"batch\": \"<string>\",\n\t\t\t\"giftUrl\": \"<string>\",\n\t\t\t\"culture\": \"<string>\",\n\t\t\t\"exchangeRate\": \"<double>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"e033af37-166a-4344-a6e5-7c81dd7651fa"},{"name":"Get Gifts for a Contact by Reference ID","id":"b41d5f9f-5bef-4a3d-85d7-43c526db7239","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Gift/ByReference/:referenceId?skip=<integer>&take=<integer>&excludeReferenceOriginatedGifts=<boolean>","description":"<p>HMAC Auth only.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Gift","ByReference",":referenceId"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"},{"description":{"content":"<p>if set to true [exclude reference originated gifts].</p>\n","type":"text/plain"},"key":"excludeReferenceOriginatedGifts","value":"<boolean>"}],"variable":[{"description":{"content":"<p>(Required) The contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"referenceId"}]}},"response":[{"id":"7a45f531-1d47-43d8-b0da-1d4ca7d97372","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Gift/ByReference/:referenceId?skip=<integer>&take=<integer>&excludeReferenceOriginatedGifts=<boolean>","host":["https://api.virtuoussoftware.com"],"path":["api","Gift","ByReference",":referenceId"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"},{"key":"excludeReferenceOriginatedGifts","value":"<boolean>"}],"variable":[{"key":"referenceId","value":"<string>","description":"(Required) The contact identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"giftDesignations\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\t\t\"project\": \"<string>\",\n\t\t\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\t\t\"projectType\": \"<string>\",\n\t\t\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\t\t\"display\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\t\t\"project\": \"<string>\",\n\t\t\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\t\t\"projectType\": \"<string>\",\n\t\t\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\t\t\"display\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactIndividualId\": \"<integer>\",\n\t\t\t\"giftType\": \"<string>\",\n\t\t\t\"giftDate\": \"<string>\",\n\t\t\t\"amount\": \"<string>\",\n\t\t\t\"segment\": \"<string>\",\n\t\t\t\"batch\": \"<string>\",\n\t\t\t\"giftUrl\": \"<string>\",\n\t\t\t\"culture\": \"<string>\",\n\t\t\t\"exchangeRate\": \"<double>\"\n\t\t},\n\t\t{\n\t\t\t\"giftDesignations\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\t\t\"project\": \"<string>\",\n\t\t\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\t\t\"projectType\": \"<string>\",\n\t\t\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\t\t\"display\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\t\t\"project\": \"<string>\",\n\t\t\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\t\t\"projectType\": \"<string>\",\n\t\t\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\t\t\"display\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactIndividualId\": \"<integer>\",\n\t\t\t\"giftType\": \"<string>\",\n\t\t\t\"giftDate\": \"<string>\",\n\t\t\t\"amount\": \"<string>\",\n\t\t\t\"segment\": \"<string>\",\n\t\t\t\"batch\": \"<string>\",\n\t\t\t\"giftUrl\": \"<string>\",\n\t\t\t\"culture\": \"<string>\",\n\t\t\t\"exchangeRate\": \"<double>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"b41d5f9f-5bef-4a3d-85d7-43c526db7239"},{"name":"Get Passthrough Gifts for a Contact","id":"ece68970-db4c-4bbe-b7dc-b97aeb4481a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Gift/Passthrough/ByContact/:contactId?sortBy=<string>&descending=<boolean>&skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Gift","Passthrough","ByContact",":contactId"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The field to be sorted. Supported: Id, GiftDate, Amount, Batch, CreatedDateTime.</p>\n","type":"text/plain"},"key":"sortBy","value":"<string>"},{"description":{"content":"<p>The direction to be sorted.</p>\n","type":"text/plain"},"key":"descending","value":"<boolean>"},{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) The contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactId"}]}},"response":[{"id":"03cab39c-bfb1-4fd3-816f-99efb68123bd","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Gift/Passthrough/ByContact/:contactId?sortBy=<string>&descending=<boolean>&skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Gift","Passthrough","ByContact",":contactId"],"query":[{"key":"sortBy","value":"<string>"},{"key":"descending","value":"<boolean>"},{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactIndividualId\": \"<integer>\",\n\t\t\t\"giftType\": \"<string>\",\n\t\t\t\"giftDate\": \"<string>\",\n\t\t\t\"amount\": \"<string>\",\n\t\t\t\"segment\": \"<string>\",\n\t\t\t\"batch\": \"<string>\",\n\t\t\t\"giftUrl\": \"<string>\",\n\t\t\t\"culture\": \"<string>\",\n\t\t\t\"exchangeRate\": \"<double>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactIndividualId\": \"<integer>\",\n\t\t\t\"giftType\": \"<string>\",\n\t\t\t\"giftDate\": \"<string>\",\n\t\t\t\"amount\": \"<string>\",\n\t\t\t\"segment\": \"<string>\",\n\t\t\t\"batch\": \"<string>\",\n\t\t\t\"giftUrl\": \"<string>\",\n\t\t\t\"culture\": \"<string>\",\n\t\t\t\"exchangeRate\": \"<double>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"ece68970-db4c-4bbe-b7dc-b97aeb4481a2"},{"name":"Get a Gift","id":"1c36793d-84b9-4599-951e-fe8b281f80a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Gift/:giftId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Gift",":giftId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The gift Id.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"giftId"}]}},"response":[{"id":"4d68de11-5267-4765-a401-177a3ae9ed75","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Gift/:giftId","host":["https://api.virtuoussoftware.com"],"path":["api","Gift",":giftId"],"variable":[{"key":"giftId","value":"<integer>","description":"(Required) The gift Id."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"transactionSource\": \"<string>\",\n\t\"transactionId\": \"<string>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactName\": \"<string>\",\n\t\"contactUrl\": \"<string>\",\n\t\"giftType\": \"<string>\",\n\t\"giftTypeFormatted\": \"<string>\",\n\t\"giftDate\": \"<dateTime>\",\n\t\"giftDateFormatted\": \"<string>\",\n\t\"amount\": \"<double>\",\n\t\"amountFormatted\": \"<string>\",\n    \"currencyCode\": \"<string>\",\n    \"exchangeRate\": \"<decimal>\",\n    \"baseCurrencyCode\": \"<string>\",\n\t\"batch\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"segmentId\": \"<integer>\",\n\t\"segment\": \"<string>\",\n\t\"segmentCode\": \"<string>\",\n\t\"segmentUrl\": \"<string>\",\n\t\"mediaOutletId\": \"<integer>\",\n\t\"mediaOutlet\": \"<string>\",\n\t\"grantId\": \"<integer>\",\n\t\"grant\": \"<string>\",\n\t\"grantUrl\": \"<string>\",\n\t\"notes\": \"<string>\",\n\t\"tribute\": \"<string>\",\n\t\"tributeId\": \"<integer>\",\n\t\"tributeType\": \"<string>\",\n\t\"acknowledgeeIndividualId\": \"<integer>\",\n\t\"receiptDate\": \"<dateTime>\",\n\t\"receiptDateFormatted\": \"<string>\",\n\t\"contactPassthroughId\": \"<integer>\",\n\t\"contactPassthroughUrl\": \"<string>\",\n\t\"contactIndividualId\": \"<integer>\",\n\t\"cashAccountingCode\": \"<string>\",\n\t\"giftAskId\": \"<integer>\",\n\t\"contactMembershipId\": \"<integer>\",\n\t\"giftDesignations\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\"projectType\": \"<string>\",\n\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\"display\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\"projectType\": \"<string>\",\n\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\"display\": \"<string>\"\n\t\t}\n\t],\n\t\"giftPremiums\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"premiumId\": \"<integer>\",\n\t\t\t\"premium\": \"<string>\",\n\t\t\t\"premiumUrl\": \"<string>\",\n\t\t\t\"quantity\": \"<integer>\",\n\t\t\t\"display\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"premiumId\": \"<integer>\",\n\t\t\t\"premium\": \"<string>\",\n\t\t\t\"premiumUrl\": \"<string>\",\n\t\t\t\"quantity\": \"<integer>\",\n\t\t\t\"display\": \"<string>\"\n\t\t}\n\t],\n\t\"pledgePayments\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\"actualAmount\": \"<double>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\"actualAmount\": \"<double>\"\n\t\t}\n\t],\n\t\"recurringGiftPayments\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"gift\": {\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\t\"amount\": \"<double>\"\n\t\t\t},\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"dismissPaymentDate\": \"<dateTime>\",\n\t\t\t\"fulfillPaymentDate\": \"<dateTime>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"gift\": {\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\t\"amount\": \"<double>\"\n\t\t\t},\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"dismissPaymentDate\": \"<dateTime>\",\n\t\t\t\"fulfillPaymentDate\": \"<dateTime>\"\n\t\t}\n\t],\n\t\"giftUrl\": \"<string>\",\n\t\"isPrivate\": \"<boolean>\",\n\t\"isTaxDeductible\": \"<boolean>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"73bb3bac-9c1a-4bbf-9efe-a40cacceb9b8","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Gift/:giftId","host":["https://api.virtuoussoftware.com"],"path":["api","Gift",":giftId"],"variable":[{"key":"giftId","value":"<integer>","description":"(Required) The gift Id."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"1c36793d-84b9-4599-951e-fe8b281f80a2"},{"name":"Get a Gift by Transaction Source and ID","id":"08d16b40-0c34-43c6-a9a9-a4b7c3d7d453","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Gift/:transactionSource/:transactionId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Gift",":transactionSource",":transactionId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The transaction source.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"transactionSource"},{"description":{"content":"<p>(Required) The transaction id.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"transactionId"}]}},"response":[{"id":"1005e02d-ea97-4d36-ab85-941d258924e4","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Gift/:transactionSource/:transactionId","host":["https://api.virtuoussoftware.com"],"path":["api","Gift",":transactionSource",":transactionId"],"variable":[{"key":"transactionSource","value":"<string>","description":"(Required) The transaction source."},{"key":"transactionId","value":"<string>","description":"(Required) The transaction id."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"transactionSource\": \"<string>\",\n\t\"transactionId\": \"<string>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactName\": \"<string>\",\n\t\"contactUrl\": \"<string>\",\n\t\"giftType\": \"<string>\",\n\t\"giftTypeFormatted\": \"<string>\",\n\t\"giftDate\": \"<dateTime>\",\n\t\"giftDateFormatted\": \"<string>\",\n\t\"amount\": \"<double>\",\n\t\"amountFormatted\": \"<string>\",\n    \"currencyCode\": \"<string>\",\n    \"exchangeRate\": \"<decimal>\",\n    \"baseCurrencyCode\": \"<string>\",\n\t\"batch\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"segmentId\": \"<integer>\",\n\t\"segment\": \"<string>\",\n\t\"segmentCode\": \"<string>\",\n\t\"segmentUrl\": \"<string>\",\n\t\"mediaOutletId\": \"<integer>\",\n\t\"mediaOutlet\": \"<string>\",\n\t\"grantId\": \"<integer>\",\n\t\"grant\": \"<string>\",\n\t\"grantUrl\": \"<string>\",\n\t\"notes\": \"<string>\",\n\t\"tribute\": \"<string>\",\n\t\"tributeId\": \"<integer>\",\n\t\"tributeType\": \"<string>\",\n\t\"acknowledgeeIndividualId\": \"<integer>\",\n\t\"receiptDate\": \"<dateTime>\",\n\t\"receiptDateFormatted\": \"<string>\",\n\t\"contactPassthroughId\": \"<integer>\",\n\t\"contactPassthroughUrl\": \"<string>\",\n\t\"contactIndividualId\": \"<integer>\",\n\t\"cashAccountingCode\": \"<string>\",\n\t\"giftAskId\": \"<integer>\",\n\t\"contactMembershipId\": \"<integer>\",\n\t\"giftDesignations\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\"projectType\": \"<string>\",\n\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\"display\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\"projectType\": \"<string>\",\n\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\"display\": \"<string>\"\n\t\t}\n\t],\n\t\"giftPremiums\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"premiumId\": \"<integer>\",\n\t\t\t\"premium\": \"<string>\",\n\t\t\t\"premiumUrl\": \"<string>\",\n\t\t\t\"quantity\": \"<integer>\",\n\t\t\t\"display\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"premiumId\": \"<integer>\",\n\t\t\t\"premium\": \"<string>\",\n\t\t\t\"premiumUrl\": \"<string>\",\n\t\t\t\"quantity\": \"<integer>\",\n\t\t\t\"display\": \"<string>\"\n\t\t}\n\t],\n\t\"pledgePayments\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\"actualAmount\": \"<double>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\"actualAmount\": \"<double>\"\n\t\t}\n\t],\n\t\"recurringGiftPayments\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"gift\": {\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\t\"amount\": \"<double>\"\n\t\t\t},\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"dismissPaymentDate\": \"<dateTime>\",\n\t\t\t\"fulfillPaymentDate\": \"<dateTime>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"gift\": {\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\t\"amount\": \"<double>\"\n\t\t\t},\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"dismissPaymentDate\": \"<dateTime>\",\n\t\t\t\"fulfillPaymentDate\": \"<dateTime>\"\n\t\t}\n\t],\n\t\"giftUrl\": \"<string>\",\n\t\"isPrivate\": \"<boolean>\",\n\t\"isTaxDeductible\": \"<boolean>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"58ec8c7d-1a5e-4c92-aad9-2e73fbbc79b2","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Gift/:transactionSource/:transactionId","host":["https://api.virtuoussoftware.com"],"path":["api","Gift",":transactionSource",":transactionId"],"variable":[{"key":"transactionSource","value":"<string>","description":"(Required) The transaction source."},{"key":"transactionId","value":"<string>","description":"(Required) The transaction id."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"08d16b40-0c34-43c6-a9a9-a4b7c3d7d453"}],"id":"44c10056-4e92-47f9-a2c6-9c92de022869","_postman_id":"44c10056-4e92-47f9-a2c6-9c92de022869","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"How to Create and Update Gifts","item":[{"name":"Create a Gift *not recommended*","id":"b4c773db-88d0-4f07-ad06-d8ca32cbc236","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer>\",\n    \"giftType\": \"Cash\",\n    \"giftDate\": \"<dateTime>\",\n    \"amount\": \"<double>\",\n    \"transactionSource\": \"<string>\",\n    \"transactionId\": \"<string>\",\n    \"batch\": \"<string>\",\n    \"segmentId\": \"<integer>\",\n    \"receiptSegmentId\": \"<integer>\",\n    \"mediaOutletId\": \"<integer>\",\n    \"notes\": \"<string>\",\n    \"isPrivate\": \"<boolean>\",\n    \"receiptDate\": \"<dateTime>\",\n    \"contactIndividualId\": \"<integer>\",\n    \"contactPassthroughId\": \"<integer>\",\n    \"cashAccountingCode\": \"<string>\",\n    \"state\": \"<string>\",\n    \"isTaxDeductible\": \"<boolean>\",\n    \"giftAskId\": \"<integer>\",\n    \"passthroughGiftAskId\": \"<integer>\",\n    \"grantId\": \"<integer>\",\n    \"contactMembershipId\": \"<integer>\",\n    \"currencyCode\": \"<string>\",\n    \"exchangeRate\": \"<decimal>\",\n    \"checkNumber\": \"<string>\",\n    \"creditCardType\": \"<string>\",\n    \"cryptocoinType\": \"<string>\",\n    \"transactionHash\": \"<string>\",\n    \"coinSoldForCash\": \"<boolean>\",\n    \"coinAmount\": \"<double>\",\n    \"dateCoinWasSold\": \"<dateTime>\",\n    \"coinSaleAmount\": \"<double>\",\n    \"tickerSymbol\": \"<string>\",\n    \"numberOfShares\": \"<double>\",\n    \"iraCustodian\": \"<string>\",\n    \"stockSoldForCash\": \"<boolean>\",\n    \"dateStockWasSold\": \"<dateTime>\",\n    \"stockSaleAmount\": \"<double>\",\n    \"nonCashGiftTypeId\": \"<integer>\",\n    \"nonCashGiftType\": \"<string>\",\n    \"description\": \"<string>\",\n    \"nonCashSoldForCash\": \"<boolean>\",\n    \"dateNonCashWasSold\": \"<dateTime>\",\n    \"nonCashOriginalAmount\": \"<double>\",\n    \"nonCashSaleAmount\": \"<double>\",\n    \"giftDesignations\": [\n        {\n            \"projectId\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        },\n        {\n            \"projectId\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        }\n    ],\n    \"giftPremiums\": [\n        {\n            \"premiumId\": \"<integer>\",\n            \"quantity\": \"<integer>\",\n            \"state\": \"<string>\"\n        },\n        {\n            \"premiumId\": \"<integer>\",\n            \"quantity\": \"<integer>\",\n            \"state\": \"<string>\"\n        }\n    ],\n    \"pledgePayments\": [\n        {\n            \"id\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        },\n        {\n            \"id\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        }\n    ],\n    \"recurringGiftPayments\": [\n        {\n            \"id\": \"<integer>\",\n            \"paymentId\": \"RecurringGiftPayment-<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        },\n        {\n            \"id\": \"<integer>\",\n            \"paymentId\": \"RecurringGiftPayment-<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        }\n    ],\n    \"tributeType\": \"<string>\",\n    \"tributeId\": \"<integer>\",\n    \"tributeDescription\": \"<string>\",\n    \"acknowledgeeId\": \"<integer>\",\n    \"reversedGiftId\": \"<integer>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Gift","description":"<p>This endpoint creates a gift directly onto a contact record. Using this endpoint assumes<br />you know the precise contact the gift is matched to. Virtuous does not support cleaning up data<br />that is caused by creating the gifts incorrectly through this endpoint.<br />Please use the Gift Transaction endpoint as a better alternative.</p>\n<p><strong>RecurringGiftPayment</strong> and <strong>PledgePayment</strong> accepted <em>State</em> values:</p>\n<ul>\n<li><p>Add</p>\n</li>\n<li><p>Update</p>\n</li>\n<li><p>Delete</p>\n</li>\n<li><p>Ignore</p>\n</li>\n</ul>\n<p>You will need to prepend the string <code>RecurringGiftPayment-</code> to the recurringPaymentId.</p>\n<p><strong>GiftDate</strong> will just use the Date portion of the value to set the UTC date. There is no date or time conversion on this field, so make sure that the gift date is the UTC date of the gift.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Gift"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"281b83c3-ac72-41dc-a622-3f5bbafabddb","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer>\",\n    \"giftType\": \"<string>\",\n    \"giftDate\": \"<dateTime>\",\n    \"amount\": \"<double>\",\n    \"transactionSource\": \"<string>\",\n    \"transactionId\": \"<string>\",\n    \"batch\": \"<string>\",\n    \"segmentId\": \"<integer>\",\n    \"receiptSegmentId\": \"<integer>\",\n    \"mediaOutletId\": \"<integer>\",\n    \"notes\": \"<string>\",\n    \"isPrivate\": \"<boolean>\",\n    \"receiptDate\": \"<dateTime>\",\n    \"contactIndividualId\": \"<integer>\",\n    \"contactPassthroughId\": \"<integer>\",\n    \"cashAccountingCode\": \"<string>\",\n    \"state\": \"<string>\",\n    \"isTaxDeductible\": \"<boolean>\",\n    \"giftAskId\": \"<integer>\",\n    \"passthroughGiftAskId\": \"<integer>\",\n    \"grantId\": \"<integer>\",\n    \"contactMembershipId\": \"<integer>\",\n    \"currencyCode\": \"<string>\",\n    \"checkNumber\": \"<string>\",\n    \"creditCardType\": \"<string>\",\n    \"cryptocoinType\": \"<string>\",\n    \"transactionHash\": \"<string>\",\n    \"coinSoldForCash\": \"<boolean>\",\n    \"coinAmount\": \"<double>\",\n    \"dateCoinWasSold\": \"<dateTime>\",\n    \"coinSaleAmount\": \"<double>\",\n    \"tickerSymbol\": \"<string>\",\n    \"numberOfShares\": \"<double>\",\n    \"stockSoldForCash\": \"<boolean>\",\n    \"dateStockWasSold\": \"<dateTime>\",\n    \"stockSaleAmount\": \"<double>\",\n    \"nonCashGiftType\": \"<string>\",\n    \"description\": \"<string>\",\n    \"nonCashSoldForCash\": \"<boolean>\",\n    \"dateNonCashWasSold\": \"<dateTime>\",\n    \"nonCashOriginalAmount\": \"<double>\",\n    \"nonCashSaleAmount\": \"<double>\",\n    \"giftDesignations\": [\n        {\n            \"projectId\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        },\n        {\n            \"projectId\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        }\n    ],\n    \"giftPremiums\": [\n        {\n            \"premiumId\": \"<integer>\",\n            \"quantity\": \"<integer>\",\n            \"state\": \"<string>\"\n        },\n        {\n            \"premiumId\": \"<integer>\",\n            \"quantity\": \"<integer>\",\n            \"state\": \"<string>\"\n        }\n    ],\n    \"pledgePayments\": [\n        {\n            \"id\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        },\n        {\n            \"id\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        }\n    ],\n    \"recurringGiftPayments\": [\n        {\n            \"id\": \"<integer>\",\n            \"paymentId\": \"RecurringGiftPayment-<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        },\n        {\n            \"id\": \"<integer>\",\n            \"paymentId\": \"RecurringGiftPayment-<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        }\n    ],\n    \"tributeType\": \"<string>\",\n    \"tributeId\": \"<integer>\",\n    \"tributeDescription\": \"<string>\",\n    \"acknowledgeeId\": \"<integer>\",\n    \"reversedGiftId\": \"<integer>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Gift"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"transactionSource\": \"<string>\",\n\t\"transactionId\": \"<string>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactName\": \"<string>\",\n\t\"contactUrl\": \"<string>\",\n\t\"giftType\": \"<string>\",\n\t\"giftTypeFormatted\": \"<string>\",\n\t\"giftDate\": \"<dateTime>\",\n\t\"giftDateFormatted\": \"<string>\",\n\t\"amount\": \"<double>\",\n\t\"amountFormatted\": \"<string>\",\n    \"currencyCode\": \"<string>\",\n    \"exchangeRate\": \"<decimal>\",\n    \"baseCurrencyCode\": \"<string>\",\n\t\"batch\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"segmentId\": \"<integer>\",\n\t\"segment\": \"<string>\",\n\t\"segmentCode\": \"<string>\",\n\t\"segmentUrl\": \"<string>\",\n\t\"mediaOutletId\": \"<integer>\",\n\t\"mediaOutlet\": \"<string>\",\n\t\"grantId\": \"<integer>\",\n\t\"grant\": \"<string>\",\n\t\"grantUrl\": \"<string>\",\n\t\"notes\": \"<string>\",\n\t\"tribute\": \"<string>\",\n\t\"tributeId\": \"<integer>\",\n\t\"tributeType\": \"<string>\",\n\t\"acknowledgeeIndividualId\": \"<integer>\",\n\t\"receiptDate\": \"<dateTime>\",\n\t\"receiptDateFormatted\": \"<string>\",\n\t\"contactPassthroughId\": \"<integer>\",\n\t\"contactPassthroughUrl\": \"<string>\",\n\t\"contactIndividualId\": \"<integer>\",\n\t\"cashAccountingCode\": \"<string>\",\n\t\"giftAskId\": \"<integer>\",\n\t\"contactMembershipId\": \"<integer>\",\n\t\"giftDesignations\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\"projectType\": \"<string>\",\n\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\"display\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\"projectType\": \"<string>\",\n\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\"display\": \"<string>\"\n\t\t}\n\t],\n\t\"giftPremiums\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"premiumId\": \"<integer>\",\n\t\t\t\"premium\": \"<string>\",\n\t\t\t\"premiumUrl\": \"<string>\",\n\t\t\t\"quantity\": \"<integer>\",\n\t\t\t\"display\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"premiumId\": \"<integer>\",\n\t\t\t\"premium\": \"<string>\",\n\t\t\t\"premiumUrl\": \"<string>\",\n\t\t\t\"quantity\": \"<integer>\",\n\t\t\t\"display\": \"<string>\"\n\t\t}\n\t],\n\t\"pledgePayments\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\"actualAmount\": \"<double>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\"actualAmount\": \"<double>\"\n\t\t}\n\t],\n\t\"recurringGiftPayments\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"gift\": {\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\t\"amount\": \"<double>\"\n\t\t\t},\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"dismissPaymentDate\": \"<dateTime>\",\n\t\t\t\"fulfillPaymentDate\": \"<dateTime>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"gift\": {\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\t\"amount\": \"<double>\"\n\t\t\t},\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"dismissPaymentDate\": \"<dateTime>\",\n\t\t\t\"fulfillPaymentDate\": \"<dateTime>\"\n\t\t}\n\t],\n\t\"giftUrl\": \"<string>\",\n\t\"isPrivate\": \"<boolean>\",\n\t\"isTaxDeductible\": \"<boolean>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"870268ef-0548-4002-bed5-83502c385048","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer>\",\n    \"giftType\": \"<string>\",\n    \"giftDate\": \"<dateTime>\",\n    \"amount\": \"<double>\",\n    \"transactionSource\": \"<string>\",\n    \"transactionId\": \"<string>\",\n    \"batch\": \"<string>\",\n    \"segmentId\": \"<integer>\",\n    \"receiptSegmentId\": \"<integer>\",\n    \"mediaOutletId\": \"<integer>\",\n    \"notes\": \"<string>\",\n    \"isPrivate\": \"<boolean>\",\n    \"receiptDate\": \"<dateTime>\",\n    \"contactIndividualId\": \"<integer>\",\n    \"contactPassthroughId\": \"<integer>\",\n    \"cashAccountingCode\": \"<string>\",\n    \"state\": \"<string>\",\n    \"isTaxDeductible\": \"<boolean>\",\n    \"giftAskId\": \"<integer>\",\n    \"passthroughGiftAskId\": \"<integer>\",\n    \"grantId\": \"<integer>\",\n    \"contactMembershipId\": \"<integer>\",\n    \"checkNumber\": \"<string>\",\n    \"creditCardType\": \"<string>\",\n    \"cryptocoinType\": \"<string>\",\n    \"transactionHash\": \"<string>\",\n    \"coinSoldForCash\": \"<boolean>\",\n    \"coinAmount\": \"<double>\",\n    \"dateCoinWasSold\": \"<dateTime>\",\n    \"coinSaleAmount\": \"<double>\",\n    \"tickerSymbol\": \"<string>\",\n    \"numberOfShares\": \"<double>\",\n    \"stockSoldForCash\": \"<boolean>\",\n    \"dateStockWasSold\": \"<dateTime>\",\n    \"stockSaleAmount\": \"<double>\",\n    \"nonCashGiftType\": \"<string>\",\n    \"description\": \"<string>\",\n    \"nonCashSoldForCash\": \"<boolean>\",\n    \"dateNonCashWasSold\": \"<dateTime>\",\n    \"nonCashOriginalAmount\": \"<double>\",\n    \"nonCashSaleAmount\": \"<double>\",\n    \"giftDesignations\": [\n        {\n            \"projectId\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        },\n        {\n            \"projectId\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        }\n    ],\n    \"giftPremiums\": [\n        {\n            \"premiumId\": \"<integer>\",\n            \"quantity\": \"<integer>\",\n            \"state\": \"<string>\"\n        },\n        {\n            \"premiumId\": \"<integer>\",\n            \"quantity\": \"<integer>\",\n            \"state\": \"<string>\"\n        }\n    ],\n    \"pledgePayments\": [\n        {\n            \"id\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        },\n        {\n            \"id\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        }\n    ],\n    \"recurringGiftPayments\": [\n        {\n            \"id\": \"<integer>\",\n            \"paymentId\": \"RecurringGiftPayment-<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        },\n        {\n            \"id\": \"<integer>\",\n            \"paymentId\": \"RecurringGiftPayment-<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        }\n    ],\n    \"tributeType\": \"<string>\",\n    \"tributeId\": \"<integer>\",\n    \"tributeDescription\": \"<string>\",\n    \"acknowledgeeId\": \"<integer>\",\n    \"reversedGiftId\": \"<integer>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Gift"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"c39f61d3-23fb-4c8f-9adf-91de57855fb1","name":"Create a Cash Gift *not recommended*","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"contactId\": 1234,\n    \"giftType\": \"Cash\",\n    \"giftDate\": \"2023-02-22\",\n    \"amount\": \"100.00\",\n    \"transactionSource\": \"<string>\",\n    \"transactionId\": \"<string>\",\n    \"batch\": \"<string>\",\n    \"segmentId\": \"<integer>\",\n    \"receiptSegmentId\": \"<integer>\",\n    \"mediaOutletId\": \"<integer>\",\n    \"notes\": \"<string>\",\n    \"isPrivate\": \"<boolean>\",\n    \"receiptDate\": \"<dateTime>\",\n    \"contactIndividualId\": \"<integer>\",\n    \"contactPassthroughId\": \"<integer>\",\n    \"cashAccountingCode\": \"<string>\",\n    \"state\": \"<string>\",\n    \"isTaxDeductible\": \"<boolean>\",\n    \"giftAskId\": \"<integer>\",\n    \"passthroughGiftAskId\": \"<integer>\",\n    \"grantId\": \"<integer>\",\n    \"contactMembershipId\": \"<integer>\",\n    \"currencyCode\": \"<string>\",\n    \"checkNumber\": \"<string>\",\n    \"giftDesignations\": [\n        {\n            \"projectId\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        },\n        {\n            \"projectId\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        }\n    ],\n    \"giftPremiums\": [\n        {\n            \"premiumId\": \"<integer>\",\n            \"quantity\": \"<integer>\",\n            \"state\": \"<string>\"\n        },\n        {\n            \"premiumId\": \"<integer>\",\n            \"quantity\": \"<integer>\",\n            \"state\": \"<string>\"\n        }\n    ],\n    \"pledgePayments\": [\n        {\n            \"id\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        },\n        {\n            \"id\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        }\n    ],\n    \"recurringGiftPayments\": [\n        {\n            \"id\": \"<integer>\",\n            \"paymentId\": \"RecurringGiftPayment-<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        },\n        {\n            \"id\": \"<integer>\",\n            \"paymentId\": \"RecurringGiftPayment-<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        }\n    ],\n    \"tributeType\": \"<string>\",\n    \"tributeId\": \"<integer>\",\n    \"tributeDescription\": \"<string>\",\n    \"acknowledgeeId\": \"<integer>\",\n    \"reversedGiftId\": \"<integer>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Gift"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b4c773db-88d0-4f07-ad06-d8ca32cbc236"},{"name":"Create many Gifts *not recommended*","id":"01dfd47f-c5cc-4070-b31b-3015aa437b7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n    {\n        \"contactId\": \"<integer>\",\n        \"giftType\": \"<string>\",\n        \"giftDate\": \"<dateTime>\",\n        \"amount\": \"<double>\",\n        \"transactionSource\": \"<string>\",\n        \"transactionId\": \"<string>\",\n        \"batch\": \"<string>\",\n        \"segmentId\": \"<integer>\",\n        \"receiptSegmentId\": \"<integer>\",\n        \"mediaOutletId\": \"<integer>\",\n        \"notes\": \"<string>\",\n        \"isPrivate\": \"<boolean>\",\n        \"receiptDate\": \"<dateTime>\",\n        \"contactIndividualId\": \"<integer>\",\n        \"contactPassthroughId\": \"<integer>\",\n        \"cashAccountingCode\": \"<string>\",\n        \"state\": \"<string>\",\n        \"isTaxDeductible\": \"<boolean>\",\n        \"giftAskId\": \"<integer>\",\n        \"passthroughGiftAskId\": \"<integer>\",\n        \"grantId\": \"<integer>\",\n        \"contactMembershipId\": \"<integer>\",\n        \"currencyCode\": \"<string>\",\n        \"exchangeRate\": \"<decimal>\",\n        \"checkNumber\": \"<string>\",\n        \"creditCardType\": \"<string>\",\n        \"cryptocoinType\": \"<string>\",\n        \"transactionHash\": \"<string>\",\n        \"coinSoldForCash\": \"<boolean>\",\n        \"coinAmount\": \"<double>\",\n        \"dateCoinWasSold\": \"<dateTime>\",\n        \"coinSaleAmount\": \"<double>\",\n        \"tickerSymbol\": \"<string>\",\n        \"numberOfShares\": \"<double>\",\n        \"stockSoldForCash\": \"<boolean>\",\n        \"dateStockWasSold\": \"<dateTime>\",\n        \"stockSaleAmount\": \"<double>\",\n        \"nonCashGiftTypeId\": \"<integer>\",\n        \"nonCashGiftType\": \"<string>\",\n        \"description\": \"<string>\",\n        \"nonCashSoldForCash\": \"<boolean>\",\n        \"dateNonCashWasSold\": \"<dateTime>\",\n        \"nonCashOriginalAmount\": \"<double>\",\n        \"nonCashSaleAmount\": \"<double>\",\n        \"giftDesignations\": [\n            {\n                \"projectId\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            },\n            {\n                \"projectId\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            }\n        ],\n        \"giftPremiums\": [\n            {\n                \"premiumId\": \"<integer>\",\n                \"quantity\": \"<integer>\",\n                \"state\": \"<string>\"\n            },\n            {\n                \"premiumId\": \"<integer>\",\n                \"quantity\": \"<integer>\",\n                \"state\": \"<string>\"\n            }\n        ],\n        \"pledgePayments\": [\n            {\n                \"id\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            },\n            {\n                \"id\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            }\n        ],\n        \"recurringGiftPayments\": [\n            {\n                \"id\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            },\n            {\n                \"id\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            }\n        ],\n        \"tributeType\": \"<string>\",\n        \"tributeId\": \"<integer>\",\n        \"tributeDescription\": \"<string>\",\n        \"acknowledgeeId\": \"<integer>\",\n        \"reversedGiftId\": \"<integer>\",\n        \"customFields\": [\n            {\n                \"name\": \"<string>\",\n                \"value\": \"<string>\",\n                \"displayName\": \"<string>\"\n            },\n            {\n                \"name\": \"<string>\",\n                \"value\": \"<string>\",\n                \"displayName\": \"<string>\"\n            }\n        ]\n    },\n    {\n        \"contactId\": \"<integer>\",\n        \"giftType\": \"<string>\",\n        \"giftDate\": \"<dateTime>\",\n        \"amount\": \"<double>\",\n        \"transactionSource\": \"<string>\",\n        \"transactionId\": \"<string>\",\n        \"batch\": \"<string>\",\n        \"segmentId\": \"<integer>\",\n        \"receiptSegmentId\": \"<integer>\",\n        \"mediaOutletId\": \"<integer>\",\n        \"notes\": \"<string>\",\n        \"isPrivate\": \"<boolean>\",\n        \"receiptDate\": \"<dateTime>\",\n        \"contactIndividualId\": \"<integer>\",\n        \"contactPassthroughId\": \"<integer>\",\n        \"cashAccountingCode\": \"<string>\",\n        \"state\": \"<string>\",\n        \"isTaxDeductible\": \"<boolean>\",\n        \"giftAskId\": \"<integer>\",\n        \"passthroughGiftAskId\": \"<integer>\",\n        \"grantId\": \"<integer>\",\n        \"contactMembershipId\": \"<integer>\",\n        \"currencyCode\": \"<string>\",\n        \"checkNumber\": \"<string>\",\n        \"iraCustodian\": \"<string>\",\n        \"creditCardType\": \"<string>\",\n        \"cryptocoinType\": \"<string>\",\n        \"transactionHash\": \"<string>\",\n        \"coinSoldForCash\": \"<boolean>\",\n        \"coinAmount\": \"<double>\",\n        \"dateCoinWasSold\": \"<dateTime>\",\n        \"coinSaleAmount\": \"<double>\",\n        \"tickerSymbol\": \"<string>\",\n        \"numberOfShares\": \"<double>\",\n        \"stockSoldForCash\": \"<boolean>\",\n        \"dateStockWasSold\": \"<dateTime>\",\n        \"stockSaleAmount\": \"<double>\",\n        \"nonCashGiftType\": \"<string>\",\n        \"description\": \"<string>\",\n        \"nonCashSoldForCash\": \"<boolean>\",\n        \"dateNonCashWasSold\": \"<dateTime>\",\n        \"nonCashOriginalAmount\": \"<double>\",\n        \"nonCashSaleAmount\": \"<double>\",\n        \"giftDesignations\": [\n            {\n                \"projectId\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            },\n            {\n                \"projectId\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            }\n        ],\n        \"giftPremiums\": [\n            {\n                \"premiumId\": \"<integer>\",\n                \"quantity\": \"<integer>\",\n                \"state\": \"<string>\"\n            },\n            {\n                \"premiumId\": \"<integer>\",\n                \"quantity\": \"<integer>\",\n                \"state\": \"<string>\"\n            }\n        ],\n        \"pledgePayments\": [\n            {\n                \"id\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            },\n            {\n                \"id\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            }\n        ],\n        \"recurringGiftPayments\": [\n            {\n                \"id\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            },\n            {\n                \"id\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            }\n        ],\n        \"tributeType\": \"<string>\",\n        \"tributeId\": \"<integer>\",\n        \"tributeDescription\": \"<string>\",\n        \"acknowledgeeId\": \"<integer>\",\n        \"reversedGiftId\": \"<integer>\",\n        \"customFields\": [\n            {\n                \"name\": \"<string>\",\n                \"value\": \"<string>\",\n                \"displayName\": \"<string>\"\n            },\n            {\n                \"name\": \"<string>\",\n                \"value\": \"<string>\",\n                \"displayName\": \"<string>\"\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Gift/Bulk","description":"<p>Bulk create up to 100 Gifts at a time. Please note that\nthis endpoint creates gifts directly onto a contact record. Using this endpoint assumes\nyou know the precise contact the gift is matched to. Virtuous does not support cleaning up data\nthat is caused by creating the gifts incorrectly through this endpoint.\nPlease use the Gift Transaction endpoint as a better alternative.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Gift","Bulk"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"110af3da-f8b8-4be5-bff6-b29820cc9f70","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"contactId\": \"<integer>\",\n        \"giftType\": \"<string>\",\n        \"giftDate\": \"<dateTime>\",\n        \"amount\": \"<double>\",\n        \"transactionSource\": \"<string>\",\n        \"transactionId\": \"<string>\",\n        \"batch\": \"<string>\",\n        \"segmentId\": \"<integer>\",\n        \"receiptSegmentId\": \"<integer>\",\n        \"mediaOutletId\": \"<integer>\",\n        \"notes\": \"<string>\",\n        \"isPrivate\": \"<boolean>\",\n        \"receiptDate\": \"<dateTime>\",\n        \"contactIndividualId\": \"<integer>\",\n        \"contactPassthroughId\": \"<integer>\",\n        \"cashAccountingCode\": \"<string>\",\n        \"state\": \"<string>\",\n        \"isTaxDeductible\": \"<boolean>\",\n        \"giftAskId\": \"<integer>\",\n        \"passthroughGiftAskId\": \"<integer>\",\n        \"grantId\": \"<integer>\",\n        \"contactMembershipId\": \"<integer>\",\n        \"checkNumber\": \"<string>\",\n        \"creditCardType\": \"<string>\",\n        \"cryptocoinType\": \"<string>\",\n        \"transactionHash\": \"<string>\",\n        \"coinSoldForCash\": \"<boolean>\",\n        \"coinAmount\": \"<double>\",\n        \"dateCoinWasSold\": \"<dateTime>\",\n        \"coinSaleAmount\": \"<double>\",\n        \"tickerSymbol\": \"<string>\",\n        \"numberOfShares\": \"<double>\",\n        \"stockSoldForCash\": \"<boolean>\",\n        \"dateStockWasSold\": \"<dateTime>\",\n        \"stockSaleAmount\": \"<double>\",\n        \"nonCashGiftType\": \"<string>\",\n        \"description\": \"<string>\",\n        \"nonCashSoldForCash\": \"<boolean>\",\n        \"dateNonCashWasSold\": \"<dateTime>\",\n        \"nonCashOriginalAmount\": \"<double>\",\n        \"nonCashSaleAmount\": \"<double>\",\n        \"giftDesignations\": [\n            {\n                \"projectId\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            },\n            {\n                \"projectId\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            }\n        ],\n        \"giftPremiums\": [\n            {\n                \"premiumId\": \"<integer>\",\n                \"quantity\": \"<integer>\",\n                \"state\": \"<string>\"\n            },\n            {\n                \"premiumId\": \"<integer>\",\n                \"quantity\": \"<integer>\",\n                \"state\": \"<string>\"\n            }\n        ],\n        \"pledgePayments\": [\n            {\n                \"id\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            },\n            {\n                \"id\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            }\n        ],\n        \"recurringGiftPayments\": [\n            {\n                \"id\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            },\n            {\n                \"id\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            }\n        ],\n        \"tributeType\": \"<string>\",\n        \"tributeId\": \"<integer>\",\n        \"tributeDescription\": \"<string>\",\n        \"acknowledgeeId\": \"<integer>\",\n        \"reversedGiftId\": \"<integer>\",\n        \"customFields\": [\n            {\n                \"name\": \"<string>\",\n                \"value\": \"<string>\",\n                \"displayName\": \"<string>\"\n            },\n            {\n                \"name\": \"<string>\",\n                \"value\": \"<string>\",\n                \"displayName\": \"<string>\"\n            }\n        ]\n    },\n    {\n        \"contactId\": \"<integer>\",\n        \"giftType\": \"<string>\",\n        \"giftDate\": \"<dateTime>\",\n        \"amount\": \"<double>\",\n        \"transactionSource\": \"<string>\",\n        \"transactionId\": \"<string>\",\n        \"batch\": \"<string>\",\n        \"segmentId\": \"<integer>\",\n        \"receiptSegmentId\": \"<integer>\",\n        \"mediaOutletId\": \"<integer>\",\n        \"notes\": \"<string>\",\n        \"isPrivate\": \"<boolean>\",\n        \"receiptDate\": \"<dateTime>\",\n        \"contactIndividualId\": \"<integer>\",\n        \"contactPassthroughId\": \"<integer>\",\n        \"cashAccountingCode\": \"<string>\",\n        \"state\": \"<string>\",\n        \"isTaxDeductible\": \"<boolean>\",\n        \"giftAskId\": \"<integer>\",\n        \"passthroughGiftAskId\": \"<integer>\",\n        \"grantId\": \"<integer>\",\n        \"contactMembershipId\": \"<integer>\",\n        \"checkNumber\": \"<string>\",\n        \"currencyCode\": \"<string>\",\n        \"creditCardType\": \"<string>\",\n        \"cryptocoinType\": \"<string>\",\n        \"transactionHash\": \"<string>\",\n        \"coinSoldForCash\": \"<boolean>\",\n        \"coinAmount\": \"<double>\",\n        \"dateCoinWasSold\": \"<dateTime>\",\n        \"coinSaleAmount\": \"<double>\",\n        \"tickerSymbol\": \"<string>\",\n        \"numberOfShares\": \"<double>\",\n        \"stockSoldForCash\": \"<boolean>\",\n        \"dateStockWasSold\": \"<dateTime>\",\n        \"stockSaleAmount\": \"<double>\",\n        \"nonCashGiftType\": \"<string>\",\n        \"description\": \"<string>\",\n        \"nonCashSoldForCash\": \"<boolean>\",\n        \"dateNonCashWasSold\": \"<dateTime>\",\n        \"nonCashOriginalAmount\": \"<double>\",\n        \"nonCashSaleAmount\": \"<double>\",\n        \"giftDesignations\": [\n            {\n                \"projectId\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            },\n            {\n                \"projectId\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            }\n        ],\n        \"giftPremiums\": [\n            {\n                \"premiumId\": \"<integer>\",\n                \"quantity\": \"<integer>\",\n                \"state\": \"<string>\"\n            },\n            {\n                \"premiumId\": \"<integer>\",\n                \"quantity\": \"<integer>\",\n                \"state\": \"<string>\"\n            }\n        ],\n        \"pledgePayments\": [\n            {\n                \"id\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            },\n            {\n                \"id\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            }\n        ],\n        \"recurringGiftPayments\": [\n            {\n                \"id\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            },\n            {\n                \"id\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            }\n        ],\n        \"tributeType\": \"<string>\",\n        \"tributeId\": \"<integer>\",\n        \"tributeDescription\": \"<string>\",\n        \"acknowledgeeId\": \"<integer>\",\n        \"reversedGiftId\": \"<integer>\",\n        \"customFields\": [\n            {\n                \"name\": \"<string>\",\n                \"value\": \"<string>\",\n                \"displayName\": \"<string>\"\n            },\n            {\n                \"name\": \"<string>\",\n                \"value\": \"<string>\",\n                \"displayName\": \"<string>\"\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Gift/Bulk"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"transactionSource\": \"<string>\",\n\t\"transactionId\": \"<string>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactName\": \"<string>\",\n\t\"contactUrl\": \"<string>\",\n\t\"giftType\": \"<string>\",\n\t\"giftTypeFormatted\": \"<string>\",\n\t\"giftDate\": \"<dateTime>\",\n\t\"giftDateFormatted\": \"<string>\",\n\t\"amount\": \"<double>\",\n\t\"amountFormatted\": \"<string>\",\n    \"currencyCode\": \"<string>\",\n    \"exchangeRate\": \"<decimal>\",\n    \"baseCurrencyCode\": \"<string>\",\n\t\"batch\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"segmentId\": \"<integer>\",\n\t\"segment\": \"<string>\",\n\t\"segmentCode\": \"<string>\",\n\t\"segmentUrl\": \"<string>\",\n\t\"mediaOutletId\": \"<integer>\",\n\t\"mediaOutlet\": \"<string>\",\n\t\"grantId\": \"<integer>\",\n\t\"grant\": \"<string>\",\n\t\"grantUrl\": \"<string>\",\n\t\"notes\": \"<string>\",\n\t\"tribute\": \"<string>\",\n\t\"tributeId\": \"<integer>\",\n\t\"tributeType\": \"<string>\",\n\t\"acknowledgeeIndividualId\": \"<integer>\",\n\t\"receiptDate\": \"<dateTime>\",\n\t\"receiptDateFormatted\": \"<string>\",\n\t\"contactPassthroughId\": \"<integer>\",\n\t\"contactPassthroughUrl\": \"<string>\",\n\t\"contactIndividualId\": \"<integer>\",\n\t\"cashAccountingCode\": \"<string>\",\n\t\"giftAskId\": \"<integer>\",\n\t\"contactMembershipId\": \"<integer>\",\n\t\"giftDesignations\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\"projectType\": \"<string>\",\n\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\"display\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\"projectType\": \"<string>\",\n\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\"display\": \"<string>\"\n\t\t}\n\t],\n\t\"giftPremiums\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"premiumId\": \"<integer>\",\n\t\t\t\"premium\": \"<string>\",\n\t\t\t\"premiumUrl\": \"<string>\",\n\t\t\t\"quantity\": \"<integer>\",\n\t\t\t\"display\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"premiumId\": \"<integer>\",\n\t\t\t\"premium\": \"<string>\",\n\t\t\t\"premiumUrl\": \"<string>\",\n\t\t\t\"quantity\": \"<integer>\",\n\t\t\t\"display\": \"<string>\"\n\t\t}\n\t],\n\t\"pledgePayments\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\"actualAmount\": \"<double>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\"actualAmount\": \"<double>\"\n\t\t}\n\t],\n\t\"recurringGiftPayments\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"gift\": {\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\t\"amount\": \"<double>\"\n\t\t\t},\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"dismissPaymentDate\": \"<dateTime>\",\n\t\t\t\"fulfillPaymentDate\": \"<dateTime>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"gift\": {\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\t\"amount\": \"<double>\"\n\t\t\t},\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"dismissPaymentDate\": \"<dateTime>\",\n\t\t\t\"fulfillPaymentDate\": \"<dateTime>\"\n\t\t}\n\t],\n\t\"giftUrl\": \"<string>\",\n\t\"isPrivate\": \"<boolean>\",\n\t\"isTaxDeductible\": \"<boolean>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"bff16fc4-3ef8-4cff-9cc2-5c9c82d9ce89","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"contactId\": \"<integer>\",\n        \"giftType\": \"<string>\",\n        \"giftDate\": \"<dateTime>\",\n        \"amount\": \"<double>\",\n        \"transactionSource\": \"<string>\",\n        \"transactionId\": \"<string>\",\n        \"batch\": \"<string>\",\n        \"segmentId\": \"<integer>\",\n        \"receiptSegmentId\": \"<integer>\",\n        \"mediaOutletId\": \"<integer>\",\n        \"notes\": \"<string>\",\n        \"isPrivate\": \"<boolean>\",\n        \"receiptDate\": \"<dateTime>\",\n        \"contactIndividualId\": \"<integer>\",\n        \"contactPassthroughId\": \"<integer>\",\n        \"cashAccountingCode\": \"<string>\",\n        \"state\": \"<string>\",\n        \"isTaxDeductible\": \"<boolean>\",\n        \"giftAskId\": \"<integer>\",\n        \"passthroughGiftAskId\": \"<integer>\",\n        \"grantId\": \"<integer>\",\n        \"contactMembershipId\": \"<integer>\",\n        \"checkNumber\": \"<string>\",\n        \"creditCardType\": \"<string>\",\n        \"cryptocoinType\": \"<string>\",\n        \"transactionHash\": \"<string>\",\n        \"coinSoldForCash\": \"<boolean>\",\n        \"coinAmount\": \"<double>\",\n        \"dateCoinWasSold\": \"<dateTime>\",\n        \"coinSaleAmount\": \"<double>\",\n        \"tickerSymbol\": \"<string>\",\n        \"numberOfShares\": \"<double>\",\n        \"stockSoldForCash\": \"<boolean>\",\n        \"dateStockWasSold\": \"<dateTime>\",\n        \"stockSaleAmount\": \"<double>\",\n        \"nonCashGiftType\": \"<string>\",\n        \"description\": \"<string>\",\n        \"nonCashSoldForCash\": \"<boolean>\",\n        \"dateNonCashWasSold\": \"<dateTime>\",\n        \"nonCashOriginalAmount\": \"<double>\",\n        \"nonCashSaleAmount\": \"<double>\",\n        \"giftDesignations\": [\n            {\n                \"projectId\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            },\n            {\n                \"projectId\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            }\n        ],\n        \"giftPremiums\": [\n            {\n                \"premiumId\": \"<integer>\",\n                \"quantity\": \"<integer>\",\n                \"state\": \"<string>\"\n            },\n            {\n                \"premiumId\": \"<integer>\",\n                \"quantity\": \"<integer>\",\n                \"state\": \"<string>\"\n            }\n        ],\n        \"pledgePayments\": [\n            {\n                \"id\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            },\n            {\n                \"id\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            }\n        ],\n        \"recurringGiftPayments\": [\n            {\n                \"id\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            },\n            {\n                \"id\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            }\n        ],\n        \"tributeType\": \"<string>\",\n        \"tributeId\": \"<integer>\",\n        \"tributeDescription\": \"<string>\",\n        \"acknowledgeeId\": \"<integer>\",\n        \"reversedGiftId\": \"<integer>\",\n        \"customFields\": [\n            {\n                \"name\": \"<string>\",\n                \"value\": \"<string>\",\n                \"displayName\": \"<string>\"\n            },\n            {\n                \"name\": \"<string>\",\n                \"value\": \"<string>\",\n                \"displayName\": \"<string>\"\n            }\n        ]\n    },\n    {\n        \"contactId\": \"<integer>\",\n        \"giftType\": \"<string>\",\n        \"giftDate\": \"<dateTime>\",\n        \"amount\": \"<double>\",\n        \"transactionSource\": \"<string>\",\n        \"transactionId\": \"<string>\",\n        \"batch\": \"<string>\",\n        \"segmentId\": \"<integer>\",\n        \"receiptSegmentId\": \"<integer>\",\n        \"mediaOutletId\": \"<integer>\",\n        \"notes\": \"<string>\",\n        \"isPrivate\": \"<boolean>\",\n        \"receiptDate\": \"<dateTime>\",\n        \"contactIndividualId\": \"<integer>\",\n        \"contactPassthroughId\": \"<integer>\",\n        \"cashAccountingCode\": \"<string>\",\n        \"state\": \"<string>\",\n        \"isTaxDeductible\": \"<boolean>\",\n        \"giftAskId\": \"<integer>\",\n        \"passthroughGiftAskId\": \"<integer>\",\n        \"grantId\": \"<integer>\",\n        \"contactMembershipId\": \"<integer>\",\n        \"checkNumber\": \"<string>\",\n        \"creditCardType\": \"<string>\",\n        \"cryptocoinType\": \"<string>\",\n        \"transactionHash\": \"<string>\",\n        \"coinSoldForCash\": \"<boolean>\",\n        \"coinAmount\": \"<double>\",\n        \"dateCoinWasSold\": \"<dateTime>\",\n        \"coinSaleAmount\": \"<double>\",\n        \"tickerSymbol\": \"<string>\",\n        \"numberOfShares\": \"<double>\",\n        \"stockSoldForCash\": \"<boolean>\",\n        \"dateStockWasSold\": \"<dateTime>\",\n        \"stockSaleAmount\": \"<double>\",\n        \"nonCashGiftType\": \"<string>\",\n        \"description\": \"<string>\",\n        \"nonCashSoldForCash\": \"<boolean>\",\n        \"dateNonCashWasSold\": \"<dateTime>\",\n        \"nonCashOriginalAmount\": \"<double>\",\n        \"nonCashSaleAmount\": \"<double>\",\n        \"giftDesignations\": [\n            {\n                \"projectId\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            },\n            {\n                \"projectId\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            }\n        ],\n        \"giftPremiums\": [\n            {\n                \"premiumId\": \"<integer>\",\n                \"quantity\": \"<integer>\",\n                \"state\": \"<string>\"\n            },\n            {\n                \"premiumId\": \"<integer>\",\n                \"quantity\": \"<integer>\",\n                \"state\": \"<string>\"\n            }\n        ],\n        \"pledgePayments\": [\n            {\n                \"id\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            },\n            {\n                \"id\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            }\n        ],\n        \"recurringGiftPayments\": [\n            {\n                \"id\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            },\n            {\n                \"id\": \"<integer>\",\n                \"amount\": \"<double>\",\n                \"state\": \"<string>\"\n            }\n        ],\n        \"tributeType\": \"<string>\",\n        \"tributeId\": \"<integer>\",\n        \"tributeDescription\": \"<string>\",\n        \"acknowledgeeId\": \"<integer>\",\n        \"reversedGiftId\": \"<integer>\",\n        \"customFields\": [\n            {\n                \"name\": \"<string>\",\n                \"value\": \"<string>\",\n                \"displayName\": \"<string>\"\n            },\n            {\n                \"name\": \"<string>\",\n                \"value\": \"<string>\",\n                \"displayName\": \"<string>\"\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Gift/Bulk"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"01dfd47f-c5cc-4070-b31b-3015aa437b7c"},{"name":"Create a Reversing Transaction","id":"97c562eb-c771-4495-9469-487cc0ed1420","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"giftDate\": \"<dateTime>\",\n    \"reversedGiftId\": \"<integer>\",\n    \"notes\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Gift/ReversingTransaction","description":"<p>Creates a new reversing transaction and uses the gift identifier specified to negate the amount and splits applied.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Gift","ReversingTransaction"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"f56b1399-41d3-42ab-94a8-af0ad72ec3a9","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"giftDate\": \"<dateTime>\",\n    \"reversedGiftId\": \"<integer>\",\n    \"notes\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Gift/ReversingTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"transactionSource\": \"<string>\",\n\t\"transactionId\": \"<string>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactName\": \"<string>\",\n\t\"contactUrl\": \"<string>\",\n\t\"giftType\": \"<string>\",\n\t\"giftTypeFormatted\": \"<string>\",\n\t\"giftDate\": \"<dateTime>\",\n\t\"giftDateFormatted\": \"<string>\",\n\t\"amount\": \"<double>\",\n\t\"amountFormatted\": \"<string>\",\n    \"currencyCode\": \"<string>\",\n    \"exchangeRate\": \"<decimal>\",\n    \"baseCurrencyCode\": \"<string>\",\n\t\"batch\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"segmentId\": \"<integer>\",\n\t\"segment\": \"<string>\",\n\t\"segmentCode\": \"<string>\",\n\t\"segmentUrl\": \"<string>\",\n\t\"mediaOutletId\": \"<integer>\",\n\t\"mediaOutlet\": \"<string>\",\n\t\"grantId\": \"<integer>\",\n\t\"grant\": \"<string>\",\n\t\"grantUrl\": \"<string>\",\n\t\"notes\": \"<string>\",\n\t\"tribute\": \"<string>\",\n\t\"tributeId\": \"<integer>\",\n\t\"tributeType\": \"<string>\",\n\t\"acknowledgeeIndividualId\": \"<integer>\",\n\t\"receiptDate\": \"<dateTime>\",\n\t\"receiptDateFormatted\": \"<string>\",\n\t\"contactPassthroughId\": \"<integer>\",\n\t\"contactPassthroughUrl\": \"<string>\",\n\t\"contactIndividualId\": \"<integer>\",\n\t\"cashAccountingCode\": \"<string>\",\n\t\"giftAskId\": \"<integer>\",\n\t\"contactMembershipId\": \"<integer>\",\n\t\"giftDesignations\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\"projectType\": \"<string>\",\n\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\"display\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\"projectType\": \"<string>\",\n\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\"display\": \"<string>\"\n\t\t}\n\t],\n\t\"giftPremiums\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"premiumId\": \"<integer>\",\n\t\t\t\"premium\": \"<string>\",\n\t\t\t\"premiumUrl\": \"<string>\",\n\t\t\t\"quantity\": \"<integer>\",\n\t\t\t\"display\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"premiumId\": \"<integer>\",\n\t\t\t\"premium\": \"<string>\",\n\t\t\t\"premiumUrl\": \"<string>\",\n\t\t\t\"quantity\": \"<integer>\",\n\t\t\t\"display\": \"<string>\"\n\t\t}\n\t],\n\t\"pledgePayments\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\"actualAmount\": \"<double>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\"actualAmount\": \"<double>\"\n\t\t}\n\t],\n\t\"recurringGiftPayments\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"gift\": {\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\t\"amount\": \"<double>\"\n\t\t\t},\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"dismissPaymentDate\": \"<dateTime>\",\n\t\t\t\"fulfillPaymentDate\": \"<dateTime>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"gift\": {\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\t\"amount\": \"<double>\"\n\t\t\t},\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"dismissPaymentDate\": \"<dateTime>\",\n\t\t\t\"fulfillPaymentDate\": \"<dateTime>\"\n\t\t}\n\t],\n\t\"giftUrl\": \"<string>\",\n\t\"isPrivate\": \"<boolean>\",\n\t\"isTaxDeductible\": \"<boolean>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"31c1d479-46d0-4031-903d-20f26a99eeb5","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"giftDate\": \"<dateTime>\",\n    \"reversedGiftId\": \"<integer>\",\n    \"notes\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Gift/ReversingTransaction"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"97c562eb-c771-4495-9469-487cc0ed1420"},{"name":"Update a Gift","id":"b094fc10-fdec-4085-a178-354dece28423","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"giftType\": \"<string>\",\n    \"giftDate\": \"<dateTime>\",\n    \"amount\": \"<double>\",\n    \"batch\": \"<string>\",\n    \"segmentId\": \"<integer>\",\n    \"receiptSegmentId\": \"<integer>\",\n    \"mediaOutletId\": \"<integer>\",\n    \"notes\": \"<string>\",\n    \"isPrivate\": \"<boolean>\",\n    \"receiptDate\": \"<dateTime>\",\n    \"contactIndividualId\": \"<integer>\",\n    \"contactPassthroughId\": \"<integer>\",\n    \"cashAccountingCode\": \"<string>\",\n    \"state\": \"<string>\",\n    \"isTaxDeductible\": \"<boolean>\",\n    \"giftAskId\": \"<integer>\",\n    \"passthroughGiftAskId\": \"<integer>\",\n    \"grantId\": \"<integer>\",\n    \"contactMembershipId\": \"<integer>\",\n    \"currencyCode\": \"<string>\",\n    \"exchangeRate\": \"<decimal>\",\n    \"checkNumber\": \"<string>\",\n    \"creditCardType\": \"<string>\",\n    \"cryptocoinType\": \"<string>\",\n    \"transactionHash\": \"<string>\",\n    \"coinSoldForCash\": \"<boolean>\",\n    \"coinAmount\": \"<double>\",\n    \"dateCoinWasSold\": \"<dateTime>\",\n    \"coinSaleAmount\": \"<double>\",\n    \"tickerSymbol\": \"<string>\",\n    \"numberOfShares\": \"<double>\",\n    \"stockSoldForCash\": \"<boolean>\",\n    \"dateStockWasSold\": \"<dateTime>\",\n    \"stockSaleAmount\": \"<double>\",\n    \"iraCustodian\": \"string\",\n    \"nonCashGiftTypeId\": \"<integer>\",\n    \"nonCashGiftType\": \"<string>\",\n    \"description\": \"<string>\",\n    \"nonCashSoldForCash\": \"<boolean>\",\n    \"dateNonCashWasSold\": \"<dateTime>\",\n    \"nonCashOriginalAmount\": \"<double>\",\n    \"nonCashSaleAmount\": \"<double>\",\n    \"giftDesignations\": [\n        {\n            \"projectId\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        },\n        {\n            \"projectId\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        }\n    ],\n    \"giftPremiums\": [\n        {\n            \"premiumId\": \"<integer>\",\n            \"quantity\": \"<integer>\",\n            \"state\": \"<string>\"\n        },\n        {\n            \"premiumId\": \"<integer>\",\n            \"quantity\": \"<integer>\",\n            \"state\": \"<string>\"\n        }\n    ],\n    \"pledgePayments\": [\n        {\n            \"id\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        },\n        {\n            \"id\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        }\n    ],\n    \"recurringGiftPayments\": [\n        {\n            \"id\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        },\n        {\n            \"id\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        }\n    ],\n    \"tributeType\": \"<string>\",\n    \"tributeId\": \"<integer>\",\n    \"tributeDescription\": \"<string>\",\n    \"acknowledgeeId\": \"<integer>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Gift/:giftId","description":"<p>Similar to other update methods in the API, excluding a property will remove it's value from the object.<br />If you're only updating a single property, the entire model is still required.</p>\n<p><strong>GiftDate</strong> will just use the Date portion of the value to set the UTC date. There is no date or time conversion on this field, so make sure that the gift date is the UTC date of the gift.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Gift",":giftId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The gift id.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"giftId"}]}},"response":[{"id":"b67951d5-6822-4ae1-a2c0-36f9e9e94812","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"giftType\": \"<string>\",\n    \"giftDate\": \"<dateTime>\",\n    \"amount\": \"<double>\",\n    \"batch\": \"<string>\",\n    \"segmentId\": \"<integer>\",\n    \"receiptSegmentId\": \"<integer>\",\n    \"mediaOutletId\": \"<integer>\",\n    \"notes\": \"<string>\",\n    \"isPrivate\": \"<boolean>\",\n    \"receiptDate\": \"<dateTime>\",\n    \"contactIndividualId\": \"<integer>\",\n    \"contactPassthroughId\": \"<integer>\",\n    \"cashAccountingCode\": \"<string>\",\n    \"state\": \"<string>\",\n    \"isTaxDeductible\": \"<boolean>\",\n    \"giftAskId\": \"<integer>\",\n    \"passthroughGiftAskId\": \"<integer>\",\n    \"grantId\": \"<integer>\",\n    \"contactMembershipId\": \"<integer>\",\n    \"currencyCode\": \"<string>\",\n    \"exchangeRate\": \"<decimal>\",\n    \"checkNumber\": \"<string>\",\n    \"creditCardType\": \"<string>\",\n    \"cryptocoinType\": \"<string>\",\n    \"transactionHash\": \"<string>\",\n    \"coinSoldForCash\": \"<boolean>\",\n    \"coinAmount\": \"<double>\",\n    \"dateCoinWasSold\": \"<dateTime>\",\n    \"coinSaleAmount\": \"<double>\",\n    \"tickerSymbol\": \"<string>\",\n    \"numberOfShares\": \"<double>\",\n    \"stockSoldForCash\": \"<boolean>\",\n    \"dateStockWasSold\": \"<dateTime>\",\n    \"stockSaleAmount\": \"<double>\",\n    \"nonCashGiftType\": \"<string>\",\n    \"description\": \"<string>\",\n    \"nonCashSoldForCash\": \"<boolean>\",\n    \"dateNonCashWasSold\": \"<dateTime>\",\n    \"nonCashOriginalAmount\": \"<double>\",\n    \"nonCashSaleAmount\": \"<double>\",\n    \"giftDesignations\": [\n        {\n            \"projectId\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        },\n        {\n            \"projectId\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        }\n    ],\n    \"giftPremiums\": [\n        {\n            \"premiumId\": \"<integer>\",\n            \"quantity\": \"<integer>\",\n            \"state\": \"<string>\"\n        },\n        {\n            \"premiumId\": \"<integer>\",\n            \"quantity\": \"<integer>\",\n            \"state\": \"<string>\"\n        }\n    ],\n    \"pledgePayments\": [\n        {\n            \"id\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        },\n        {\n            \"id\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        }\n    ],\n    \"recurringGiftPayments\": [\n        {\n            \"id\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        },\n        {\n            \"id\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        }\n    ],\n    \"tributeType\": \"<string>\",\n    \"tributeId\": \"<integer>\",\n    \"tributeDescription\": \"<string>\",\n    \"acknowledgeeId\": \"<integer>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Gift/:giftId","host":["https://api.virtuoussoftware.com"],"path":["api","Gift",":giftId"],"variable":[{"key":"giftId","value":"<integer>","description":"(Required) The gift id."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"transactionSource\": \"<string>\",\n\t\"transactionId\": \"<string>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactName\": \"<string>\",\n\t\"contactUrl\": \"<string>\",\n\t\"giftType\": \"<string>\",\n\t\"giftTypeFormatted\": \"<string>\",\n\t\"giftDate\": \"<dateTime>\",\n\t\"giftDateFormatted\": \"<string>\",\n\t\"amount\": \"<double>\",\n\t\"amountFormatted\": \"<string>\",\n    \"currencyCode\": \"<string>\",\n    \"exchangeRate\": \"<decimal>\",\n    \"baseCurrencyCode\": \"<string>\",\n\t\"batch\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"segmentId\": \"<integer>\",\n\t\"segment\": \"<string>\",\n\t\"segmentCode\": \"<string>\",\n\t\"segmentUrl\": \"<string>\",\n\t\"mediaOutletId\": \"<integer>\",\n\t\"mediaOutlet\": \"<string>\",\n\t\"grantId\": \"<integer>\",\n\t\"grant\": \"<string>\",\n\t\"grantUrl\": \"<string>\",\n\t\"notes\": \"<string>\",\n\t\"tribute\": \"<string>\",\n\t\"tributeId\": \"<integer>\",\n\t\"tributeType\": \"<string>\",\n\t\"acknowledgeeIndividualId\": \"<integer>\",\n\t\"receiptDate\": \"<dateTime>\",\n\t\"receiptDateFormatted\": \"<string>\",\n\t\"contactPassthroughId\": \"<integer>\",\n\t\"contactPassthroughUrl\": \"<string>\",\n\t\"contactIndividualId\": \"<integer>\",\n\t\"cashAccountingCode\": \"<string>\",\n\t\"giftAskId\": \"<integer>\",\n\t\"contactMembershipId\": \"<integer>\",\n\t\"giftDesignations\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\"projectType\": \"<string>\",\n\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\"display\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\"projectType\": \"<string>\",\n\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\"display\": \"<string>\"\n\t\t}\n\t],\n\t\"giftPremiums\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"premiumId\": \"<integer>\",\n\t\t\t\"premium\": \"<string>\",\n\t\t\t\"premiumUrl\": \"<string>\",\n\t\t\t\"quantity\": \"<integer>\",\n\t\t\t\"display\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"premiumId\": \"<integer>\",\n\t\t\t\"premium\": \"<string>\",\n\t\t\t\"premiumUrl\": \"<string>\",\n\t\t\t\"quantity\": \"<integer>\",\n\t\t\t\"display\": \"<string>\"\n\t\t}\n\t],\n\t\"pledgePayments\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\"actualAmount\": \"<double>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\"actualAmount\": \"<double>\"\n\t\t}\n\t],\n\t\"recurringGiftPayments\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"gift\": {\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\t\"amount\": \"<double>\"\n\t\t\t},\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"dismissPaymentDate\": \"<dateTime>\",\n\t\t\t\"fulfillPaymentDate\": \"<dateTime>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"gift\": {\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\t\"amount\": \"<double>\"\n\t\t\t},\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"dismissPaymentDate\": \"<dateTime>\",\n\t\t\t\"fulfillPaymentDate\": \"<dateTime>\"\n\t\t}\n\t],\n\t\"giftUrl\": \"<string>\",\n\t\"isPrivate\": \"<boolean>\",\n\t\"isTaxDeductible\": \"<boolean>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"5ed1953c-237f-40b1-9540-f8c21f7219cc","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"giftType\": \"<string>\",\n    \"giftDate\": \"<dateTime>\",\n    \"amount\": \"<double>\",\n    \"batch\": \"<string>\",\n    \"segmentId\": \"<integer>\",\n    \"receiptSegmentId\": \"<integer>\",\n    \"mediaOutletId\": \"<integer>\",\n    \"notes\": \"<string>\",\n    \"isPrivate\": \"<boolean>\",\n    \"receiptDate\": \"<dateTime>\",\n    \"contactIndividualId\": \"<integer>\",\n    \"contactPassthroughId\": \"<integer>\",\n    \"cashAccountingCode\": \"<string>\",\n    \"state\": \"<string>\",\n    \"isTaxDeductible\": \"<boolean>\",\n    \"giftAskId\": \"<integer>\",\n    \"passthroughGiftAskId\": \"<integer>\",\n    \"grantId\": \"<integer>\",\n    \"contactMembershipId\": \"<integer>\",\n    \"checkNumber\": \"<string>\",\n    \"creditCardType\": \"<string>\",\n    \"cryptocoinType\": \"<string>\",\n    \"transactionHash\": \"<string>\",\n    \"coinSoldForCash\": \"<boolean>\",\n    \"coinAmount\": \"<double>\",\n    \"dateCoinWasSold\": \"<dateTime>\",\n    \"coinSaleAmount\": \"<double>\",\n    \"tickerSymbol\": \"<string>\",\n    \"numberOfShares\": \"<double>\",\n    \"stockSoldForCash\": \"<boolean>\",\n    \"dateStockWasSold\": \"<dateTime>\",\n    \"stockSaleAmount\": \"<double>\",\n    \"nonCashGiftType\": \"<string>\",\n    \"description\": \"<string>\",\n    \"nonCashSoldForCash\": \"<boolean>\",\n    \"dateNonCashWasSold\": \"<dateTime>\",\n    \"nonCashOriginalAmount\": \"<double>\",\n    \"nonCashSaleAmount\": \"<double>\",\n    \"giftDesignations\": [\n        {\n            \"projectId\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        },\n        {\n            \"projectId\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        }\n    ],\n    \"giftPremiums\": [\n        {\n            \"premiumId\": \"<integer>\",\n            \"quantity\": \"<integer>\",\n            \"state\": \"<string>\"\n        },\n        {\n            \"premiumId\": \"<integer>\",\n            \"quantity\": \"<integer>\",\n            \"state\": \"<string>\"\n        }\n    ],\n    \"pledgePayments\": [\n        {\n            \"id\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        },\n        {\n            \"id\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        }\n    ],\n    \"recurringGiftPayments\": [\n        {\n            \"id\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        },\n        {\n            \"id\": \"<integer>\",\n            \"amount\": \"<double>\",\n            \"state\": \"<string>\"\n        }\n    ],\n    \"tributeType\": \"<string>\",\n    \"tributeId\": \"<integer>\",\n    \"tributeDescription\": \"<string>\",\n    \"acknowledgeeId\": \"<integer>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Gift/:giftId","host":["https://api.virtuoussoftware.com"],"path":["api","Gift",":giftId"],"variable":[{"key":"giftId","value":"<integer>","description":"(Required) The gift id."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"b094fc10-fdec-4085-a178-354dece28423"},{"name":"Update many Gifts","id":"d34fe045-7d1d-4929-86f0-dd321ebb960d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": \"<integer>\",\n        \"receiptDateUtc\": \"<dateTime>\",\n        \"segmentId\": \"<integer>\",\n        \"notes\": \"<string>\",\n        \"customFields\": \"<object>\"\n    },\n    {\n        \"id\": \"<integer>\",\n        \"receiptDateUtc\": \"<dateTime>\",\n        \"segmentId\": \"<integer>\",\n        \"notes\": \"<string>\",\n        \"customFields\": \"<object>\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Gift","description":"<p>Use this endpoint anytime more than 1 gift is going to be updated.\nPlease note that unlike other update endpoints this endpoint ONLY needs what is being updated (i.e. a patch).\nFor example, if you want to update the receipt date on a gift, only send the gift Id and the receipt date.\nThis ensures performance is top-notch.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Gift"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"e030781d-8fc3-49e5-b6c5-ec09bd4211bc","name":"OK","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": \"<integer>\",\n        \"receiptDateUtc\": \"<dateTime>\",\n        \"segmentId\": \"<integer>\",\n        \"notes\": \"<string>\",\n        \"customFields\": \"<object>\"\n    },\n    {\n        \"id\": \"<integer>\",\n        \"receiptDateUtc\": \"<dateTime>\",\n        \"segmentId\": \"<integer>\",\n        \"notes\": \"<string>\",\n        \"customFields\": \"<object>\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Gift"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"\"<object>\""},{"id":"f7606ad6-d8c2-4ccd-afb5-7a8fc0e0caa7","name":"BadRequest","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": \"<integer>\",\n        \"receiptDateUtc\": \"<dateTime>\",\n        \"segmentId\": \"<integer>\",\n        \"notes\": \"<string>\",\n        \"customFields\": \"<object>\"\n    },\n    {\n        \"id\": \"<integer>\",\n        \"receiptDateUtc\": \"<dateTime>\",\n        \"segmentId\": \"<integer>\",\n        \"notes\": \"<string>\",\n        \"customFields\": \"<object>\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Gift"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d34fe045-7d1d-4929-86f0-dd321ebb960d"},{"name":"Delete a Gift","id":"64fc1392-e1ed-4ccd-a00b-8f66dc0e0de1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.virtuoussoftware.com/api/Gift/:giftId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Gift",":giftId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The gift identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"giftId"}]}},"response":[{"id":"7f523a17-0804-4986-9248-4ec9ba24179f","name":"OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Gift/:giftId","host":["https://api.virtuoussoftware.com"],"path":["api","Gift",":giftId"],"variable":[{"key":"giftId","value":"<integer>","description":"(Required) The gift identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"0d0ad519-29a3-4dd0-9ee5-d788339e08ef","name":"BadRequest","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Gift/:giftId","host":["https://api.virtuoussoftware.com"],"path":["api","Gift",":giftId"],"variable":[{"key":"giftId","value":"<integer>","description":"(Required) The gift identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"64fc1392-e1ed-4ccd-a00b-8f66dc0e0de1"}],"id":"5cbc35dc-6b1e-41da-b1a5-477043a9a66d","_postman_id":"5cbc35dc-6b1e-41da-b1a5-477043a9a66d","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Gift Imports","item":[{"name":"Create a Gift Transaction","id":"e4a6a1e3-71a4-44f9-bd7c-9466996befac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"transactionSource\": \"<string>\",\n    \"transactionId\": \"<string>\",\n    \"contact\": {\n        \"referenceId\": \"<string>\",\n        \"id\": \"<integer>\",\n        \"name\": \"<string>\",\n        \"type\": \"<string>\",\n        \"title\": \"<string>\",\n        \"firstname\": \"<string>\",\n        \"middlename\": \"<string>\",\n        \"lastname\": \"<string>\",\n        \"suffix\": \"<string>\",\n        \"birthMonth\": \"<string>\",\n        \"birthDay\": \"<string>\",\n        \"birthYear\": \"<string>\",\n        \"gender\": \"<string>\",\n        \"emailType\": \"<string>\",\n        \"email\": \"<string>\",\n        \"phoneType\": \"<string>\",\n        \"phone\": \"<string>\",\n        \"address\": {\n            \"address1\": \"<string>\",\n            \"address2\": \"<string>\",\n            \"city\": \"<string>\",\n            \"state\": \"<string>\",\n            \"postal\": \"<string>\",\n            \"country\": \"<string>\"\n        },\n        \"tags\": \"<string>\",\n        \"emailLists\": [\n            \"<string>\",\n            \"<string>\"\n        ]\n    },\n    \"giftDate\": \"<string>\",\n    \"cancelDate\": \"<string>\",\n    \"giftType\": \"<string>\",\n    \"amount\": \"<string>\",\n    \"currencyCode\": \"<string>\",\n    \"exchangeRate\": \"<decimal>\",\n    \"frequency\": \"<string>\",\n    \"recurringGiftTransactionId\": \"<string>\",\n    \"recurringGiftTransactionUpdate\": \"<boolean>\",\n    \"pledgeFrequency\": \"<string>\",\n    \"pledgeTransactionId\": \"<string>\",\n    \"pledgeExpectedFullfillmentDate\":\"<string>\",\n    \"batch\": \"<string>\",\n    \"notes\": \"<string>\",\n    \"segment\": \"<string>\",\n    \"mediaOutlet\": \"<string>\",\n    \"receiptDate\": \"<string>\",\n    \"receiptSegment\": \"<string>\",\n    \"cashAccountingCode\": \"<string>\",\n    \"tribute\": \"<string>\",\n    \"tributeDedication\": {\n        \"tributeId\": \"<integer>\",\n        \"tributeType\": \"<string>\",\n        \"tributeFirstName\": \"<string>\",\n        \"tributeLastName\": \"<string>\",\n        \"tributeCity\": \"<string>\",\n        \"tributeState\": \"<string>\",\n        \"acknowledgeeIndividualId\": \"<integer>\",\n        \"acknowledgeeFirstName\": \"<string>\",\n        \"acknowledgeeLastName\": \"<string>\",\n        \"acknowledgeeAddress\": \"<string>\",\n        \"acknowledgeeCity\": \"<string>\",\n        \"acknowledgeeState\": \"<string>\",\n        \"acknowledgeePostal\": \"<string>\",\n        \"acknowledgeeEmail\": \"<string>\",\n        \"acknowledgeePhone\": \"<string>\"\n    },\n    \"isPrivate\": \"<boolean>\",\n    \"isTaxDeductible\": \"<boolean>\",\n    \"checkNumber\": \"<string>\",\n    \"creditCardType\": \"<string>\",\n    \"nonCashGiftTypeId\": \"<integer>\",\n    \"nonCashGiftType\": \"<string>\",\n    \"nonCashGiftDescription\": \"<string>\",\n    \"stockTickerSymbol\": \"<string>\",\n    \"stockNumberOfShares\": \"<integer>\",\n    \"iraCustodian\": \"<string>\",\n    \"submissionUrl\": \"<string>\",\n    \"designations\": [\n        {\n            \"id\": \"<integer>\",\n            \"name\": \"<string>\",\n            \"code\": \"<string>\",\n            \"amountDesignated\": \"<string>\"\n        },\n        {\n            \"id\": \"<integer>\",\n            \"name\": \"<string>\",\n            \"code\": \"<string>\",\n            \"amountDesignated\": \"<string>\"\n        }\n    ],\n    \"premiums\": [\n        {\n            \"id\": \"<integer>\",\n            \"name\": \"<string>\",\n            \"code\": \"<string>\",\n            \"quantity\": \"<string>\"\n        },\n        {\n            \"id\": \"<integer>\",\n            \"name\": \"<string>\",\n            \"code\": \"<string>\",\n            \"quantity\": \"<string>\"\n        }\n    ],\n    \"customFields\": \n    {\n        \"fieldName\": \"fieldValue\",\n        \"fieldName2\": \"fieldValue2\"\n    },\n    \"customObjects\": [\n        {\n            \"name\": \"<string>\",\n            \"fields\": [\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                }\n            ]\n        },\n        {\n            \"name\": \"<string>\",\n            \"fields\": [\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                }\n            ]\n        }\n    ],\n    \"contactIndividualId\": \"<integer>\",\n    \"passthroughContact\": {\n        \"referenceId\": \"<string>\",\n        \"id\": \"<integer>\",\n        \"name\": \"<string>\",\n        \"type\": \"<string>\",\n        \"title\": \"<string>\",\n        \"firstname\": \"<string>\",\n        \"middlename\": \"<string>\",\n        \"lastname\": \"<string>\",\n        \"suffix\": \"<string>\",\n        \"birthMonth\": \"<string>\",\n        \"birthDay\": \"<string>\",\n        \"birthYear\": \"<string>\",\n        \"gender\": \"<string>\",\n        \"emailType\": \"<string>\",\n        \"email\": \"<string>\",\n        \"phoneType\": \"<string>\",\n        \"phone\": \"<string>\",\n        \"address\": {\n            \"address1\": \"<string>\",\n            \"address2\": \"<string>\",\n            \"city\": \"<string>\",\n            \"state\": \"<string>\",\n            \"postal\": \"<string>\",\n            \"country\": \"<string>\"\n        },\n        \"tags\": \"<string>\",\n        \"emailLists\": [\n            \"<string>\",\n            \"<string>\"\n        ]\n    },\n    \"eventAttendee\": {\n        \"eventId\": \"<integer>\",\n        \"eventName\": \"<string>\",\n        \"invited\": \"<boolean>\",\n        \"rsvp\": \"<boolean>\",\n        \"rsvpResponse\": \"<boolean>\",\n        \"attended\": \"<boolean>\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/v2/Gift/Transaction","description":"<p>HMAC or OAuth Auth valid. This is the recommended way to create a gift.\nThis ensures the gift is matched using the Virtuous matching algorithms for Contacts, Recurring gifts, Designations, etc.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","v2","Gift","Transaction"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"9ba1f258-94f8-4d27-8390-db1405aca0e4","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"transactionSource\": \"<string>\",\n    \"transactionId\": \"<string>\",\n    \"contact\": {\n        \"referenceId\": \"<string>\",\n        \"id\": \"<integer>\",\n        \"name\": \"<string>\",\n        \"type\": \"<string>\",\n        \"title\": \"<string>\",\n        \"firstname\": \"<string>\",\n        \"middlename\": \"<string>\",\n        \"lastname\": \"<string>\",\n        \"suffix\": \"<string>\",\n        \"birthMonth\": \"<string>\",\n        \"birthDay\": \"<string>\",\n        \"birthYear\": \"<string>\",\n        \"gender\": \"<string>\",\n        \"emailType\": \"<string>\",\n        \"email\": \"<string>\",\n        \"phoneType\": \"<string>\",\n        \"phone\": \"<string>\",\n        \"address\": {\n            \"address1\": \"<string>\",\n            \"address2\": \"<string>\",\n            \"city\": \"<string>\",\n            \"state\": \"<string>\",\n            \"postal\": \"<string>\",\n            \"country\": \"<string>\"\n        },\n        \"tags\": \"<string>\",\n        \"emailLists\": [\n            \"<string>\",\n            \"<string>\"\n        ]\n    },\n    \"giftDate\": \"<string>\",\n    \"cancelDate\": \"<string>\",\n    \"giftType\": \"<string>\",\n    \"amount\": \"<string>\",\n    \"currencyCode\": \"<string>\",\n    \"exchangeRate\": \"<decimal>\",\n    \"frequency\": \"<string>\",\n    \"recurringGiftTransactionId\": \"<string>\",\n    \"recurringGiftTransactionUpdate\": \"<boolean>\",\n    \"pledgeFrequency\": \"<string>\",\n    \"pledgeTransactionId\": \"<string>\",\n    \"batch\": \"<string>\",\n    \"notes\": \"<string>\",\n    \"segment\": \"<string>\",\n    \"mediaOutlet\": \"<string>\",\n    \"receiptDate\": \"<string>\",\n    \"receiptSegment\": \"<string>\",\n    \"cashAccountingCode\": \"<string>\",\n    \"tribute\": \"<string>\",\n    \"tributeDedication\": {\n        \"tributeId\": \"<integer>\",\n        \"tributeType\": \"<string>\",\n        \"tributeFirstName\": \"<string>\",\n        \"tributeLastName\": \"<string>\",\n        \"tributeCity\": \"<string>\",\n        \"tributeState\": \"<string>\",\n        \"acknowledgeeIndividualId\": \"<integer>\",\n        \"acknowledgeeFirstName\": \"<string>\",\n        \"acknowledgeeLastName\": \"<string>\",\n        \"acknowledgeeAddress\": \"<string>\",\n        \"acknowledgeeCity\": \"<string>\",\n        \"acknowledgeeState\": \"<string>\",\n        \"acknowledgeePostal\": \"<string>\",\n        \"acknowledgeeEmail\": \"<string>\",\n        \"acknowledgeePhone\": \"<string>\"\n    },\n    \"isPrivate\": \"<boolean>\",\n    \"isTaxDeductible\": \"<boolean>\",\n    \"checkNumber\": \"<string>\",\n    \"creditCardType\": \"<string>\",\n    \"nonCashGiftType\": \"<string>\",\n    \"nonCashGiftDescription\": \"<string>\",\n    \"stockTickerSymbol\": \"<string>\",\n    \"stockNumberOfShares\": \"<integer>\",\n    \"submissionUrl\": \"<string>\",\n    \"designations\": [\n        {\n            \"id\": \"<integer>\",\n            \"name\": \"<string>\",\n            \"code\": \"<string>\",\n            \"amountDesignated\": \"<string>\"\n        },\n        {\n            \"id\": \"<integer>\",\n            \"name\": \"<string>\",\n            \"code\": \"<string>\",\n            \"amountDesignated\": \"<string>\"\n        }\n    ],\n    \"premiums\": [\n        {\n            \"id\": \"<integer>\",\n            \"name\": \"<string>\",\n            \"code\": \"<string>\",\n            \"quantity\": \"<string>\"\n        },\n        {\n            \"id\": \"<integer>\",\n            \"name\": \"<string>\",\n            \"code\": \"<string>\",\n            \"quantity\": \"<string>\"\n        }\n    ],\n    \"customFields\": \n    {\n        \"fieldName\": \"fieldValue\",\n        \"fieldName2\": \"fieldValue2\"\n    },\n    \"customObjects\": [\n        {\n            \"name\": \"<string>\",\n            \"fields\": [\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                }\n            ]\n        },\n        {\n            \"name\": \"<string>\",\n            \"fields\": [\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"value\": \"<string>\"\n                }\n            ]\n        }\n    ],\n    \"contactIndividualId\": \"<integer>\",\n    \"passthroughContact\": {\n        \"referenceId\": \"<string>\",\n        \"id\": \"<integer>\",\n        \"name\": \"<string>\",\n        \"type\": \"<string>\",\n        \"title\": \"<string>\",\n        \"firstname\": \"<string>\",\n        \"middlename\": \"<string>\",\n        \"lastname\": \"<string>\",\n        \"suffix\": \"<string>\",\n        \"birthMonth\": \"<string>\",\n        \"birthDay\": \"<string>\",\n        \"birthYear\": \"<string>\",\n        \"gender\": \"<string>\",\n        \"emailType\": \"<string>\",\n        \"email\": \"<string>\",\n        \"phoneType\": \"<string>\",\n        \"phone\": \"<string>\",\n        \"address\": {\n            \"address1\": \"<string>\",\n            \"address2\": \"<string>\",\n            \"city\": \"<string>\",\n            \"state\": \"<string>\",\n            \"postal\": \"<string>\",\n            \"country\": \"<string>\"\n        },\n        \"tags\": \"<string>\",\n        \"emailLists\": [\n            \"<string>\",\n            \"<string>\"\n        ]\n    },\n    \"eventAttendee\": {\n        \"eventId\": \"<integer>\",\n        \"eventName\": \"<string>\",\n        \"invited\": \"<boolean>\",\n        \"rsvp\": \"<boolean>\",\n        \"rsvpResponse\": \"<boolean>\",\n        \"attended\": \"<boolean>\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/v2/Gift/Transaction"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e4a6a1e3-71a4-44f9-bd7c-9466996befac"},{"name":"Create a Batch of Gift Transactions","id":"784d2096-10db-42be-83e5-83632936032f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"transactionSource\": \"<string>\",\n    \"transactions\": [\n        {\n            \"transactionSource\": \"<string>\",\n            \"transactionId\": \"<string>\",\n            \"contact\": {\n                \"referenceId\": \"<string>\",\n                \"id\": \"<integer>\",\n                \"name\": \"<string>\",\n                \"type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"firstname\": \"<string>\",\n                \"middlename\": \"<string>\",\n                \"lastname\": \"<string>\",\n                \"suffix\": \"<string>\",\n                \"birthMonth\": \"<string>\",\n                \"birthDay\": \"<string>\",\n                \"birthYear\": \"<string>\",\n                \"gender\": \"<string>\",\n                \"emailType\": \"<string>\",\n                \"email\": \"<string>\",\n                \"phoneType\": \"<string>\",\n                \"phone\": \"<string>\",\n                \"address\": {\n                    \"address1\": \"<string>\",\n                    \"address2\": \"<string>\",\n                    \"city\": \"<string>\",\n                    \"state\": \"<string>\",\n                    \"postal\": \"<string>\",\n                    \"country\": \"<string>\"\n                },\n                \"tags\": \"<string>\",\n                \"emailLists\": [\n                    \"<string>\",\n                    \"<string>\"\n                ]\n            },\n            \"giftDate\": \"<string>\",\n            \"cancelDate\": \"<string>\",\n            \"giftType\": \"<string>\",\n            \"amount\": \"<string>\",\n            \"currencyCode\": \"<string>\",\n            \"exchangeRate\": \"<decimal>\",\n            \"frequency\": \"<string>\",\n            \"recurringGiftTransactionId\": \"<string>\",\n            \"recurringGiftTransactionUpdate\": \"<boolean>\",\n            \"pledgeFrequency\": \"<string>\",\n            \"pledgeTransactionId\": \"<string>\",\n            \"batch\": \"<string>\",\n            \"notes\": \"<string>\",\n            \"segment\": \"<string>\",\n            \"mediaOutlet\": \"<string>\",\n            \"receiptDate\": \"<string>\",\n            \"receiptSegment\": \"<string>\",\n            \"cashAccountingCode\": \"<string>\",\n            \"tribute\": \"<string>\",\n            \"tributeDedication\": {\n                \"tributeId\": \"<integer>\",\n                \"tributeType\": \"<string>\",\n                \"tributeFirstName\": \"<string>\",\n                \"tributeLastName\": \"<string>\",\n                \"tributeCity\": \"<string>\",\n                \"tributeState\": \"<string>\",\n                \"acknowledgeeIndividualId\": \"<integer>\",\n                \"acknowledgeeFirstName\": \"<string>\",\n                \"acknowledgeeLastName\": \"<string>\",\n                \"acknowledgeeAddress\": \"<string>\",\n                \"acknowledgeeCity\": \"<string>\",\n                \"acknowledgeeState\": \"<string>\",\n                \"acknowledgeePostal\": \"<string>\",\n                \"acknowledgeeEmail\": \"<string>\",\n                \"acknowledgeePhone\": \"<string>\"\n            },\n            \"isPrivate\": \"<boolean>\",\n            \"isTaxDeductible\": \"<boolean>\",\n            \"checkNumber\": \"<string>\",\n            \"creditCardType\": \"<string>\",\n            \"nonCashGiftTypeId\": \"<integer>\",\n            \"nonCashGiftType\": \"<string>\",\n            \"nonCashGiftDescription\": \"<string>\",\n            \"stockTickerSymbol\": \"<string>\",\n            \"stockNumberOfShares\": \"<integer>\",\n            \"iraCustodian\": \"<string>\",\n            \"submissionUrl\": \"<string>\",\n            \"designations\": [\n                {\n                    \"id\": \"<integer>\",\n                    \"name\": \"<string>\",\n                    \"code\": \"<string>\",\n                    \"amountDesignated\": \"<string>\"\n                },\n                {\n                    \"id\": \"<integer>\",\n                    \"name\": \"<string>\",\n                    \"code\": \"<string>\",\n                    \"amountDesignated\": \"<string>\"\n                }\n            ],\n            \"premiums\": [\n                {\n                    \"id\": \"<integer>\",\n                    \"name\": \"<string>\",\n                    \"code\": \"<string>\",\n                    \"quantity\": \"<string>\"\n                },\n                {\n                    \"id\": \"<integer>\",\n                    \"name\": \"<string>\",\n                    \"code\": \"<string>\",\n                    \"quantity\": \"<string>\"\n                }\n            ],\n            \"customFields\": \"<object>\",\n            \"customObjects\": [\n                {\n                    \"name\": \"<string>\",\n                    \"fields\": [\n                        {\n                            \"name\": \"<string>\",\n                            \"value\": \"<string>\"\n                        },\n                        {\n                            \"name\": \"<string>\",\n                            \"value\": \"<string>\"\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"fields\": [\n                        {\n                            \"name\": \"<string>\",\n                            \"value\": \"<string>\"\n                        },\n                        {\n                            \"name\": \"<string>\",\n                            \"value\": \"<string>\"\n                        }\n                    ]\n                }\n            ],\n            \"contactIndividualId\": \"<integer>\",\n            \"passthroughContact\": {\n                \"referenceId\": \"<string>\",\n                \"id\": \"<integer>\",\n                \"name\": \"<string>\",\n                \"type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"firstname\": \"<string>\",\n                \"middlename\": \"<string>\",\n                \"lastname\": \"<string>\",\n                \"suffix\": \"<string>\",\n                \"birthMonth\": \"<string>\",\n                \"birthDay\": \"<string>\",\n                \"birthYear\": \"<string>\",\n                \"gender\": \"<string>\",\n                \"emailType\": \"<string>\",\n                \"email\": \"<string>\",\n                \"phoneType\": \"<string>\",\n                \"phone\": \"<string>\",\n                \"address\": {\n                    \"address1\": \"<string>\",\n                    \"address2\": \"<string>\",\n                    \"city\": \"<string>\",\n                    \"state\": \"<string>\",\n                    \"postal\": \"<string>\",\n                    \"country\": \"<string>\"\n                },\n                \"tags\": \"<string>\",\n                \"emailLists\": [\n                    \"<string>\",\n                    \"<string>\"\n                ]\n            },\n            \"eventAttendee\": {\n                \"eventId\": \"<integer>\",\n                \"eventName\": \"<string>\",\n                \"invited\": \"<boolean>\",\n                \"rsvp\": \"<boolean>\",\n                \"rsvpResponse\": \"<boolean>\",\n                \"attended\": \"<boolean>\"\n            }\n        },\n        {\n            \"transactionSource\": \"<string>\",\n            \"transactionId\": \"<string>\",\n            \"contact\": {\n                \"referenceId\": \"<string>\",\n                \"id\": \"<integer>\",\n                \"name\": \"<string>\",\n                \"type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"firstname\": \"<string>\",\n                \"middlename\": \"<string>\",\n                \"lastname\": \"<string>\",\n                \"suffix\": \"<string>\",\n                \"birthMonth\": \"<string>\",\n                \"birthDay\": \"<string>\",\n                \"birthYear\": \"<string>\",\n                \"gender\": \"<string>\",\n                \"emailType\": \"<string>\",\n                \"email\": \"<string>\",\n                \"phoneType\": \"<string>\",\n                \"phone\": \"<string>\",\n                \"address\": {\n                    \"address1\": \"<string>\",\n                    \"address2\": \"<string>\",\n                    \"city\": \"<string>\",\n                    \"state\": \"<string>\",\n                    \"postal\": \"<string>\",\n                    \"country\": \"<string>\"\n                },\n                \"tags\": \"<string>\",\n                \"emailLists\": [\n                    \"<string>\",\n                    \"<string>\"\n                ]\n            },\n            \"giftDate\": \"<string>\",\n            \"cancelDate\": \"<string>\",\n            \"giftType\": \"<string>\",\n            \"amount\": \"<string>\",\n            \"frequency\": \"<string>\",\n            \"recurringGiftTransactionId\": \"<string>\",\n            \"recurringGiftTransactionUpdate\": \"<boolean>\",\n            \"pledgeFrequency\": \"<string>\",\n            \"pledgeTransactionId\": \"<string>\",\n            \"batch\": \"<string>\",\n            \"notes\": \"<string>\",\n            \"segment\": \"<string>\",\n            \"mediaOutlet\": \"<string>\",\n            \"receiptDate\": \"<string>\",\n            \"receiptSegment\": \"<string>\",\n            \"cashAccountingCode\": \"<string>\",\n            \"tribute\": \"<string>\",\n            \"tributeDedication\": {\n                \"tributeId\": \"<integer>\",\n                \"tributeType\": \"<string>\",\n                \"tributeFirstName\": \"<string>\",\n                \"tributeLastName\": \"<string>\",\n                \"tributeCity\": \"<string>\",\n                \"tributeState\": \"<string>\",\n                \"acknowledgeeIndividualId\": \"<integer>\",\n                \"acknowledgeeFirstName\": \"<string>\",\n                \"acknowledgeeLastName\": \"<string>\",\n                \"acknowledgeeAddress\": \"<string>\",\n                \"acknowledgeeCity\": \"<string>\",\n                \"acknowledgeeState\": \"<string>\",\n                \"acknowledgeePostal\": \"<string>\",\n                \"acknowledgeeEmail\": \"<string>\",\n                \"acknowledgeePhone\": \"<string>\"\n            },\n            \"isPrivate\": \"<boolean>\",\n            \"isTaxDeductible\": \"<boolean>\",\n            \"checkNumber\": \"<string>\",\n            \"creditCardType\": \"<string>\",\n            \"nonCashGiftType\": \"<string>\",\n            \"nonCashGiftDescription\": \"<string>\",\n            \"stockTickerSymbol\": \"<string>\",\n            \"stockNumberOfShares\": \"<integer>\",\n            \"submissionUrl\": \"<string>\",\n            \"designations\": [\n                {\n                    \"id\": \"<integer>\",\n                    \"name\": \"<string>\",\n                    \"code\": \"<string>\",\n                    \"amountDesignated\": \"<string>\"\n                },\n                {\n                    \"id\": \"<integer>\",\n                    \"name\": \"<string>\",\n                    \"code\": \"<string>\",\n                    \"amountDesignated\": \"<string>\"\n                }\n            ],\n            \"premiums\": [\n                {\n                    \"id\": \"<integer>\",\n                    \"name\": \"<string>\",\n                    \"code\": \"<string>\",\n                    \"quantity\": \"<string>\"\n                },\n                {\n                    \"id\": \"<integer>\",\n                    \"name\": \"<string>\",\n                    \"code\": \"<string>\",\n                    \"quantity\": \"<string>\"\n                }\n            ],\n            \"customFields\": \"<object>\",\n            \"customObjects\": [\n                {\n                    \"name\": \"<string>\",\n                    \"fields\": [\n                        {\n                            \"name\": \"<string>\",\n                            \"value\": \"<string>\"\n                        },\n                        {\n                            \"name\": \"<string>\",\n                            \"value\": \"<string>\"\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"fields\": [\n                        {\n                            \"name\": \"<string>\",\n                            \"value\": \"<string>\"\n                        },\n                        {\n                            \"name\": \"<string>\",\n                            \"value\": \"<string>\"\n                        }\n                    ]\n                }\n            ],\n            \"contactIndividualId\": \"<integer>\",\n            \"passthroughContact\": {\n                \"referenceId\": \"<string>\",\n                \"id\": \"<integer>\",\n                \"name\": \"<string>\",\n                \"type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"firstname\": \"<string>\",\n                \"middlename\": \"<string>\",\n                \"lastname\": \"<string>\",\n                \"suffix\": \"<string>\",\n                \"birthMonth\": \"<string>\",\n                \"birthDay\": \"<string>\",\n                \"birthYear\": \"<string>\",\n                \"gender\": \"<string>\",\n                \"emailType\": \"<string>\",\n                \"email\": \"<string>\",\n                \"phoneType\": \"<string>\",\n                \"phone\": \"<string>\",\n                \"address\": {\n                    \"address1\": \"<string>\",\n                    \"address2\": \"<string>\",\n                    \"city\": \"<string>\",\n                    \"state\": \"<string>\",\n                    \"postal\": \"<string>\",\n                    \"country\": \"<string>\"\n                },\n                \"tags\": \"<string>\",\n                \"emailLists\": [\n                    \"<string>\",\n                    \"<string>\"\n                ]\n            },\n            \"eventAttendee\": {\n                \"eventId\": \"<integer>\",\n                \"eventName\": \"<string>\",\n                \"invited\": \"<boolean>\",\n                \"rsvp\": \"<boolean>\",\n                \"rsvpResponse\": \"<boolean>\",\n                \"attended\": \"<boolean>\"\n            }\n        }\n    ],\n    \"createImport\": \"<boolean>\",\n    \"importName\": \"<string>\",\n    \"batch\": \"<string>\",\n    \"batchTotal\": \"<double>\",\n    \"defaultGiftDate\": \"<string>\",\n    \"defaultGiftType\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/v2/Gift/Transactions","description":"<p>HMAC or OAuth Auth valid.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","v2","Gift","Transactions"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"63b4f863-4406-4843-bc9c-3742b99a4760","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"transactionSource\": \"<string>\",\n    \"transactions\": [\n        {\n            \"transactionSource\": \"<string>\",\n            \"transactionId\": \"<string>\",\n            \"contact\": {\n                \"referenceId\": \"<string>\",\n                \"id\": \"<integer>\",\n                \"name\": \"<string>\",\n                \"type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"firstname\": \"<string>\",\n                \"middlename\": \"<string>\",\n                \"lastname\": \"<string>\",\n                \"suffix\": \"<string>\",\n                \"birthMonth\": \"<string>\",\n                \"birthDay\": \"<string>\",\n                \"birthYear\": \"<string>\",\n                \"gender\": \"<string>\",\n                \"emailType\": \"<string>\",\n                \"email\": \"<string>\",\n                \"phoneType\": \"<string>\",\n                \"phone\": \"<string>\",\n                \"address\": {\n                    \"address1\": \"<string>\",\n                    \"address2\": \"<string>\",\n                    \"city\": \"<string>\",\n                    \"state\": \"<string>\",\n                    \"postal\": \"<string>\",\n                    \"country\": \"<string>\"\n                },\n                \"tags\": \"<string>\",\n                \"emailLists\": [\n                    \"<string>\",\n                    \"<string>\"\n                ]\n            },\n            \"giftDate\": \"<string>\",\n            \"cancelDate\": \"<string>\",\n            \"giftType\": \"<string>\",\n            \"amount\": \"<string>\",\n            \"currencyCode\": \"<string>\",\n            \"exchangeRate\": \"<decimal>\",\n            \"frequency\": \"<string>\",\n            \"recurringGiftTransactionId\": \"<string>\",\n            \"recurringGiftTransactionUpdate\": \"<boolean>\",\n            \"pledgeFrequency\": \"<string>\",\n            \"pledgeTransactionId\": \"<string>\",\n            \"batch\": \"<string>\",\n            \"notes\": \"<string>\",\n            \"segment\": \"<string>\",\n            \"mediaOutlet\": \"<string>\",\n            \"receiptDate\": \"<string>\",\n            \"receiptSegment\": \"<string>\",\n            \"cashAccountingCode\": \"<string>\",\n            \"tribute\": \"<string>\",\n            \"tributeDedication\": {\n                \"tributeId\": \"<integer>\",\n                \"tributeType\": \"<string>\",\n                \"tributeFirstName\": \"<string>\",\n                \"tributeLastName\": \"<string>\",\n                \"tributeCity\": \"<string>\",\n                \"tributeState\": \"<string>\",\n                \"acknowledgeeIndividualId\": \"<integer>\",\n                \"acknowledgeeFirstName\": \"<string>\",\n                \"acknowledgeeLastName\": \"<string>\",\n                \"acknowledgeeAddress\": \"<string>\",\n                \"acknowledgeeCity\": \"<string>\",\n                \"acknowledgeeState\": \"<string>\",\n                \"acknowledgeePostal\": \"<string>\",\n                \"acknowledgeeEmail\": \"<string>\",\n                \"acknowledgeePhone\": \"<string>\"\n            },\n            \"isPrivate\": \"<boolean>\",\n            \"isTaxDeductible\": \"<boolean>\",\n            \"checkNumber\": \"<string>\",\n            \"creditCardType\": \"<string>\",\n            \"nonCashGiftType\": \"<string>\",\n            \"nonCashGiftDescription\": \"<string>\",\n            \"stockTickerSymbol\": \"<string>\",\n            \"stockNumberOfShares\": \"<integer>\",\n            \"submissionUrl\": \"<string>\",\n            \"designations\": [\n                {\n                    \"id\": \"<integer>\",\n                    \"name\": \"<string>\",\n                    \"code\": \"<string>\",\n                    \"amountDesignated\": \"<string>\"\n                },\n                {\n                    \"id\": \"<integer>\",\n                    \"name\": \"<string>\",\n                    \"code\": \"<string>\",\n                    \"amountDesignated\": \"<string>\"\n                }\n            ],\n            \"premiums\": [\n                {\n                    \"id\": \"<integer>\",\n                    \"name\": \"<string>\",\n                    \"code\": \"<string>\",\n                    \"quantity\": \"<string>\"\n                },\n                {\n                    \"id\": \"<integer>\",\n                    \"name\": \"<string>\",\n                    \"code\": \"<string>\",\n                    \"quantity\": \"<string>\"\n                }\n            ],\n            \"customFields\": \"<object>\",\n            \"customObjects\": [\n                {\n                    \"name\": \"<string>\",\n                    \"fields\": [\n                        {\n                            \"name\": \"<string>\",\n                            \"value\": \"<string>\"\n                        },\n                        {\n                            \"name\": \"<string>\",\n                            \"value\": \"<string>\"\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"fields\": [\n                        {\n                            \"name\": \"<string>\",\n                            \"value\": \"<string>\"\n                        },\n                        {\n                            \"name\": \"<string>\",\n                            \"value\": \"<string>\"\n                        }\n                    ]\n                }\n            ],\n            \"contactIndividualId\": \"<integer>\",\n            \"passthroughContact\": {\n                \"referenceId\": \"<string>\",\n                \"id\": \"<integer>\",\n                \"name\": \"<string>\",\n                \"type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"firstname\": \"<string>\",\n                \"middlename\": \"<string>\",\n                \"lastname\": \"<string>\",\n                \"suffix\": \"<string>\",\n                \"birthMonth\": \"<string>\",\n                \"birthDay\": \"<string>\",\n                \"birthYear\": \"<string>\",\n                \"gender\": \"<string>\",\n                \"emailType\": \"<string>\",\n                \"email\": \"<string>\",\n                \"phoneType\": \"<string>\",\n                \"phone\": \"<string>\",\n                \"address\": {\n                    \"address1\": \"<string>\",\n                    \"address2\": \"<string>\",\n                    \"city\": \"<string>\",\n                    \"state\": \"<string>\",\n                    \"postal\": \"<string>\",\n                    \"country\": \"<string>\"\n                },\n                \"tags\": \"<string>\",\n                \"emailLists\": [\n                    \"<string>\",\n                    \"<string>\"\n                ]\n            },\n            \"eventAttendee\": {\n                \"eventId\": \"<integer>\",\n                \"eventName\": \"<string>\",\n                \"invited\": \"<boolean>\",\n                \"rsvp\": \"<boolean>\",\n                \"rsvpResponse\": \"<boolean>\",\n                \"attended\": \"<boolean>\"\n            }\n        },\n        {\n            \"transactionSource\": \"<string>\",\n            \"transactionId\": \"<string>\",\n            \"contact\": {\n                \"referenceId\": \"<string>\",\n                \"id\": \"<integer>\",\n                \"name\": \"<string>\",\n                \"type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"firstname\": \"<string>\",\n                \"middlename\": \"<string>\",\n                \"lastname\": \"<string>\",\n                \"suffix\": \"<string>\",\n                \"birthMonth\": \"<string>\",\n                \"birthDay\": \"<string>\",\n                \"birthYear\": \"<string>\",\n                \"gender\": \"<string>\",\n                \"emailType\": \"<string>\",\n                \"email\": \"<string>\",\n                \"phoneType\": \"<string>\",\n                \"phone\": \"<string>\",\n                \"address\": {\n                    \"address1\": \"<string>\",\n                    \"address2\": \"<string>\",\n                    \"city\": \"<string>\",\n                    \"state\": \"<string>\",\n                    \"postal\": \"<string>\",\n                    \"country\": \"<string>\"\n                },\n                \"tags\": \"<string>\",\n                \"emailLists\": [\n                    \"<string>\",\n                    \"<string>\"\n                ]\n            },\n            \"giftDate\": \"<string>\",\n            \"cancelDate\": \"<string>\",\n            \"giftType\": \"<string>\",\n            \"amount\": \"<string>\",\n            \"frequency\": \"<string>\",\n            \"recurringGiftTransactionId\": \"<string>\",\n            \"recurringGiftTransactionUpdate\": \"<boolean>\",\n            \"pledgeFrequency\": \"<string>\",\n            \"pledgeTransactionId\": \"<string>\",\n            \"batch\": \"<string>\",\n            \"notes\": \"<string>\",\n            \"segment\": \"<string>\",\n            \"mediaOutlet\": \"<string>\",\n            \"receiptDate\": \"<string>\",\n            \"receiptSegment\": \"<string>\",\n            \"cashAccountingCode\": \"<string>\",\n            \"tribute\": \"<string>\",\n            \"tributeDedication\": {\n                \"tributeId\": \"<integer>\",\n                \"tributeType\": \"<string>\",\n                \"tributeFirstName\": \"<string>\",\n                \"tributeLastName\": \"<string>\",\n                \"tributeCity\": \"<string>\",\n                \"tributeState\": \"<string>\",\n                \"acknowledgeeIndividualId\": \"<integer>\",\n                \"acknowledgeeFirstName\": \"<string>\",\n                \"acknowledgeeLastName\": \"<string>\",\n                \"acknowledgeeAddress\": \"<string>\",\n                \"acknowledgeeCity\": \"<string>\",\n                \"acknowledgeeState\": \"<string>\",\n                \"acknowledgeePostal\": \"<string>\",\n                \"acknowledgeeEmail\": \"<string>\",\n                \"acknowledgeePhone\": \"<string>\"\n            },\n            \"isPrivate\": \"<boolean>\",\n            \"isTaxDeductible\": \"<boolean>\",\n            \"checkNumber\": \"<string>\",\n            \"creditCardType\": \"<string>\",\n            \"nonCashGiftType\": \"<string>\",\n            \"nonCashGiftDescription\": \"<string>\",\n            \"stockTickerSymbol\": \"<string>\",\n            \"stockNumberOfShares\": \"<integer>\",\n            \"submissionUrl\": \"<string>\",\n            \"designations\": [\n                {\n                    \"id\": \"<integer>\",\n                    \"name\": \"<string>\",\n                    \"code\": \"<string>\",\n                    \"amountDesignated\": \"<string>\"\n                },\n                {\n                    \"id\": \"<integer>\",\n                    \"name\": \"<string>\",\n                    \"code\": \"<string>\",\n                    \"amountDesignated\": \"<string>\"\n                }\n            ],\n            \"premiums\": [\n                {\n                    \"id\": \"<integer>\",\n                    \"name\": \"<string>\",\n                    \"code\": \"<string>\",\n                    \"quantity\": \"<string>\"\n                },\n                {\n                    \"id\": \"<integer>\",\n                    \"name\": \"<string>\",\n                    \"code\": \"<string>\",\n                    \"quantity\": \"<string>\"\n                }\n            ],\n            \"customFields\": \"<object>\",\n            \"customObjects\": [\n                {\n                    \"name\": \"<string>\",\n                    \"fields\": [\n                        {\n                            \"name\": \"<string>\",\n                            \"value\": \"<string>\"\n                        },\n                        {\n                            \"name\": \"<string>\",\n                            \"value\": \"<string>\"\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"<string>\",\n                    \"fields\": [\n                        {\n                            \"name\": \"<string>\",\n                            \"value\": \"<string>\"\n                        },\n                        {\n                            \"name\": \"<string>\",\n                            \"value\": \"<string>\"\n                        }\n                    ]\n                }\n            ],\n            \"contactIndividualId\": \"<integer>\",\n            \"passthroughContact\": {\n                \"referenceId\": \"<string>\",\n                \"id\": \"<integer>\",\n                \"name\": \"<string>\",\n                \"type\": \"<string>\",\n                \"title\": \"<string>\",\n                \"firstname\": \"<string>\",\n                \"middlename\": \"<string>\",\n                \"lastname\": \"<string>\",\n                \"suffix\": \"<string>\",\n                \"birthMonth\": \"<string>\",\n                \"birthDay\": \"<string>\",\n                \"birthYear\": \"<string>\",\n                \"gender\": \"<string>\",\n                \"emailType\": \"<string>\",\n                \"email\": \"<string>\",\n                \"phoneType\": \"<string>\",\n                \"phone\": \"<string>\",\n                \"address\": {\n                    \"address1\": \"<string>\",\n                    \"address2\": \"<string>\",\n                    \"city\": \"<string>\",\n                    \"state\": \"<string>\",\n                    \"postal\": \"<string>\",\n                    \"country\": \"<string>\"\n                },\n                \"tags\": \"<string>\",\n                \"emailLists\": [\n                    \"<string>\",\n                    \"<string>\"\n                ]\n            },\n            \"eventAttendee\": {\n                \"eventId\": \"<integer>\",\n                \"eventName\": \"<string>\",\n                \"invited\": \"<boolean>\",\n                \"rsvp\": \"<boolean>\",\n                \"rsvpResponse\": \"<boolean>\",\n                \"attended\": \"<boolean>\"\n            }\n        }\n    ],\n    \"createImport\": \"<boolean>\",\n    \"importName\": \"<string>\",\n    \"batch\": \"<string>\",\n    \"batchTotal\": \"<double>\",\n    \"defaultGiftDate\": \"<string>\",\n    \"defaultGiftType\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/v2/Gift/Transactions"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"784d2096-10db-42be-83e5-83632936032f"}],"id":"cf90d9ba-25e6-4667-b42f-c9d0fc8d9df5","_postman_id":"cf90d9ba-25e6-4667-b42f-c9d0fc8d9df5","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Configuration","item":[{"name":"Get Gift Custom Fields Available","id":"de71d723-902b-4357-af1c-20e35518aa74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Gift/CustomFields","description":"<p>Will return all enabled custom fields available for the Gift object.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Gift","CustomFields"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"2cc349ae-f2ef-46c9-b70c-12e6d3754d4d","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Gift/CustomFields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"dataType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"displayName\": \"<string>\",\n\t\t\"options\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t},\n\t{\n\t\t\"dataType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"displayName\": \"<string>\",\n\t\t\"options\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t}\n]"}],"_postman_id":"de71d723-902b-4357-af1c-20e35518aa74"},{"name":"Get Non-Cash Gift Types Available","id":"4444ec76-40ac-4401-a879-064054b75bb7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Gift/NonCashGiftTypes?skip=0&take=100&sortBy&descending","description":"<p>Will return all enabled custom fields available for the Gift object.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Gift","NonCashGiftTypes"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>int</p>\n","type":"text/plain"},"key":"skip","value":"0"},{"description":{"content":"<p>int</p>\n","type":"text/plain"},"key":"take","value":"100"},{"description":{"content":"<p>Optional string</p>\n","type":"text/plain"},"key":"sortBy","value":""},{"description":{"content":"<p>Optional boolean</p>\n","type":"text/plain"},"key":"descending","value":""}],"variable":[]}},"response":[{"id":"01049336-ee2f-45c1-a557-f58804ca7300","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Gift/NonCashGiftTypes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n  \"list\": [\n    {\n      \"id\": 0,\n      \"name\": \"string\",\n      \"isEnabled\": true\n    }\n  ],\n  \"total\": 0\n}"}],"_postman_id":"4444ec76-40ac-4401-a879-064054b75bb7"}],"id":"4446644f-9e7b-4a2a-8a98-c8d23ed18f11","_postman_id":"4446644f-9e7b-4a2a-8a98-c8d23ed18f11","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Gift Queries","item":[{"name":"Get Gift Query Options","id":"a9cb583f-aa5b-41bc-907d-e442a923dad3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Gift/QueryOptions","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Gift","QueryOptions"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"fd70aafb-2ef9-41c6-8da3-ccc5da659f0e","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Gift/QueryOptions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"options\": [\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t}\n\t],\n\t\"operatorOptions\": [\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t},\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t}\n\t]\n}"}],"_postman_id":"a9cb583f-aa5b-41bc-907d-e442a923dad3"},{"name":"Query Gifts with Abbreviated Details","id":"af19412c-7a8e-484f-9966-cc7e27b26b69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"groups\": [\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        }\n    ],\n    \"sortBy\": \"<string>\",\n    \"descending\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Gift/Query?skip=<integer>&take=<integer>","description":"<p>You can sort by Id, Amount, GiftDate, ReceiptDate and Batch.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Gift","Query"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10. Max is 1000.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"1daae76d-4555-49d5-9796-01ebf1223559","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Gift/Query?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Gift","Query"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactIndividualId\": \"<integer>\",\n\t\t\t\"giftType\": \"<string>\",\n\t\t\t\"giftDate\": \"<string>\",\n\t\t\t\"amount\": \"<string>\",\n\t\t\t\"segment\": \"<string>\",\n\t\t\t\"batch\": \"<string>\",\n\t\t\t\"giftUrl\": \"<string>\",\n\t\t\t\"culture\": \"<string>\",\n\t\t\t\"exchangeRate\": \"<double>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactIndividualId\": \"<integer>\",\n\t\t\t\"giftType\": \"<string>\",\n\t\t\t\"giftDate\": \"<string>\",\n\t\t\t\"amount\": \"<string>\",\n\t\t\t\"segment\": \"<string>\",\n\t\t\t\"batch\": \"<string>\",\n\t\t\t\"giftUrl\": \"<string>\",\n\t\t\t\"culture\": \"<string>\",\n\t\t\t\"exchangeRate\": \"<double>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"af19412c-7a8e-484f-9966-cc7e27b26b69"},{"name":"Query Gifts with Full Details","id":"3a79b1a4-fbec-4f61-8720-ba0a0a1c2a8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"groups\": [\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        }\n    ],\n    \"sortBy\": \"<string>\",\n    \"descending\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Gift/Query/FullGift?skip=<integer>&take=<integer>","description":"<p>Returns the full gift info along with the query. This can cause performance issues.\nWe recommend using the Gift Query endpoint for quicker results.\nYou can sort by Id, Amount, GiftDate, ReceiptDate and Batch.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Gift","Query","FullGift"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10. Max is 1000.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"3772da37-3001-4313-8525-5fe82824c43d","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Gift/Query/FullGift?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Gift","Query","FullGift"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"transactionSource\": \"<string>\",\n\t\t\t\"transactionId\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactName\": \"<string>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"giftType\": \"<string>\",\n\t\t\t\"giftTypeFormatted\": \"<string>\",\n\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\"giftDateFormatted\": \"<string>\",\n\t\t\t\"amount\": \"<double>\",\n\t\t\t\"amountFormatted\": \"<string>\",\n            \"currencyCode\": \"<string>\",\n            \"exchangeRate\": \"<decimal>\",\n            \"baseCurrencyCode\": \"<string>\",\n\t\t\t\"batch\": \"<string>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"segmentId\": \"<integer>\",\n\t\t\t\"segment\": \"<string>\",\n\t\t\t\"segmentCode\": \"<string>\",\n\t\t\t\"segmentUrl\": \"<string>\",\n\t\t\t\"mediaOutletId\": \"<integer>\",\n\t\t\t\"mediaOutlet\": \"<string>\",\n\t\t\t\"grantId\": \"<integer>\",\n\t\t\t\"grant\": \"<string>\",\n\t\t\t\"grantUrl\": \"<string>\",\n\t\t\t\"notes\": \"<string>\",\n\t\t\t\"tribute\": \"<string>\",\n\t\t\t\"tributeId\": \"<integer>\",\n\t\t\t\"tributeType\": \"<string>\",\n\t\t\t\"acknowledgeeIndividualId\": \"<integer>\",\n\t\t\t\"receiptDate\": \"<dateTime>\",\n\t\t\t\"receiptDateFormatted\": \"<string>\",\n\t\t\t\"contactPassthroughId\": \"<integer>\",\n\t\t\t\"contactPassthroughUrl\": \"<string>\",\n\t\t\t\"contactIndividualId\": \"<integer>\",\n\t\t\t\"cashAccountingCode\": \"<string>\",\n\t\t\t\"giftAskId\": \"<integer>\",\n\t\t\t\"contactMembershipId\": \"<integer>\",\n\t\t\t\"giftDesignations\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\t\t\"project\": \"<string>\",\n\t\t\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\t\t\"projectType\": \"<string>\",\n\t\t\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\t\t\"display\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\t\t\"project\": \"<string>\",\n\t\t\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\t\t\"projectType\": \"<string>\",\n\t\t\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\t\t\"display\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"giftPremiums\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"premiumId\": \"<integer>\",\n\t\t\t\t\t\"premium\": \"<string>\",\n\t\t\t\t\t\"premiumUrl\": \"<string>\",\n\t\t\t\t\t\"quantity\": \"<integer>\",\n\t\t\t\t\t\"display\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"premiumId\": \"<integer>\",\n\t\t\t\t\t\"premium\": \"<string>\",\n\t\t\t\t\t\"premiumUrl\": \"<string>\",\n\t\t\t\t\t\"quantity\": \"<integer>\",\n\t\t\t\t\t\"display\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"pledgePayments\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\t\t\"actualAmount\": \"<double>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\t\t\"actualAmount\": \"<double>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"recurringGiftPayments\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"gift\": {\n\t\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\t\t\t\"amount\": \"<double>\"\n\t\t\t\t\t},\n\t\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\t\"dismissPaymentDate\": \"<dateTime>\",\n\t\t\t\t\t\"fulfillPaymentDate\": \"<dateTime>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"gift\": {\n\t\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\t\t\t\"amount\": \"<double>\"\n\t\t\t\t\t},\n\t\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\t\"dismissPaymentDate\": \"<dateTime>\",\n\t\t\t\t\t\"fulfillPaymentDate\": \"<dateTime>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"giftUrl\": \"<string>\",\n\t\t\t\"isPrivate\": \"<boolean>\",\n\t\t\t\"isTaxDeductible\": \"<boolean>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"transactionSource\": \"<string>\",\n\t\t\t\"transactionId\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactName\": \"<string>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"giftType\": \"<string>\",\n\t\t\t\"giftTypeFormatted\": \"<string>\",\n\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\"giftDateFormatted\": \"<string>\",\n\t\t\t\"amount\": \"<double>\",\n\t\t\t\"amountFormatted\": \"<string>\",\n            \"currencyCode\": \"<string>\",\n            \"exchangeRate\": \"<decimal>\",\n            \"baseCurrencyCode\": \"<string>\",\n\t\t\t\"batch\": \"<string>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"segmentId\": \"<integer>\",\n\t\t\t\"segment\": \"<string>\",\n\t\t\t\"segmentCode\": \"<string>\",\n\t\t\t\"segmentUrl\": \"<string>\",\n\t\t\t\"mediaOutletId\": \"<integer>\",\n\t\t\t\"mediaOutlet\": \"<string>\",\n\t\t\t\"grantId\": \"<integer>\",\n\t\t\t\"grant\": \"<string>\",\n\t\t\t\"grantUrl\": \"<string>\",\n\t\t\t\"notes\": \"<string>\",\n\t\t\t\"tribute\": \"<string>\",\n\t\t\t\"tributeId\": \"<integer>\",\n\t\t\t\"tributeType\": \"<string>\",\n\t\t\t\"acknowledgeeIndividualId\": \"<integer>\",\n\t\t\t\"receiptDate\": \"<dateTime>\",\n\t\t\t\"receiptDateFormatted\": \"<string>\",\n\t\t\t\"contactPassthroughId\": \"<integer>\",\n\t\t\t\"contactPassthroughUrl\": \"<string>\",\n\t\t\t\"contactIndividualId\": \"<integer>\",\n\t\t\t\"cashAccountingCode\": \"<string>\",\n\t\t\t\"giftAskId\": \"<integer>\",\n\t\t\t\"contactMembershipId\": \"<integer>\",\n\t\t\t\"giftDesignations\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\t\t\"project\": \"<string>\",\n\t\t\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\t\t\"projectType\": \"<string>\",\n\t\t\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\t\t\"display\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\t\t\"project\": \"<string>\",\n\t\t\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\t\t\"projectType\": \"<string>\",\n\t\t\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\t\t\"display\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"giftPremiums\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"premiumId\": \"<integer>\",\n\t\t\t\t\t\"premium\": \"<string>\",\n\t\t\t\t\t\"premiumUrl\": \"<string>\",\n\t\t\t\t\t\"quantity\": \"<integer>\",\n\t\t\t\t\t\"display\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"premiumId\": \"<integer>\",\n\t\t\t\t\t\"premium\": \"<string>\",\n\t\t\t\t\t\"premiumUrl\": \"<string>\",\n\t\t\t\t\t\"quantity\": \"<integer>\",\n\t\t\t\t\t\"display\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"pledgePayments\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\t\t\"actualAmount\": \"<double>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\t\t\"actualAmount\": \"<double>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"recurringGiftPayments\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"gift\": {\n\t\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\t\t\t\"amount\": \"<double>\"\n\t\t\t\t\t},\n\t\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\t\"dismissPaymentDate\": \"<dateTime>\",\n\t\t\t\t\t\"fulfillPaymentDate\": \"<dateTime>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"gift\": {\n\t\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\t\t\t\"amount\": \"<double>\"\n\t\t\t\t\t},\n\t\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\t\"dismissPaymentDate\": \"<dateTime>\",\n\t\t\t\t\t\"fulfillPaymentDate\": \"<dateTime>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"giftUrl\": \"<string>\",\n\t\t\t\"isPrivate\": \"<boolean>\",\n\t\t\t\"isTaxDeductible\": \"<boolean>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"3a79b1a4-fbec-4f61-8720-ba0a0a1c2a8a"}],"id":"d3d1c2a9-f8a3-4933-826e-c49b327fffd1","_postman_id":"d3d1c2a9-f8a3-4933-826e-c49b327fffd1","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}}],"id":"55474fe1-60f1-4d26-9d7c-0a912a2ba6f4","description":"<p>Quite simply, a gift is a donation of money, good, services, or other assets. As Virtuous is a system designed specifically for nonprofits, all transactions entered into Virtuous are gifts, and are assumed to be fully tax-deductible unless otherwise indicated. Each gift can be assigned a type, along with a Segment and a Project to track the origin and destination of every gift received.</p>\n","_postman_id":"55474fe1-60f1-4d26-9d7c-0a912a2ba6f4","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Gift Designations","item":[{"name":"Get Gift Designation Query Options","id":"fb900551-850c-432f-a986-17a3c6b5969f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/GiftDesignation/QueryOptions","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","GiftDesignation","QueryOptions"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"e5c75e3d-1506-4156-9cf8-0125f5342606","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/GiftDesignation/QueryOptions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"options\": [\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t}\n\t],\n\t\"operatorOptions\": [\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t},\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t}\n\t]\n}"}],"_postman_id":"fb900551-850c-432f-a986-17a3c6b5969f"},{"name":"Query Gift Designations","id":"1147aa16-24e0-46d4-ae98-24731b90a93b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"groups\": [\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        }\n    ],\n    \"sortBy\": \"<string>\",\n    \"descending\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/GiftDesignation/Query?skip=<integer>&take=<integer>","description":"<p>You can sort by Id, Amount, GiftDate, ReceiptDate and Batch.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","GiftDesignation","Query"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10. Max is 1000.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"fd4180ac-943d-459b-9a7b-ff2e6e9793be","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/GiftDesignation/Query?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","GiftDesignation","Query"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"createDate\": \"<string>\",\n\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\"giftDate\": \"<string>\",\n\t\t\t\"giftType\": \"<string>\",\n\t\t\t\"giftIsPrivate\": \"<boolean>\",\n\t\t\t\"giftCustomFields\": \"<object>\",\n\t\t\t\"giftUrl\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactName\": \"<string>\",\n\t\t\t\"contactType\": \"<string>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\"projectExternalAccountingCode\": \"<string>\",\n\t\t\t\"projectType\": \"<string>\",\n\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\"projectCustomFields\": \"<object>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"parentProjectId\": \"<integer>\",\n\t\t\t\"parentProject\": \"<string>\",\n\t\t\t\"parentProjectCode\": \"<string>\",\n\t\t\t\"parentProjectExternalAccountingCode\": \"<string>\",\n\t\t\t\"parentProjectType\": \"<string>\",\n\t\t\t\"parentProjectLocation\": \"<string>\",\n\t\t\t\"parentProjectCustomFields\": \"<object>\",\n\t\t\t\"parentProjectUrl\": \"<string>\",\n            //*** The following fields are available starting 9/13/2022 ***\n            \"batch\": \"<string>\", \n            \"segmentName\": \"<string>\",\n            \"segmentCode\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"createDate\": \"<string>\",\n\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\"giftDate\": \"<string>\",\n\t\t\t\"giftType\": \"<string>\",\n\t\t\t\"giftIsPrivate\": \"<boolean>\",\n\t\t\t\"giftCustomFields\": \"<object>\",\n\t\t\t\"giftUrl\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactName\": \"<string>\",\n\t\t\t\"contactType\": \"<string>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\"projectExternalAccountingCode\": \"<string>\",\n\t\t\t\"projectType\": \"<string>\",\n\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\"projectCustomFields\": \"<object>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"parentProjectId\": \"<integer>\",\n\t\t\t\"parentProject\": \"<string>\",\n\t\t\t\"parentProjectCode\": \"<string>\",\n\t\t\t\"parentProjectExternalAccountingCode\": \"<string>\",\n\t\t\t\"parentProjectType\": \"<string>\",\n\t\t\t\"parentProjectLocation\": \"<string>\",\n\t\t\t\"parentProjectCustomFields\": \"<object>\",\n\t\t\t\"parentProjectUrl\": \"<string>\",\n            //*** The following fields are available starting 9/13/2022 ***\n            \"batch\": \"<string>\", \n            \"segmentName\": \"<string>\",\n            \"segmentCode\": \"<string>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"1147aa16-24e0-46d4-ae98-24731b90a93b"}],"id":"d7f63f2f-1be2-42df-8838-1c06f3a61375","_postman_id":"d7f63f2f-1be2-42df-8838-1c06f3a61375","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Gift Asks","item":[{"name":"Get Gift Asks for a Contact","id":"1f643d73-62bb-4dc7-917c-0b86ef5a35cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/GiftAsk/ByContact/:contactId?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","GiftAsk","ByContact",":contactId"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) The contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactId"}]}},"response":[{"id":"e38c1d62-db90-4366-8840-c177fd6867b0","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/GiftAsk/ByContact/:contactId?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","GiftAsk","ByContact",":contactId"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"giftAskUrl\": \"<string>\",\n\t\t\t\"giftsAppliedUrl\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"askAmount\": \"<double>\",\n\t\t\t\"askAmountFormatted\": \"<string>\",\n\t\t\t\"askDate\": \"<dateTime>\",\n\t\t\t\"askDateFormatted\": \"<string>\",\n\t\t\t\"expectedFulfillmentDate\": \"<dateTime>\",\n\t\t\t\"expectedFulfillmentDateFormatted\": \"<string>\",\n\t\t\t\"notes\": \"<string>\",\n\t\t\t\"askType\": \"<string>\",\n\t\t\t\"frequency\": \"<string>\",\n\t\t\t\"declined\": \"<boolean>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"segmentId\": \"<integer>\",\n\t\t\t\"segment\": \"<string>\",\n\t\t\t\"segmentCode\": \"<string>\",\n\t\t\t\"segmentUrl\": \"<string>\",\n\t\t\t\"assignedUserId\": \"<integer>\",\n\t\t\t\"assignedUser\": \"<string>\",\n            \"secondaryAssignedUser\": \"string\",\n            \"secondaryAssignedUserId\": 0,\n\t\t\t\"status\": \"<string>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"giftAskUrl\": \"<string>\",\n\t\t\t\"giftsAppliedUrl\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"askAmount\": \"<double>\",\n\t\t\t\"askAmountFormatted\": \"<string>\",\n\t\t\t\"askDate\": \"<dateTime>\",\n\t\t\t\"askDateFormatted\": \"<string>\",\n\t\t\t\"expectedFulfillmentDate\": \"<dateTime>\",\n\t\t\t\"expectedFulfillmentDateFormatted\": \"<string>\",\n\t\t\t\"notes\": \"<string>\",\n\t\t\t\"askType\": \"<string>\",\n\t\t\t\"frequency\": \"<string>\",\n\t\t\t\"declined\": \"<boolean>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"segmentId\": \"<integer>\",\n\t\t\t\"segment\": \"<string>\",\n\t\t\t\"segmentCode\": \"<string>\",\n\t\t\t\"segmentUrl\": \"<string>\",\n\t\t\t\"assignedUserId\": \"<integer>\",\n\t\t\t\"assignedUser\": \"<string>\",\n            \"secondaryAssignedUser\": \"string\",\n            \"secondaryAssignedUserId\": 0,\n\t\t\t\"status\": \"<string>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"1f643d73-62bb-4dc7-917c-0b86ef5a35cb"},{"name":"Get the Gifts applied to a Gift Ask","id":"79c48679-3e66-47f1-bd53-c5fe4bab067b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/GiftAsk/:giftAskId/Gifts","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","GiftAsk",":giftAskId","Gifts"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The gift ask identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"giftAskId"}]}},"response":[{"id":"94078a37-f2aa-43c7-ade5-68bf64be64b5","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/GiftAsk/:giftAskId/Gifts","host":["https://api.virtuoussoftware.com"],"path":["api","GiftAsk",":giftAskId","Gifts"],"variable":[{"key":"giftAskId","value":"<integer>","description":"(Required) The gift ask identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"id\": \"<integer>\",\n\t\t\"transactionSource\": \"<string>\",\n\t\t\"transactionId\": \"<string>\",\n\t\t\"contactId\": \"<integer>\",\n\t\t\"contactName\": \"<string>\",\n\t\t\"contactUrl\": \"<string>\",\n\t\t\"giftType\": \"<string>\",\n\t\t\"giftTypeFormatted\": \"<string>\",\n\t\t\"giftDate\": \"<dateTime>\",\n\t\t\"giftDateFormatted\": \"<string>\",\n\t\t\"amount\": \"<double>\",\n\t\t\"amountFormatted\": \"<string>\",\n        \"currencyCode\": \"<string>\",\n        \"exchangeRate\": \"<decimal>\",\n        \"baseCurrencyCode\": \"<string>\",\n\t\t\"batch\": \"<string>\",\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\",\n\t\t\"segmentId\": \"<integer>\",\n\t\t\"segment\": \"<string>\",\n\t\t\"segmentCode\": \"<string>\",\n\t\t\"segmentUrl\": \"<string>\",\n\t\t\"mediaOutletId\": \"<integer>\",\n\t\t\"mediaOutlet\": \"<string>\",\n\t\t\"grantId\": \"<integer>\",\n\t\t\"grant\": \"<string>\",\n\t\t\"grantUrl\": \"<string>\",\n\t\t\"notes\": \"<string>\",\n\t\t\"tribute\": \"<string>\",\n\t\t\"tributeId\": \"<integer>\",\n\t\t\"tributeType\": \"<string>\",\n\t\t\"acknowledgeeIndividualId\": \"<integer>\",\n\t\t\"receiptDate\": \"<dateTime>\",\n\t\t\"receiptDateFormatted\": \"<string>\",\n\t\t\"contactPassthroughId\": \"<integer>\",\n\t\t\"contactPassthroughUrl\": \"<string>\",\n\t\t\"contactIndividualId\": \"<integer>\",\n\t\t\"cashAccountingCode\": \"<string>\",\n\t\t\"giftAskId\": \"<integer>\",\n\t\t\"contactMembershipId\": \"<integer>\",\n\t\t\"giftDesignations\": [\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\t\"project\": \"<string>\",\n\t\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\t\"projectType\": \"<string>\",\n\t\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\t\"display\": \"<string>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\t\"project\": \"<string>\",\n\t\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\t\"projectType\": \"<string>\",\n\t\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\t\"display\": \"<string>\"\n\t\t\t}\n\t\t],\n\t\t\"giftPremiums\": [\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"premiumId\": \"<integer>\",\n\t\t\t\t\"premium\": \"<string>\",\n\t\t\t\t\"premiumUrl\": \"<string>\",\n\t\t\t\t\"quantity\": \"<integer>\",\n\t\t\t\t\"display\": \"<string>\",\n                \"createDateTimeUtc\": \"<dateTime>\",\n                \"createdByUser\": \"<string>\",\n                \"modifiedDateTimeUtc\": \"<dateTime>\",\n                \"modifiedByUser\": \"<string>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"premiumId\": \"<integer>\",\n\t\t\t\t\"premium\": \"<string>\",\n\t\t\t\t\"premiumUrl\": \"<string>\",\n\t\t\t\t\"quantity\": \"<integer>\",\n\t\t\t\t\"display\": \"<string>\",\n                \"createDateTimeUtc\": \"<dateTime>\",\n                \"createdByUser\": \"<string>\",\n                \"modifiedDateTimeUtc\": \"<dateTime>\",\n                \"modifiedByUser\": \"<string>\"\n\t\t\t}\n\t\t],\n\t\t\"pledgePayments\": [\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\t\"actualAmount\": \"<double>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\t\"actualAmount\": \"<double>\"\n\t\t\t}\n\t\t],\n\t\t\"recurringGiftPayments\": [\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"gift\": {\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\t\t\"amount\": \"<double>\"\n\t\t\t\t},\n\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"dismissPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"fulfillPaymentDate\": \"<dateTime>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"gift\": {\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\t\t\"amount\": \"<double>\"\n\t\t\t\t},\n\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"dismissPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"fulfillPaymentDate\": \"<dateTime>\"\n\t\t\t}\n\t\t],\n\t\t\"giftUrl\": \"<string>\",\n\t\t\"isPrivate\": \"<boolean>\",\n\t\t\"isTaxDeductible\": \"<boolean>\",\n\t\t\"customFields\": [\n\t\t\t{\n\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"id\": \"<integer>\",\n\t\t\"transactionSource\": \"<string>\",\n\t\t\"transactionId\": \"<string>\",\n\t\t\"contactId\": \"<integer>\",\n\t\t\"contactName\": \"<string>\",\n\t\t\"contactUrl\": \"<string>\",\n\t\t\"giftType\": \"<string>\",\n\t\t\"giftTypeFormatted\": \"<string>\",\n\t\t\"giftDate\": \"<dateTime>\",\n\t\t\"giftDateFormatted\": \"<string>\",\n\t\t\"amount\": \"<double>\",\n\t\t\"amountFormatted\": \"<string>\",\n        \"currencyCode\": \"<string>\",\n        \"exchangeRate\": \"<decimal>\",\n        \"baseCurrencyCode\": \"<string>\",\n\t\t\"batch\": \"<string>\",\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\",\n\t\t\"segmentId\": \"<integer>\",\n\t\t\"segment\": \"<string>\",\n\t\t\"segmentCode\": \"<string>\",\n\t\t\"segmentUrl\": \"<string>\",\n\t\t\"mediaOutletId\": \"<integer>\",\n\t\t\"mediaOutlet\": \"<string>\",\n\t\t\"grantId\": \"<integer>\",\n\t\t\"grant\": \"<string>\",\n\t\t\"grantUrl\": \"<string>\",\n\t\t\"notes\": \"<string>\",\n\t\t\"tribute\": \"<string>\",\n\t\t\"tributeId\": \"<integer>\",\n\t\t\"tributeType\": \"<string>\",\n\t\t\"acknowledgeeIndividualId\": \"<integer>\",\n\t\t\"receiptDate\": \"<dateTime>\",\n\t\t\"receiptDateFormatted\": \"<string>\",\n\t\t\"contactPassthroughId\": \"<integer>\",\n\t\t\"contactPassthroughUrl\": \"<string>\",\n\t\t\"contactIndividualId\": \"<integer>\",\n\t\t\"cashAccountingCode\": \"<string>\",\n\t\t\"giftAskId\": \"<integer>\",\n\t\t\"contactMembershipId\": \"<integer>\",\n\t\t\"giftDesignations\": [\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\t\"project\": \"<string>\",\n\t\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\t\"projectType\": \"<string>\",\n\t\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\t\"display\": \"<string>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\t\"project\": \"<string>\",\n\t\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\t\"projectType\": \"<string>\",\n\t\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\t\"display\": \"<string>\"\n\t\t\t}\n\t\t],\n\t\t\"giftPremiums\": [\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"premiumId\": \"<integer>\",\n\t\t\t\t\"premium\": \"<string>\",\n\t\t\t\t\"premiumUrl\": \"<string>\",\n\t\t\t\t\"quantity\": \"<integer>\",\n\t\t\t\t\"display\": \"<string>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"premiumId\": \"<integer>\",\n\t\t\t\t\"premium\": \"<string>\",\n\t\t\t\t\"premiumUrl\": \"<string>\",\n\t\t\t\t\"quantity\": \"<integer>\",\n\t\t\t\t\"display\": \"<string>\"\n\t\t\t}\n\t\t],\n\t\t\"pledgePayments\": [\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\t\"actualAmount\": \"<double>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\t\"actualAmount\": \"<double>\"\n\t\t\t}\n\t\t],\n\t\t\"recurringGiftPayments\": [\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"gift\": {\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\t\t\"amount\": \"<double>\"\n\t\t\t\t},\n\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"dismissPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"fulfillPaymentDate\": \"<dateTime>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"gift\": {\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\t\t\"amount\": \"<double>\"\n\t\t\t\t},\n\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"dismissPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"fulfillPaymentDate\": \"<dateTime>\"\n\t\t\t}\n\t\t],\n\t\t\"giftUrl\": \"<string>\",\n\t\t\"isPrivate\": \"<boolean>\",\n\t\t\"isTaxDeductible\": \"<boolean>\",\n\t\t\"customFields\": [\n\t\t\t{\n\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t}\n\t\t]\n\t}\n]"},{"id":"a0cdaaa5-5425-4325-854f-14af740228b4","name":"BadRequest","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/GiftAsk/:giftAskId/Gifts","host":["https://api.virtuoussoftware.com"],"path":["api","GiftAsk",":giftAskId","Gifts"],"variable":[{"key":"giftAskId","value":"<integer>","description":"(Required) The gift ask identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"79c48679-3e66-47f1-bd53-c5fe4bab067b"},{"name":"Get a Gift Ask","id":"3afdf19c-2761-4d87-ad31-bdf34dbab686","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/GiftAsk/:giftAskId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","GiftAsk",":giftAskId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The gift ask identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"giftAskId"}]}},"response":[{"id":"5503daf8-34b7-488c-974b-f8ec03147156","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/GiftAsk/:giftAskId","host":["https://api.virtuoussoftware.com"],"path":["api","GiftAsk",":giftAskId"],"variable":[{"key":"giftAskId","value":"<integer>","description":"(Required) The gift ask identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"giftAskUrl\": \"<string>\",\n\t\"giftsAppliedUrl\": \"<string>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactUrl\": \"<string>\",\n\t\"askAmount\": \"<double>\",\n\t\"askAmountFormatted\": \"<string>\",\n\t\"askDate\": \"<dateTime>\",\n\t\"askDateFormatted\": \"<string>\",\n\t\"expectedFulfillmentDate\": \"<dateTime>\",\n\t\"expectedFulfillmentDateFormatted\": \"<string>\",\n\t\"notes\": \"<string>\",\n\t\"askType\": \"<string>\",\n\t\"frequency\": \"<string>\",\n\t\"declined\": \"<boolean>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"projectId\": \"<integer>\",\n\t\"project\": \"<string>\",\n\t\"projectUrl\": \"<string>\",\n\t\"segmentId\": \"<integer>\",\n\t\"segment\": \"<string>\",\n\t\"segmentCode\": \"<string>\",\n\t\"segmentUrl\": \"<string>\",\n\t\"assignedUserId\": \"<integer>\",\n\t\"assignedUser\": \"<string>\",\n    \"secondaryAssignedUser\": \"string\",\n    \"secondaryAssignedUserId\": 0,\n\t\"status\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"3781868d-16ac-4817-bc25-780bf2014d6a","name":"BadRequest","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/GiftAsk/:giftAskId","host":["https://api.virtuoussoftware.com"],"path":["api","GiftAsk",":giftAskId"],"variable":[{"key":"giftAskId","value":"<integer>","description":"(Required) The gift ask identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3afdf19c-2761-4d87-ad31-bdf34dbab686"},{"name":"Create a Gift Ask","id":"05f5e76a-d82d-4701-96f1-5a0139553654","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer:required>\",\n    \"askAmount\": \"<double:required>\",\n    \"askDate\": \"<dateTime:optional>\",\n    \"expectedFulfillmentDate\": \"<dateTime:optional>\",\n    \"notes\": \"<string:optional>\",\n    \"askType\": \"<string:FixedAsk|RecurringAsk:required>\",\n    \"frequency\": \"<string:optional>\",\n    \"declined\": \"<boolean:optional:default=false>\",\n    \"projectId\": \"<integer:optional>\",\n    \"segmentId\": \"<integer:optional>\",\n    \"assignedUserId\": \"<integer:optional>\",\n    \"secondaryAssignedUserId\": \"<integer:optional>\",\n    \"status\": \"<string:required>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string:required>\",\n            \"value\": \"<string:optional>\"\n        },\n        {\n            \"name\": \"<string:required>\",\n            \"value\": \"<string:optional>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/GiftAsk","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","GiftAsk"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"495e1fc4-d9d3-4ab2-88a2-b24ba50d5421","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer>\",\n    \"askAmount\": \"<double>\",\n    \"askDate\": \"<dateTime>\",\n    \"expectedFulfillmentDate\": \"<dateTime>\",\n    \"notes\": \"<string>\",\n    \"askType\": \"<string>\",\n    \"frequency\": \"<string>\",\n    \"declined\": \"<boolean>\",\n    \"projectId\": \"<integer>\",\n    \"segmentId\": \"<integer>\",\n    \"assignedUserId\": \"<integer>\",\n    \"status\": \"<string>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/GiftAsk"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"giftAskUrl\": \"<string>\",\n\t\"giftsAppliedUrl\": \"<string>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactUrl\": \"<string>\",\n\t\"askAmount\": \"<double>\",\n\t\"askAmountFormatted\": \"<string>\",\n\t\"askDate\": \"<dateTime>\",\n\t\"askDateFormatted\": \"<string>\",\n\t\"expectedFulfillmentDate\": \"<dateTime>\",\n\t\"expectedFulfillmentDateFormatted\": \"<string>\",\n\t\"notes\": \"<string>\",\n\t\"askType\": \"<string>\",\n\t\"frequency\": \"<string>\",\n\t\"declined\": \"<boolean>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"projectId\": \"<integer>\",\n\t\"project\": \"<string>\",\n\t\"projectUrl\": \"<string>\",\n\t\"segmentId\": \"<integer>\",\n\t\"segment\": \"<string>\",\n\t\"segmentCode\": \"<string>\",\n\t\"segmentUrl\": \"<string>\",\n\t\"assignedUserId\": \"<integer>\",\n\t\"assignedUser\": \"<string>\",\n    \"secondaryAssignedUser\": \"<string>\",\n    \"secondaryAssignedUserId\": \"<integer>\",\n\t\"status\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"ed59b15c-bec9-4d63-a4ea-26fa25ffc250","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer>\",\n    \"askAmount\": \"<double>\",\n    \"askDate\": \"<dateTime>\",\n    \"expectedFulfillmentDate\": \"<dateTime>\",\n    \"notes\": \"<string>\",\n    \"askType\": \"<string>\",\n    \"frequency\": \"<string>\",\n    \"declined\": \"<boolean>\",\n    \"projectId\": \"<integer>\",\n    \"segmentId\": \"<integer>\",\n    \"assignedUserId\": \"<integer>\",\n    \"status\": \"<string>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/GiftAsk"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"05f5e76a-d82d-4701-96f1-5a0139553654"},{"name":"Update a Gift Ask","id":"43c315cd-6717-4f05-985a-f5b85c489b8f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"askAmount\": \"<double:required>\",\n    \"askDate\": \"<dateTime:optional>\",\n    \"expectedFulfillmentDate\": \"<dateTime:optional>\",\n    \"notes\": \"<string:optional>\",\n    \"askType\": \"<string:FixedAsk|RecurringAsk:required>\",\n    \"frequency\": \"<string:optional>\",\n    \"declined\": \"<boolean:optional:default=false>\",\n    \"projectId\": \"<integer:optional>\",\n    \"segmentId\": \"<integer:optional>\",\n    \"assignedUserId\": \"<integer:optional>\",\n    \"secondaryAssignedUserId\": \"<integer:optional>\",\n    \"status\": \"<string:required>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string:required>\",\n            \"value\": \"<string:optional>\"\n        },\n        {\n            \"name\": \"<string:required>\",\n            \"value\": \"<string:optional>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/GiftAsk/:giftAskId","description":"<p>Similar to other update methods in the API, excluding a property will remove it's value from the object. \nIf you're only updating a single property, the entire model is still required.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","GiftAsk",":giftAskId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The giftAsk identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"giftAskId"}]}},"response":[{"id":"218c094b-d09a-4820-ab2e-ef4a7472e89d","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"askAmount\": \"<double>\",\n    \"askDate\": \"<dateTime>\",\n    \"expectedFulfillmentDate\": \"<dateTime>\",\n    \"notes\": \"<string>\",\n    \"askType\": \"<string>\",\n    \"frequency\": \"<string>\",\n    \"declined\": \"<boolean>\",\n    \"projectId\": \"<integer>\",\n    \"segmentId\": \"<integer>\",\n    \"assignedUserId\": \"<integer>\",\n    \"status\": \"<string>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/GiftAsk/:giftAskId","host":["https://api.virtuoussoftware.com"],"path":["api","GiftAsk",":giftAskId"],"variable":[{"key":"giftAskId","value":"<integer>","description":"(Required) The giftAsk identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"giftAskUrl\": \"<string>\",\n\t\"giftsAppliedUrl\": \"<string>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactUrl\": \"<string>\",\n\t\"askAmount\": \"<double>\",\n\t\"askAmountFormatted\": \"<string>\",\n\t\"askDate\": \"<dateTime>\",\n\t\"askDateFormatted\": \"<string>\",\n\t\"expectedFulfillmentDate\": \"<dateTime>\",\n\t\"expectedFulfillmentDateFormatted\": \"<string>\",\n\t\"notes\": \"<string>\",\n\t\"askType\": \"<string>\",\n\t\"frequency\": \"<string>\",\n\t\"declined\": \"<boolean>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"projectId\": \"<integer>\",\n\t\"project\": \"<string>\",\n\t\"projectUrl\": \"<string>\",\n\t\"segmentId\": \"<integer>\",\n\t\"segment\": \"<string>\",\n\t\"segmentCode\": \"<string>\",\n\t\"segmentUrl\": \"<string>\",\n\t\"assignedUserId\": \"<integer>\",\n\t\"assignedUser\": \"<string>\",\n    \"secondaryAssignedUser\": \"<string>\",\n    \"secondaryAssignedUserId\": \"<integer>\",\n\t\"status\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"3579be2d-378a-49e7-901d-a225a7630275","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"askAmount\": \"<double>\",\n    \"askDate\": \"<dateTime>\",\n    \"expectedFulfillmentDate\": \"<dateTime>\",\n    \"notes\": \"<string>\",\n    \"askType\": \"<string>\",\n    \"frequency\": \"<string>\",\n    \"declined\": \"<boolean>\",\n    \"projectId\": \"<integer>\",\n    \"segmentId\": \"<integer>\",\n    \"assignedUserId\": \"<integer>\",\n    \"status\": \"<string>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/GiftAsk/:giftAskId","host":["https://api.virtuoussoftware.com"],"path":["api","GiftAsk",":giftAskId"],"variable":[{"key":"giftAskId","value":"<integer>","description":"(Required) The giftAsk identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"43c315cd-6717-4f05-985a-f5b85c489b8f"},{"name":"Get Gift Ask Custom Fields Available","id":"5a5f1e40-ac23-4739-89f5-c469451ed692","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/GiftAsk/CustomFields","description":"<p>Will return all enabled custom fields available for the Gift Ask object.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","GiftAsk","CustomFields"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"48362240-a411-4aaa-89a5-283e6109b547","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/GiftAsk/CustomFields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"dataType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"displayName\": \"<string>\",\n\t\t\"options\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t},\n\t{\n\t\t\"dataType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"displayName\": \"<string>\",\n\t\t\"options\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t}\n]"}],"_postman_id":"5a5f1e40-ac23-4739-89f5-c469451ed692"},{"name":"Get Gift Ask Query Options","id":"f56f8c64-828c-42b8-b5aa-650f093bee47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/GiftAsk/QueryOptions","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","GiftAsk","QueryOptions"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"a4a85763-8457-41b5-a735-7a0dbda9495f","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/GiftAsk/QueryOptions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"options\": [\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t}\n\t],\n\t\"operatorOptions\": [\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t},\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t}\n\t]\n}"}],"_postman_id":"f56f8c64-828c-42b8-b5aa-650f093bee47"},{"name":"Query Gift Asks","id":"d3446150-75b5-4bfc-a9b2-7a964d45dfd9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"groups\": [\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string:required>\",\n                    \"operator\": \"<string:required>\",\n                    \"value\": \"<string:optional>\",\n                    \"secondaryValue\": \"<string:optional>\",\n                    \"values\": [\n                        \"<string:optional>\",\n                        \"<string:optional>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string:required>\",\n                    \"operator\": \"<string:required>\",\n                    \"value\": \"<string:optional>\",\n                    \"secondaryValue\": \"<string:optional>\",\n                    \"values\": [\n                        \"<string:optional>\",\n                        \"<string:optional>\"\n                    ]\n                }\n            ]\n        }\n    ],\n    \"sortBy\": \"<string:optional:default=id>\",\n    \"descending\": \"<boolean:optional:default=false>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/GiftAsk/Query?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","GiftAsk","Query"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10. Max is 1000.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"7334640d-2c9b-4bd2-8938-419d66ae9247","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/GiftAsk/Query?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","GiftAsk","Query"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"giftAskUrl\": \"<string>\",\n\t\t\t\"giftsAppliedUrl\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"askAmount\": \"<double>\",\n\t\t\t\"askAmountFormatted\": \"<string>\",\n\t\t\t\"askDate\": \"<dateTime>\",\n\t\t\t\"askDateFormatted\": \"<string>\",\n\t\t\t\"expectedFulfillmentDate\": \"<dateTime>\",\n\t\t\t\"expectedFulfillmentDateFormatted\": \"<string>\",\n\t\t\t\"notes\": \"<string>\",\n\t\t\t\"askType\": \"<string>\",\n\t\t\t\"frequency\": \"<string>\",\n\t\t\t\"declined\": \"<boolean>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"segmentId\": \"<integer>\",\n\t\t\t\"segment\": \"<string>\",\n\t\t\t\"segmentCode\": \"<string>\",\n\t\t\t\"segmentUrl\": \"<string>\",\n\t\t\t\"assignedUserId\": \"<integer>\",\n\t\t\t\"assignedUser\": \"<string>\",\n            \"secondaryAssignedUser\": \"string\",\n            \"secondaryAssignedUserId\": 0,\n\t\t\t\"status\": \"<string>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"giftAskUrl\": \"<string>\",\n\t\t\t\"giftsAppliedUrl\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"askAmount\": \"<double>\",\n\t\t\t\"askAmountFormatted\": \"<string>\",\n\t\t\t\"askDate\": \"<dateTime>\",\n\t\t\t\"askDateFormatted\": \"<string>\",\n\t\t\t\"expectedFulfillmentDate\": \"<dateTime>\",\n\t\t\t\"expectedFulfillmentDateFormatted\": \"<string>\",\n\t\t\t\"notes\": \"<string>\",\n\t\t\t\"askType\": \"<string>\",\n\t\t\t\"frequency\": \"<string>\",\n\t\t\t\"declined\": \"<boolean>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"segmentId\": \"<integer>\",\n\t\t\t\"segment\": \"<string>\",\n\t\t\t\"segmentCode\": \"<string>\",\n\t\t\t\"segmentUrl\": \"<string>\",\n\t\t\t\"assignedUserId\": \"<integer>\",\n\t\t\t\"assignedUser\": \"<string>\",\n            \"secondaryAssignedUser\": \"string\",\n            \"secondaryAssignedUserId\": 0,\n\t\t\t\"status\": \"<string>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"},{"id":"d79411e5-bcac-4c43-b3a4-27c66a206dcb","name":"BadRequest","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/GiftAsk/Query?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","GiftAsk","Query"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d3446150-75b5-4bfc-a9b2-7a964d45dfd9"}],"id":"dda7b7c0-5ae9-4f36-bb4d-b82eb4c9fdec","_postman_id":"dda7b7c0-5ae9-4f36-bb4d-b82eb4c9fdec","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Planned Gifts","item":[{"name":"Get Planned Gifts for a Contact","id":"64279bdc-a7ad-41d3-a7f4-56398958ea5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/PlannedGift/ByContact/:contactId?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","PlannedGift","ByContact",":contactId"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) The contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactId"}]}},"response":[{"id":"e7a0087b-f042-4766-a0f9-5eadd967f2f8","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/PlannedGift/ByContact/:contactId?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","PlannedGift","ByContact",":contactId"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"plannedGiftUrl\": \"<string>\",\n\t\t\t\"giftsAppliedUrl\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"plannedGiftDate\": \"<string>\",\n\t\t\t\"pkannedGiftType\": \"<string>\",\n\t\t\t\"frequency\": \"<string>\",\n\t\t\t\"anticipatedAmount\": \"<string>\",\n\t\t\t\"anticipatedStartDate\": \"<string>\",\n\t\t\t\"numberOfOccurrences\": \"<integer>\",\n\t\t\t\"currentValue\": \"<string>\",\n\t\t\t\"fulfilled\": \"<string>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"segmentId\": \"<integer>\",\n\t\t\t\"segment\": \"<string>\",\n\t\t\t\"segmentUrl\": \"<string>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"plannedGiftUrl\": \"<string>\",\n\t\t\t\"giftsAppliedUrl\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"plannedGiftDate\": \"<string>\",\n\t\t\t\"pkannedGiftType\": \"<string>\",\n\t\t\t\"frequency\": \"<string>\",\n\t\t\t\"anticipatedAmount\": \"<string>\",\n\t\t\t\"anticipatedStartDate\": \"<string>\",\n\t\t\t\"numberOfOccurrences\": \"<integer>\",\n\t\t\t\"currentValue\": \"<string>\",\n\t\t\t\"fulfilled\": \"<string>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"segmentId\": \"<integer>\",\n\t\t\t\"segment\": \"<string>\",\n\t\t\t\"segmentUrl\": \"<string>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"64279bdc-a7ad-41d3-a7f4-56398958ea5f"},{"name":"Get Planned Gift","id":"0e3d3318-6cf2-454f-8c54-df18bf87906a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/PlannedGift/:plannedGiftId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","PlannedGift",":plannedGiftId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The planned gift identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"plannedGiftId"}]}},"response":[{"id":"c3dec7b0-387c-40ce-9056-96831b291733","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/PlannedGift/:plannedGiftId","host":["https://api.virtuoussoftware.com"],"path":["api","PlannedGift",":plannedGiftId"],"variable":[{"key":"plannedGiftId","value":"<integer>","description":"(Required) The planned gift identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"plannedGiftUrl\": \"<string>\",\n\t\"giftsAppliedUrl\": \"<string>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactUrl\": \"<string>\",\n\t\"plannedGiftDate\": \"<string>\",\n\t\"pkannedGiftType\": \"<string>\",\n\t\"frequency\": \"<string>\",\n\t\"anticipatedAmount\": \"<string>\",\n\t\"anticipatedStartDate\": \"<string>\",\n\t\"numberOfOccurrences\": \"<integer>\",\n\t\"currentValue\": \"<string>\",\n\t\"fulfilled\": \"<string>\",\n\t\"projectId\": \"<integer>\",\n\t\"project\": \"<string>\",\n\t\"projectUrl\": \"<string>\",\n\t\"segmentId\": \"<integer>\",\n\t\"segment\": \"<string>\",\n\t\"segmentUrl\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"18422a36-3729-4e82-ae89-03579d20ef81","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/PlannedGift/:plannedGiftId","host":["https://api.virtuoussoftware.com"],"path":["api","PlannedGift",":plannedGiftId"],"variable":[{"key":"plannedGiftId","value":"<integer>","description":"(Required) The planned gift identifier."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"0e3d3318-6cf2-454f-8c54-df18bf87906a"},{"name":"Get Gifts Applied to a Planned Gift","id":"474f05d0-4df0-4842-8eca-e3f6e826433c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/PlannedGift/:plannedGiftId/Gifts","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","PlannedGift",":plannedGiftId","Gifts"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The planned gift identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"plannedGiftId"}]}},"response":[{"id":"be252d9c-732b-474c-93f9-c6c45379521b","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/PlannedGift/:plannedGiftId/Gifts","host":["https://api.virtuoussoftware.com"],"path":["api","PlannedGift",":plannedGiftId","Gifts"],"variable":[{"key":"plannedGiftId","value":"<integer>","description":"(Required) The planned gift identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"id\": \"<integer>\",\n\t\t\"transactionSource\": \"<string>\",\n\t\t\"transactionId\": \"<string>\",\n\t\t\"contactId\": \"<integer>\",\n\t\t\"contactName\": \"<string>\",\n\t\t\"contactUrl\": \"<string>\",\n\t\t\"giftType\": \"<string>\",\n\t\t\"giftTypeFormatted\": \"<string>\",\n\t\t\"giftDate\": \"<dateTime>\",\n\t\t\"giftDateFormatted\": \"<string>\",\n\t\t\"amount\": \"<double>\",\n\t\t\"amountFormatted\": \"<string>\",\n        \"currencyCode\": \"<string>\",\n        \"exchangeRate\": \"<decimal>\",\n        \"baseCurrencyCode\": \"<string>\",\n\t\t\"batch\": \"<string>\",\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\",\n\t\t\"segmentId\": \"<integer>\",\n\t\t\"segment\": \"<string>\",\n\t\t\"segmentCode\": \"<string>\",\n\t\t\"segmentUrl\": \"<string>\",\n\t\t\"mediaOutletId\": \"<integer>\",\n\t\t\"mediaOutlet\": \"<string>\",\n\t\t\"grantId\": \"<integer>\",\n\t\t\"grant\": \"<string>\",\n\t\t\"grantUrl\": \"<string>\",\n\t\t\"notes\": \"<string>\",\n\t\t\"tribute\": \"<string>\",\n\t\t\"tributeId\": \"<integer>\",\n\t\t\"tributeType\": \"<string>\",\n\t\t\"acknowledgeeIndividualId\": \"<integer>\",\n\t\t\"receiptDate\": \"<dateTime>\",\n\t\t\"receiptDateFormatted\": \"<string>\",\n\t\t\"contactPassthroughId\": \"<integer>\",\n\t\t\"contactPassthroughUrl\": \"<string>\",\n\t\t\"contactIndividualId\": \"<integer>\",\n\t\t\"cashAccountingCode\": \"<string>\",\n\t\t\"giftAskId\": \"<integer>\",\n\t\t\"contactMembershipId\": \"<integer>\",\n\t\t\"giftDesignations\": [\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\t\"project\": \"<string>\",\n\t\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\t\"projectType\": \"<string>\",\n\t\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\t\"display\": \"<string>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\t\"project\": \"<string>\",\n\t\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\t\"projectType\": \"<string>\",\n\t\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\t\"display\": \"<string>\"\n\t\t\t}\n\t\t],\n\t\t\"giftPremiums\": [\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"premiumId\": \"<integer>\",\n\t\t\t\t\"premium\": \"<string>\",\n\t\t\t\t\"premiumUrl\": \"<string>\",\n\t\t\t\t\"quantity\": \"<integer>\",\n\t\t\t\t\"display\": \"<string>\",\n                \"createDateTimeUtc\": \"<dateTime>\",\n                \"createdByUser\": \"<string>\",\n                \"modifiedDateTimeUtc\": \"<dateTime>\",\n                \"modifiedByUser\": \"<string>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"premiumId\": \"<integer>\",\n\t\t\t\t\"premium\": \"<string>\",\n\t\t\t\t\"premiumUrl\": \"<string>\",\n\t\t\t\t\"quantity\": \"<integer>\",\n\t\t\t\t\"display\": \"<string>\",\n                \"createDateTimeUtc\": \"<dateTime>\",\n                \"createdByUser\": \"<string>\",\n                \"modifiedDateTimeUtc\": \"<dateTime>\",\n                \"modifiedByUser\": \"<string>\"\n\t\t\t}\n\t\t],\n\t\t\"pledgePayments\": [\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\t\"actualAmount\": \"<double>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\t\"actualAmount\": \"<double>\"\n\t\t\t}\n\t\t],\n\t\t\"recurringGiftPayments\": [\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"gift\": {\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\t\t\"amount\": \"<double>\"\n\t\t\t\t},\n\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"dismissPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"fulfillPaymentDate\": \"<dateTime>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"gift\": {\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\t\t\"amount\": \"<double>\"\n\t\t\t\t},\n\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"dismissPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"fulfillPaymentDate\": \"<dateTime>\"\n\t\t\t}\n\t\t],\n\t\t\"giftUrl\": \"<string>\",\n\t\t\"isPrivate\": \"<boolean>\",\n\t\t\"isTaxDeductible\": \"<boolean>\",\n\t\t\"customFields\": [\n\t\t\t{\n\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"id\": \"<integer>\",\n\t\t\"transactionSource\": \"<string>\",\n\t\t\"transactionId\": \"<string>\",\n\t\t\"contactId\": \"<integer>\",\n\t\t\"contactName\": \"<string>\",\n\t\t\"contactUrl\": \"<string>\",\n\t\t\"giftType\": \"<string>\",\n\t\t\"giftTypeFormatted\": \"<string>\",\n\t\t\"giftDate\": \"<dateTime>\",\n\t\t\"giftDateFormatted\": \"<string>\",\n\t\t\"amount\": \"<double>\",\n\t\t\"amountFormatted\": \"<string>\",\n        \"currencyCode\": \"<string>\",\n        \"exchangeRate\": \"<decimal>\",\n        \"baseCurrencyCode\": \"<string>\",\n\t\t\"batch\": \"<string>\",\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\",\n\t\t\"segmentId\": \"<integer>\",\n\t\t\"segment\": \"<string>\",\n\t\t\"segmentCode\": \"<string>\",\n\t\t\"segmentUrl\": \"<string>\",\n\t\t\"mediaOutletId\": \"<integer>\",\n\t\t\"mediaOutlet\": \"<string>\",\n\t\t\"grantId\": \"<integer>\",\n\t\t\"grant\": \"<string>\",\n\t\t\"grantUrl\": \"<string>\",\n\t\t\"notes\": \"<string>\",\n\t\t\"tribute\": \"<string>\",\n\t\t\"tributeId\": \"<integer>\",\n\t\t\"tributeType\": \"<string>\",\n\t\t\"acknowledgeeIndividualId\": \"<integer>\",\n\t\t\"receiptDate\": \"<dateTime>\",\n\t\t\"receiptDateFormatted\": \"<string>\",\n\t\t\"contactPassthroughId\": \"<integer>\",\n\t\t\"contactPassthroughUrl\": \"<string>\",\n\t\t\"contactIndividualId\": \"<integer>\",\n\t\t\"cashAccountingCode\": \"<string>\",\n\t\t\"giftAskId\": \"<integer>\",\n\t\t\"contactMembershipId\": \"<integer>\",\n\t\t\"giftDesignations\": [\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\t\"project\": \"<string>\",\n\t\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\t\"projectType\": \"<string>\",\n\t\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\t\"display\": \"<string>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\t\"project\": \"<string>\",\n\t\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\t\"projectType\": \"<string>\",\n\t\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\t\"display\": \"<string>\"\n\t\t\t}\n\t\t],\n\t\t\"giftPremiums\": [\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"premiumId\": \"<integer>\",\n\t\t\t\t\"premium\": \"<string>\",\n\t\t\t\t\"premiumUrl\": \"<string>\",\n\t\t\t\t\"quantity\": \"<integer>\",\n\t\t\t\t\"display\": \"<string>\",\n                \"createDateTimeUtc\": \"<dateTime>\",\n                \"createdByUser\": \"<string>\",\n                \"modifiedDateTimeUtc\": \"<dateTime>\",\n                \"modifiedByUser\": \"<string>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"premiumId\": \"<integer>\",\n\t\t\t\t\"premium\": \"<string>\",\n\t\t\t\t\"premiumUrl\": \"<string>\",\n\t\t\t\t\"quantity\": \"<integer>\",\n\t\t\t\t\"display\": \"<string>\",\n                \"createDateTimeUtc\": \"<dateTime>\",\n                \"createdByUser\": \"<string>\",\n                \"modifiedDateTimeUtc\": \"<dateTime>\",\n                \"modifiedByUser\": \"<string>\"\n\t\t\t}\n\t\t],\n\t\t\"pledgePayments\": [\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\t\"actualAmount\": \"<double>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\t\"actualAmount\": \"<double>\"\n\t\t\t}\n\t\t],\n\t\t\"recurringGiftPayments\": [\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"gift\": {\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\t\t\"amount\": \"<double>\"\n\t\t\t\t},\n\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"dismissPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"fulfillPaymentDate\": \"<dateTime>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"gift\": {\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\t\t\"amount\": \"<double>\"\n\t\t\t\t},\n\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"dismissPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"fulfillPaymentDate\": \"<dateTime>\"\n\t\t\t}\n\t\t],\n\t\t\"giftUrl\": \"<string>\",\n\t\t\"isPrivate\": \"<boolean>\",\n\t\t\"isTaxDeductible\": \"<boolean>\",\n\t\t\"customFields\": [\n\t\t\t{\n\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t}\n\t\t]\n\t}\n]"},{"id":"37543aae-28ce-4cd3-b154-1573187a0299","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/PlannedGift/:plannedGiftId/Gifts","host":["https://api.virtuoussoftware.com"],"path":["api","PlannedGift",":plannedGiftId","Gifts"],"variable":[{"key":"plannedGiftId","value":"<integer>","description":"(Required) The planned gift identifier."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"474f05d0-4df0-4842-8eca-e3f6e826433c"},{"name":"Create a Planned Gift","id":"89589b0b-90a1-4110-be58-287b52d5ae9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer>\",\n    \"plannedGiftDate\": \"<dateTime>\",\n    \"plannedGiftType\": \"<string>\",\n    \"frequency\": \"Once|Monthly|Quarterly|Semiannually|Annually|Biennially\",\n    \"anticipatedAmount\": \"<double>\",\n    \"anticipatedStartDate\": \"<dateTime>\",\n    \"numberOfOccurrences\": \"<integer>\",\n    \"currentValue\": \"<double>\",\n    \"contactIndividualId\": \"<integer>\",\n    \"assignedUserId\": \"<integer>\",\n    \"projectId\": \"<integer>\",\n    \"segmentId\": \"<integer>\",\n    \"thankYouDate\": \"<dateTime>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/PlannedGift","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","PlannedGift"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"29358c08-fdf7-48a1-8198-ccd781276bc5","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer>\",\n    \"plannedGiftDate\": \"<dateTime>\",\n    \"plannedGiftType\": \"<string>\",\n    \"frequency\": \"<string>\",\n    \"anticipatedAmount\": \"<double>\",\n    \"anticipatedStartDate\": \"<dateTime>\",\n    \"numberOfOccurrences\": \"<integer>\",\n    \"currentValue\": \"<double>\",\n    \"contactIndividualId\": \"<integer>\",\n    \"assignedUserId\": \"<integer>\",\n    \"projectId\": \"<integer>\",\n    \"segmentId\": \"<integer>\",\n    \"thankYouDate\": \"<dateTime>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/PlannedGift"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"plannedGiftUrl\": \"<string>\",\n\t\"giftsAppliedUrl\": \"<string>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactUrl\": \"<string>\",\n\t\"plannedGiftDate\": \"<string>\",\n\t\"pkannedGiftType\": \"<string>\",\n\t\"frequency\": \"<string>\",\n\t\"anticipatedAmount\": \"<string>\",\n\t\"anticipatedStartDate\": \"<string>\",\n\t\"numberOfOccurrences\": \"<integer>\",\n\t\"currentValue\": \"<string>\",\n\t\"fulfilled\": \"<string>\",\n\t\"projectId\": \"<integer>\",\n\t\"project\": \"<string>\",\n\t\"projectUrl\": \"<string>\",\n\t\"segmentId\": \"<integer>\",\n\t\"segment\": \"<string>\",\n\t\"segmentUrl\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"c6da47fa-d691-4a2b-ab2a-1157cc25a3e1","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer>\",\n    \"plannedGiftDate\": \"<dateTime>\",\n    \"plannedGiftType\": \"<string>\",\n    \"frequency\": \"<string>\",\n    \"anticipatedAmount\": \"<double>\",\n    \"anticipatedStartDate\": \"<dateTime>\",\n    \"numberOfOccurrences\": \"<integer>\",\n    \"currentValue\": \"<double>\",\n    \"contactIndividualId\": \"<integer>\",\n    \"assignedUserId\": \"<integer>\",\n    \"projectId\": \"<integer>\",\n    \"segmentId\": \"<integer>\",\n    \"thankYouDate\": \"<dateTime>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/PlannedGift"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"89589b0b-90a1-4110-be58-287b52d5ae9e"},{"name":"Update a Planned Gift","id":"f789ed15-031c-4849-85ba-1c90e43343e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"plannedGiftDate\": \"<dateTime>\",\n    \"plannedGiftType\": \"<string>\",\n    \"frequency\": \"Once|Monthly|Quarterly|Semiannually|Annually|Biennially\",\n    \"anticipatedAmount\": \"<double>\",\n    \"anticipatedStartDate\": \"<dateTime>\",\n    \"numberOfOccurrences\": \"<integer>\",\n    \"currentValue\": \"<double>\",\n    \"contactIndividualId\": \"<integer>\",\n    \"assignedUserId\": \"<integer>\",\n    \"projectId\": \"<integer>\",\n    \"segmentId\": \"<integer>\",\n    \"thankYouDate\": \"<dateTime>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/PlannedGift/:plannedGiftId","description":"<p>Similar to other update methods in the API, excluding a property will remove it's value from the object. \nIf you're only updating a single property, the entire model is still required.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","PlannedGift",":plannedGiftId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The planned gift identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"plannedGiftId"}]}},"response":[{"id":"a98173db-f228-44e7-ad57-2a7b3f5130d3","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"plannedGiftDate\": \"<dateTime>\",\n    \"plannedGiftType\": \"<string>\",\n    \"frequency\": \"<string>\",\n    \"anticipatedAmount\": \"<double>\",\n    \"anticipatedStartDate\": \"<dateTime>\",\n    \"numberOfOccurrences\": \"<integer>\",\n    \"currentValue\": \"<double>\",\n    \"contactIndividualId\": \"<integer>\",\n    \"assignedUserId\": \"<integer>\",\n    \"projectId\": \"<integer>\",\n    \"segmentId\": \"<integer>\",\n    \"thankYouDate\": \"<dateTime>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/PlannedGift/:plannedGiftId","host":["https://api.virtuoussoftware.com"],"path":["api","PlannedGift",":plannedGiftId"],"variable":[{"key":"plannedGiftId","value":"<integer>","description":"(Required) The planned gift identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"plannedGiftUrl\": \"<string>\",\n\t\"giftsAppliedUrl\": \"<string>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactUrl\": \"<string>\",\n\t\"plannedGiftDate\": \"<string>\",\n\t\"pkannedGiftType\": \"<string>\",\n\t\"frequency\": \"<string>\",\n\t\"anticipatedAmount\": \"<string>\",\n\t\"anticipatedStartDate\": \"<string>\",\n\t\"numberOfOccurrences\": \"<integer>\",\n\t\"currentValue\": \"<string>\",\n\t\"fulfilled\": \"<string>\",\n\t\"projectId\": \"<integer>\",\n\t\"project\": \"<string>\",\n\t\"projectUrl\": \"<string>\",\n\t\"segmentId\": \"<integer>\",\n\t\"segment\": \"<string>\",\n\t\"segmentUrl\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"feb6aecd-9497-49fe-a8c3-ec568433fa67","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"plannedGiftDate\": \"<dateTime>\",\n    \"plannedGiftType\": \"<string>\",\n    \"frequency\": \"<string>\",\n    \"anticipatedAmount\": \"<double>\",\n    \"anticipatedStartDate\": \"<dateTime>\",\n    \"numberOfOccurrences\": \"<integer>\",\n    \"currentValue\": \"<double>\",\n    \"contactIndividualId\": \"<integer>\",\n    \"assignedUserId\": \"<integer>\",\n    \"projectId\": \"<integer>\",\n    \"segmentId\": \"<integer>\",\n    \"thankYouDate\": \"<dateTime>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/PlannedGift/:plannedGiftId","host":["https://api.virtuoussoftware.com"],"path":["api","PlannedGift",":plannedGiftId"],"variable":[{"key":"plannedGiftId","value":"<integer>","description":"(Required) The planned gift identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"f789ed15-031c-4849-85ba-1c90e43343e7"},{"name":"Get Planned Gift Custom Fields Available","id":"ae63530d-f44e-43a3-b014-3d5887381723","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/PlannedGift/CustomFields","description":"<p>Will return all enabled custom fields available for the Planned Gift object.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","PlannedGift","CustomFields"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"f41a0023-a484-4ec5-9923-64fb8dfc7cbf","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/PlannedGift/CustomFields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"dataType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"displayName\": \"<string>\",\n\t\t\"options\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t},\n\t{\n\t\t\"dataType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"displayName\": \"<string>\",\n\t\t\"options\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t}\n]"}],"_postman_id":"ae63530d-f44e-43a3-b014-3d5887381723"},{"name":"Get Planned Gift Query Options","id":"5e8a7cbf-b868-4c70-82a7-1a5695884355","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/PlannedGift/QueryOptions","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","PlannedGift","QueryOptions"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"045e8edd-5b5f-469b-b703-9feadf52d1b8","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/PlannedGift/QueryOptions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"options\": [\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t}\n\t],\n\t\"operatorOptions\": [\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t},\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t}\n\t]\n}"}],"_postman_id":"5e8a7cbf-b868-4c70-82a7-1a5695884355"},{"name":"Query Planned Gifts","id":"3ea34f6e-61b3-4a8e-a6db-1f6de672d9fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"groups\": [\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        }\n    ],\n    \"sortBy\": \"<string>\",\n    \"descending\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/PlannedGift/Query?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","PlannedGift","Query"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10. Max is 1000.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"92b39e91-8f44-4129-8746-677dbb32da84","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/PlannedGift/Query?skip=<integer>&take=<integer>","protocol":"https","host":["api","virtuoussoftware","com"],"path":["api","PlannedGift","Query"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"plannedGiftUrl\": \"<string>\",\n\t\t\t\"giftsAppliedUrl\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"plannedGiftDate\": \"<string>\",\n\t\t\t\"pkannedGiftType\": \"<string>\",\n\t\t\t\"frequency\": \"<string>\",\n\t\t\t\"anticipatedAmount\": \"<string>\",\n\t\t\t\"anticipatedStartDate\": \"<string>\",\n\t\t\t\"numberOfOccurrences\": \"<integer>\",\n\t\t\t\"currentValue\": \"<string>\",\n\t\t\t\"fulfilled\": \"<string>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"segmentId\": \"<integer>\",\n\t\t\t\"segment\": \"<string>\",\n\t\t\t\"segmentUrl\": \"<string>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"plannedGiftUrl\": \"<string>\",\n\t\t\t\"giftsAppliedUrl\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"plannedGiftDate\": \"<string>\",\n\t\t\t\"pkannedGiftType\": \"<string>\",\n\t\t\t\"frequency\": \"<string>\",\n\t\t\t\"anticipatedAmount\": \"<string>\",\n\t\t\t\"anticipatedStartDate\": \"<string>\",\n\t\t\t\"numberOfOccurrences\": \"<integer>\",\n\t\t\t\"currentValue\": \"<string>\",\n\t\t\t\"fulfilled\": \"<string>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"segmentId\": \"<integer>\",\n\t\t\t\"segment\": \"<string>\",\n\t\t\t\"segmentUrl\": \"<string>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"},{"id":"45adf0ab-707c-4f4c-ad7f-251d0229654d","name":"BadRequest","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/PlannedGift/Query?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","PlannedGift","Query"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3ea34f6e-61b3-4a8e-a6db-1f6de672d9fc"}],"id":"5e786d22-be36-45cc-9e47-af3d114ba973","_postman_id":"5e786d22-be36-45cc-9e47-af3d114ba973","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Pledges","item":[{"name":"Get Pledges for a Contact","id":"8dc1a4ee-ec17-41c5-9cf9-1c676eb57d6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/v2/Pledge/ByContact/:contactId?sortBy=<string>&descending=<boolean>&skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","v2","Pledge","ByContact",":contactId"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The field to be sorted. Supported: Id, PledgeDate, AmountPledged, CreatedDateTime.</p>\n","type":"text/plain"},"key":"sortBy","value":"<string>"},{"description":{"content":"<p>The direction to be sorted.</p>\n","type":"text/plain"},"key":"descending","value":"<boolean>"},{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) The contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactId"}]}},"response":[{"id":"16f7db37-143b-4786-95df-99dc69b1c204","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/v2/Pledge/ByContact/:contactId?sortBy=<string>&descending=<boolean>&skip=<integer>&take=<integer>","protocol":"https","host":["api","virtuoussoftware","com"],"path":["api","v2","Pledge","ByContact",":contactId"],"query":[{"key":"sortBy","value":"<string>"},{"key":"descending","value":"<boolean>"},{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"amountPledged\": \"<double>\",\n\t\t\t\"frequency\": \"<string>\",\n\t\t\t\"pledgeDate\": \"<dateTime>\",\n\t\t\t\"expectedFulfillmentDate\": \"<dateTime>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"segmentId\": \"<integer>\",\n\t\t\t\"segment\": \"<string>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"isPrivate\": \"<boolean>\",\n\t\t\t\"status\": \"<string>\",\n\t\t\t\"payments\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\t\t\"actualAmount\": \"<double>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\t\t\"actualAmount\": \"<double>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"amountPledged\": \"<double>\",\n\t\t\t\"frequency\": \"<string>\",\n\t\t\t\"pledgeDate\": \"<dateTime>\",\n\t\t\t\"expectedFulfillmentDate\": \"<dateTime>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"segmentId\": \"<integer>\",\n\t\t\t\"segment\": \"<string>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"isPrivate\": \"<boolean>\",\n\t\t\t\"status\": \"<string>\",\n\t\t\t\"payments\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\t\t\"actualAmount\": \"<double>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\t\t\"actualAmount\": \"<double>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"8dc1a4ee-ec17-41c5-9cf9-1c676eb57d6b"},{"name":"Get Pledge","id":"6f411bb7-6aff-4957-ae3c-16514b22e4e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/v2/Pledge/:pledgeId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","v2","Pledge",":pledgeId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The pledge identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"pledgeId"}]}},"response":[{"id":"6af2f943-e248-45e9-87a9-cabc3c04beab","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/v2/Pledge/:pledgeId","protocol":"https","host":["api","virtuoussoftware","com"],"path":["api","v2","Pledge",":pledgeId"],"variable":[{"key":"pledgeId","value":"<integer>","description":"(Required) The pledge identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"contactId\": \"<integer>\",\n\t\"amountPledged\": \"<double>\",\n\t\"frequency\": \"<string>\",\n\t\"pledgeDate\": \"<dateTime>\",\n\t\"expectedFulfillmentDate\": \"<dateTime>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"segmentId\": \"<integer>\",\n\t\"segment\": \"<string>\",\n\t\"projectId\": \"<integer>\",\n\t\"project\": \"<string>\",\n\t\"isPrivate\": \"<boolean>\",\n\t\"status\": \"<string>\",\n\t\"payments\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\"actualAmount\": \"<double>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\"actualAmount\": \"<double>\"\n\t\t}\n\t],\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"b724ae9e-06c3-4473-b545-2ec2a2d71831","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/v2/Pledge/:pledgeId","host":["https://api.virtuoussoftware.com"],"path":["api","v2","Pledge",":pledgeId"],"variable":[{"key":"pledgeId","value":"<integer>","description":"(Required) The pledge identifier."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"6f411bb7-6aff-4957-ae3c-16514b22e4e6"},{"name":"Create a Pledge","id":"292ce2f5-37a3-4a36-a03f-74c0a10c1770","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer:required>\",\n    \"amountPledged\": \"<double:required>\",\n    \"frequency\": \"<string:Once|Weekly|Monthly|Quarterly|Semiannually|Annually|Biennially|Custom:required>\",\n    \"pledgeDate\": \"<dateTime:required>\",\n    \"expectedFulfillmentDate\": \"<dateTime:required>\",\n    \"giftAskId\": \"<integer:optional>\",\n    \"segmentId\": \"<integer:optional>\",\n    \"projectId\": \"<integer:optional>\",\n    \"isPrivate\": \"<boolean:required>\",\n    \"payments\": [\n        {\n            \"expectedPaymentDate\": \"<dateTime:required>\",\n            \"expectedAmount\": \"<double:required>\"\n        },\n        {\n            \"expectedPaymentDate\": \"<dateTime:required>\",\n            \"expectedAmount\": \"<double:required>\"\n        }\n    ],\n    \"customFields\": [\n        {\n            \"name\": \"<string:required>\",\n            \"value\": \"<string:optional>\"\n        },\n        {\n            \"name\": \"<string:required>\",\n            \"value\": \"<string:optional>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/v2/Pledge","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","v2","Pledge"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"5c5e5ebe-b5bb-40f9-a7fd-6953714c0dc0","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer>\",\n    \"amountPledged\": \"<double>\",\n    \"frequency\": \"<string>\",\n    \"pledgeDate\": \"<dateTime>\",\n    \"expectedFulfillmentDate\": \"<dateTime>\",\n    \"segmentId\": \"<integer>\",\n    \"projectId\": \"<integer>\",\n    \"isPrivate\": \"<boolean>\",\n    \"payments\": [\n        {\n            \"expectedPaymentDate\": \"<dateTime>\",\n            \"expectedAmount\": \"<double>\"\n        },\n        {\n            \"expectedPaymentDate\": \"<dateTime>\",\n            \"expectedAmount\": \"<double>\"\n        }\n    ],\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/PledgeV2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"contactId\": \"<integer>\",\n\t\"amountPledged\": \"<double>\",\n\t\"frequency\": \"<string>\",\n\t\"pledgeDate\": \"<dateTime>\",\n\t\"expectedFulfillmentDate\": \"<dateTime>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"segmentId\": \"<integer>\",\n\t\"segment\": \"<string>\",\n\t\"projectId\": \"<integer>\",\n\t\"project\": \"<string>\",\n\t\"isPrivate\": \"<boolean>\",\n\t\"status\": \"<string>\",\n\t\"payments\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\"actualAmount\": \"<double>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\"actualAmount\": \"<double>\"\n\t\t}\n\t],\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"c7c0bd22-eff0-40d5-b2a7-12db4f84013a","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer>\",\n    \"amountPledged\": \"<double>\",\n    \"frequency\": \"<string>\",\n    \"pledgeDate\": \"<dateTime>\",\n    \"expectedFulfillmentDate\": \"<dateTime>\",\n    \"segmentId\": \"<integer>\",\n    \"projectId\": \"<integer>\",\n    \"isPrivate\": \"<boolean>\",\n    \"payments\": [\n        {\n            \"expectedPaymentDate\": \"<dateTime>\",\n            \"expectedAmount\": \"<double>\"\n        },\n        {\n            \"expectedPaymentDate\": \"<dateTime>\",\n            \"expectedAmount\": \"<double>\"\n        }\n    ],\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/PledgeV2"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"292ce2f5-37a3-4a36-a03f-74c0a10c1770"},{"name":"Update a Pledge","id":"5ed2f2c5-74cb-43f1-af07-4e9b867c4f68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"amountPledged\": \"<double:required>\",\n    \"frequency\": \"<string:Once|Weekly|Monthly|Quarterly|Semiannually|Annually|Biennially|Custom:required>\",\n    \"pledgeDate\": \"<dateTime:required>\",\n    \"expectedFulfillmentDate\": \"<dateTime:required>\",\n    \"giftAskId\": \"<integer:optional>\",\n    \"segmentId\": \"<integer:optional>\",\n    \"projectId\": \"<integer:optional>\",\n    \"isPrivate\": \"<boolean:required>\",\n    \"payments\": [\n        {\n            \"expectedPaymentDate\": \"<dateTime:required>\",\n            \"expectedAmount\": \"<double:required>\"\n        },\n\t\t\t\t{\n            \"expectedPaymentDate\": \"<dateTime:required>\",\n            \"expectedAmount\": \"<double:required>\"\n        }\n    ],\n    \"customFields\": [\n        {\n            \"name\": \"<string:required>\",\n            \"value\": \"<string:optional>\"\n        },\n\t\t\t\t{\n            \"name\": \"<string:required>\",\n            \"value\": \"<string:optional>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/v2/Pledge/:pledgeId","description":"<p>Similar to other update methods in the API, excluding a property will remove it's value from the object. \nIf you're only updating a single property, the entire model is still required.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","v2","Pledge",":pledgeId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"pledgeId"}]}},"response":[{"id":"51028945-5214-454c-91bd-f1ff136010dc","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"amountPledged\": \"<double>\",\n    \"frequency\": \"<string>\",\n    \"pledgeDate\": \"<dateTime>\",\n    \"expectedFulfillmentDate\": \"<dateTime>\",\n    \"segmentId\": \"<integer>\",\n    \"projectId\": \"<integer>\",\n    \"isPrivate\": \"<boolean>\",\n    \"payments\": [\n        {\n            \"expectedPaymentDate\": \"<dateTime>\",\n            \"expectedAmount\": \"<double>\"\n        },\n        {\n            \"expectedPaymentDate\": \"<dateTime>\",\n            \"expectedAmount\": \"<double>\"\n        }\n    ],\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/v2/Pledge/:pledgeId","protocol":"https","host":["api","virtuoussoftware","com"],"path":["api","v2","Pledge",":pledgeId"],"variable":[{"key":"pledgeId","value":"<integer>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"contactId\": \"<integer>\",\n\t\"amountPledged\": \"<double>\",\n\t\"frequency\": \"<string>\",\n\t\"pledgeDate\": \"<dateTime>\",\n\t\"expectedFulfillmentDate\": \"<dateTime>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"segmentId\": \"<integer>\",\n\t\"segment\": \"<string>\",\n\t\"projectId\": \"<integer>\",\n\t\"project\": \"<string>\",\n\t\"isPrivate\": \"<boolean>\",\n\t\"status\": \"<string>\",\n\t\"payments\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\"actualAmount\": \"<double>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\"actualAmount\": \"<double>\"\n\t\t}\n\t],\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"cc58e6ed-ed49-410e-88ec-37286e9b54a3","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"amountPledged\": \"<double>\",\n    \"frequency\": \"<string>\",\n    \"pledgeDate\": \"<dateTime>\",\n    \"expectedFulfillmentDate\": \"<dateTime>\",\n    \"segmentId\": \"<integer>\",\n    \"projectId\": \"<integer>\",\n    \"isPrivate\": \"<boolean>\",\n    \"payments\": [\n        {\n            \"expectedPaymentDate\": \"<dateTime>\",\n            \"expectedAmount\": \"<double>\"\n        },\n        {\n            \"expectedPaymentDate\": \"<dateTime>\",\n            \"expectedAmount\": \"<double>\"\n        }\n    ],\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/v2/Pledge/:pledgeId","host":["https://api.virtuoussoftware.com"],"path":["api","v2","Pledge",":pledgeId"],"variable":[{"key":"pledgeId","value":"<integer>","description":"(Required) "}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"5ed2f2c5-74cb-43f1-af07-4e9b867c4f68"},{"name":"Write-off the Pledge","id":"d9c026b9-fd22-4bc2-b0eb-d49ed51e0168","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"reason\": \"<string:required:maxLength=100>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/v2/Pledge/WriteOff/:pledgeId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","v2","Pledge","WriteOff",":pledgeId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The pledge identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"pledgeId"}]}},"response":[{"id":"cf6e9e95-1dfc-455d-b431-28c2c4d51c5e","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"reason\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/v2/Pledge/WriteOff/:pledgeId","protocol":"https","host":["api","virtuoussoftware","com"],"path":["api","v2","Pledge","WriteOff",":pledgeId"],"variable":[{"key":"pledgeId","value":"<integer>","description":"(Required) The pledge identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"contactId\": \"<integer>\",\n\t\"amountPledged\": \"<double>\",\n\t\"frequency\": \"<string>\",\n\t\"pledgeDate\": \"<dateTime>\",\n\t\"expectedFulfillmentDate\": \"<dateTime>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"segmentId\": \"<integer>\",\n\t\"segment\": \"<string>\",\n\t\"projectId\": \"<integer>\",\n\t\"project\": \"<string>\",\n\t\"isPrivate\": \"<boolean>\",\n\t\"status\": \"<string>\",\n\t\"payments\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\"actualAmount\": \"<double>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\"actualAmount\": \"<double>\"\n\t\t}\n\t],\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"bd1c8ea3-e414-46e1-8ab1-d2763d3c4f81","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"reason\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/v2/Pledge/WriteOff/:pledgeId","host":["https://api.virtuoussoftware.com"],"path":["api","v2","Pledge","WriteOff",":pledgeId"],"variable":[{"key":"pledgeId","value":"<integer>","description":"(Required) The pledge identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d9c026b9-fd22-4bc2-b0eb-d49ed51e0168"},{"name":"Get Pledge Custom Fields Available","id":"e8300cd0-0df9-4db2-86f5-996fdb3dc207","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/v2/Pledge/CustomFields","description":"<p>Will return all enabled custom fields available for the Pledge object.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","v2","Pledge","CustomFields"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"db34ae1a-363a-4c02-98a4-8e96aefff4d0","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/v2/Pledge/CustomFields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"dataType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"displayName\": \"<string>\",\n\t\t\"options\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t},\n\t{\n\t\t\"dataType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"displayName\": \"<string>\",\n\t\t\"options\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t}\n]"}],"_postman_id":"e8300cd0-0df9-4db2-86f5-996fdb3dc207"},{"name":"Get Pledge Query Options","id":"069ed470-88c7-4c1d-881a-537c2578faad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/v2/Pledge/QueryOptions","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","v2","Pledge","QueryOptions"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"f0aae7a9-6fe7-4d92-a1c8-42fb6fcad087","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/v2/Pledge/QueryOptions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"options\": [\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t}\n\t],\n\t\"operatorOptions\": [\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t},\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t}\n\t]\n}"}],"_postman_id":"069ed470-88c7-4c1d-881a-537c2578faad"},{"name":"Query Pledges","id":"890f77ab-268c-4c40-b7b9-dd22d47cafe1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"groups\": [\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string:required>\",\n                    \"operator\": \"<string:required>\",\n                    \"value\": \"<string:optional>\",\n                    \"secondaryValue\": \"<string:optional>\",\n                    \"values\": [\n                        \"<string:optional>\",\n\t\t\t\t\t\t\t\t\t\t\t\t\"<string:optional>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string:required>\",\n                    \"operator\": \"<string:required>\",\n                    \"value\": \"<string:optional>\",\n                    \"secondaryValue\": \"<string:optional>\",\n                    \"values\": [\n                        \"<string:optional>\",\n\t\t\t\t\t\t\t\t\t\t\t\t\"<string:optional>\"\n                    ]\n                }\n            ]\n        }\n    ],\n    \"sortBy\": \"<string:optional:default=id>\",\n    \"descending\": \"<boolean:optional:default=false>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/v2/Pledge/Query?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","v2","Pledge","Query"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10. Max is 1000.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"79e32c1b-7896-415c-96bb-688db2db2f57","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/v2/Pledge/Query?skip=<integer>&take=<integer>","protocol":"https","host":["api","virtuoussoftware","com"],"path":["api","v2","Pledge","Query"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"amountPledged\": \"<double>\",\n\t\t\t\"frequency\": \"<string>\",\n\t\t\t\"pledgeDate\": \"<dateTime>\",\n\t\t\t\"expectedFulfillmentDate\": \"<dateTime>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"segmentId\": \"<integer>\",\n\t\t\t\"segment\": \"<string>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"isPrivate\": \"<boolean>\",\n\t\t\t\"status\": \"<string>\",\n\t\t\t\"payments\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\t\t\"actualAmount\": \"<double>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\t\t\"actualAmount\": \"<double>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"amountPledged\": \"<double>\",\n\t\t\t\"frequency\": \"<string>\",\n\t\t\t\"pledgeDate\": \"<dateTime>\",\n\t\t\t\"expectedFulfillmentDate\": \"<dateTime>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"segmentId\": \"<integer>\",\n\t\t\t\"segment\": \"<string>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"isPrivate\": \"<boolean>\",\n\t\t\t\"status\": \"<string>\",\n\t\t\t\"payments\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\t\t\"actualAmount\": \"<double>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\t\t\"actualAmount\": \"<double>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"890f77ab-268c-4c40-b7b9-dd22d47cafe1"}],"id":"8eabe83f-ae8b-4478-a63d-4ed78bf18bfa","description":"<p>A pledge represents a commitment from a donor to give a specific sum of money over a set period of time. For example, a donor may pledge to give you $50,000 over the next five years. As part of this commitment, they may agree to make annual payments of $10,000 each, or maybe they will send checks of $2,500 once per quarter. In some cases, their pledge agreement may include a custom schedule of payments or even conditions that must be met before their pledge can be fulfilled.</p>\n","_postman_id":"8eabe83f-ae8b-4478-a63d-4ed78bf18bfa","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Premiums","item":[{"name":"Get Premium","id":"bc783f7e-9ea8-4720-8923-23f9dcc5e6a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Premium/:premiumId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Premium",":premiumId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The premium Id.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"premiumId"}]}},"response":[{"id":"1d3cbfd6-3f80-492f-a736-0d55067cb6c6","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Premium/:premiumId","protocol":"https","host":["api","virtuoussoftware","com"],"path":["api","Premium",":premiumId"],"variable":[{"key":"premiumId","value":"<integer>","description":"(Required) The premium Id."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"name\": \"<string>\",\n\t\"code\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"price\": \"<double>\",\n\t\"fairMarketValue\": \"<double>\",\n\t\"cost\": \"<double>\",\n\t\"inventoryCount\": \"<integer>\",\n\t\"isActive\": \"<boolean>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"c423cd97-78ff-44f7-90e4-bb73a7d9536d","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Premium/:premiumId","host":["https://api.virtuoussoftware.com"],"path":["api","Premium",":premiumId"],"variable":[{"key":"premiumId","value":"<integer>","description":"(Required) The premium Id."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"bc783f7e-9ea8-4720-8923-23f9dcc5e6a0"},{"name":"Get Premium using a unique Code","id":"ec2606f2-1c4b-49f4-8f52-814a8506ce0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Premium/Code/:premiumCode","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Premium","Code",":premiumCode"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The premium code.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"premiumCode"}]}},"response":[{"id":"526f79a9-88fc-4a75-91fe-c04f0d237641","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Premium/Code/:premiumCode","protocol":"https","host":["api","virtuoussoftware","com"],"path":["api","Premium","Code",":premiumCode"],"variable":[{"key":"premiumCode","value":"<string>","description":"(Required) The premium code."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"name\": \"<string>\",\n\t\"code\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"price\": \"<double>\",\n\t\"fairMarketValue\": \"<double>\",\n\t\"cost\": \"<double>\",\n\t\"inventoryCount\": \"<integer>\",\n\t\"isActive\": \"<boolean>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"1e9cdd4e-9c62-4968-89f8-6785af8a9a93","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Premium/Code/:premiumCode","host":["https://api.virtuoussoftware.com"],"path":["api","Premium","Code",":premiumCode"],"variable":[{"key":"premiumCode","value":"<string>","description":"(Required) The premium code."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ec2606f2-1c4b-49f4-8f52-814a8506ce0b"},{"name":"Find Premiums","id":"f7b47741-d64e-4e45-8628-eedab2c0f856","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"search\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Premium/Search?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Premium","Search"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>How many items to skip.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>How many items to take.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"0ede92b4-b938-4143-88bd-9266069e5135","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Premium/Search?skip=<integer>&take=<integer>","protocol":"https","host":["api","virtuoussoftware","com"],"path":["api","Premium","Search"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"code\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"price\": \"<double>\",\n\t\t\t\"fairMarketValue\": \"<double>\",\n\t\t\t\"cost\": \"<double>\",\n\t\t\t\"inventoryCount\": \"<integer>\",\n\t\t\t\"isActive\": \"<boolean>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"code\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"price\": \"<double>\",\n\t\t\t\"fairMarketValue\": \"<double>\",\n\t\t\t\"cost\": \"<double>\",\n\t\t\t\"inventoryCount\": \"<integer>\",\n\t\t\t\"isActive\": \"<boolean>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"f7b47741-d64e-4e45-8628-eedab2c0f856"},{"name":"Create a Premium","id":"ab56b975-cc4d-4056-8a12-e6115272c713","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"price\": \"<double>\",\n    \"fairMarketValue\": \"<double>\",\n    \"description\": \"<string>\",\n    \"cost\": \"<double>\",\n    \"inventoryCount\": \"<integer>\",\n    \"isActive\": \"<boolean>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Premium","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Premium"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"1b37fc38-3799-406c-a541-0d4ee17866df","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"price\": \"<double>\",\n    \"fairMarketValue\": \"<double>\",\n    \"description\": \"<string>\",\n    \"cost\": \"<double>\",\n    \"inventoryCount\": \"<integer>\",\n    \"isActive\": \"<boolean>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Premium"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"name\": \"<string>\",\n\t\"code\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"price\": \"<double>\",\n\t\"fairMarketValue\": \"<double>\",\n\t\"cost\": \"<double>\",\n\t\"inventoryCount\": \"<integer>\",\n\t\"isActive\": \"<boolean>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"8cccb19b-4c58-47a5-9948-3d001fec2424","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"price\": \"<double>\",\n    \"fairMarketValue\": \"<double>\",\n    \"description\": \"<string>\",\n    \"cost\": \"<double>\",\n    \"inventoryCount\": \"<integer>\",\n    \"isActive\": \"<boolean>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Premium"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ab56b975-cc4d-4056-8a12-e6115272c713"},{"name":"Update a Premium","id":"e9a45026-1112-46db-94d2-6ca05c8229da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"price\": \"<double>\",\n    \"fairMarketValue\": \"<double>\",\n    \"description\": \"<string>\",\n    \"cost\": \"<double>\",\n    \"inventoryCount\": \"<integer>\",\n    \"isActive\": \"<boolean>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Premium/:premiumId","description":"<p>Similar to other update methods in the API, excluding a property will remove it's value from the object. \nIf you're only updating a single property, the entire model is still required.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Premium",":premiumId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The premium identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"premiumId"}]}},"response":[{"id":"1a2cb17d-f0a9-4d11-9bfe-14e47fde4a98","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"price\": \"<double>\",\n    \"fairMarketValue\": \"<double>\",\n    \"description\": \"<string>\",\n    \"cost\": \"<double>\",\n    \"inventoryCount\": \"<integer>\",\n    \"isActive\": \"<boolean>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Premium/:premiumId","protocol":"https","host":["api","virtuoussoftware","com"],"path":["api","Premium",":premiumId"],"variable":[{"key":"premiumId","value":"<integer>","description":"(Required) The premium identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"name\": \"<string>\",\n\t\"code\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"price\": \"<double>\",\n\t\"fairMarketValue\": \"<double>\",\n\t\"cost\": \"<double>\",\n\t\"inventoryCount\": \"<integer>\",\n\t\"isActive\": \"<boolean>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"392848a8-135f-49e2-936b-2e68ebc84ae5","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"price\": \"<double>\",\n    \"fairMarketValue\": \"<double>\",\n    \"description\": \"<string>\",\n    \"cost\": \"<double>\",\n    \"inventoryCount\": \"<integer>\",\n    \"isActive\": \"<boolean>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Premium/:premiumId","host":["https://api.virtuoussoftware.com"],"path":["api","Premium",":premiumId"],"variable":[{"key":"premiumId","value":"<integer>","description":"(Required) The premium identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e9a45026-1112-46db-94d2-6ca05c8229da"},{"name":"Increment the inventory count","id":"8426f179-9dfd-468e-857d-ffdc52a375c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://api.virtuoussoftware.com/api/Premium/Increment/:premiumId?incrementor=<integer>","description":"<p>The incrementor defaults to 1 and MUST be a positive number. If you need to decrement, use the Decrement Premium endpoint.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Premium","Increment",":premiumId"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The incrementor</p>\n","type":"text/plain"},"key":"incrementor","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) The premium identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"premiumId"}]}},"response":[{"id":"7226000f-0dc0-4e5e-8d65-c874fdda8ce7","name":"OK","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Premium/Increment/:premiumId?incrementor=<integer>","protocol":"https","host":["api","virtuoussoftware","com"],"path":["api","Premium","Increment",":premiumId"],"query":[{"key":"incrementor","value":"<integer>"}],"variable":[{"key":"premiumId","value":"<integer>","description":"(Required) The premium identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"name\": \"<string>\",\n\t\"code\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"price\": \"<double>\",\n\t\"fairMarketValue\": \"<double>\",\n\t\"cost\": \"<double>\",\n\t\"inventoryCount\": \"<integer>\",\n\t\"isActive\": \"<boolean>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"7df6f7e5-017a-4df8-ab32-54871a281b43","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Premium/Increment/:premiumId?incrementor=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Premium","Increment",":premiumId"],"query":[{"key":"incrementor","value":"<integer>"}],"variable":[{"key":"premiumId","value":"<integer>","description":"(Required) The premium identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"8426f179-9dfd-468e-857d-ffdc52a375c7"},{"name":"Decrement the inventory count","id":"fb9e8a00-090d-4a2a-84f0-b6a82eb0b3ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://api.virtuoussoftware.com/api/Premium/Decrement/:premiumId?decrementor=<integer>","description":"<p>The decrementor defaults to -1 and MUST be a negative number. If you need to increment, use the Increment Premium endpoint.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Premium","Decrement",":premiumId"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The decrementor.</p>\n","type":"text/plain"},"key":"decrementor","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) The premium identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"premiumId"}]}},"response":[{"id":"e656fae0-cc7b-45f6-9f9b-aa551abda272","name":"OK","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Premium/Decrement/:premiumId?decrementor=<integer>","protocol":"https","host":["api","virtuoussoftware","com"],"path":["api","Premium","Decrement",":premiumId"],"query":[{"key":"decrementor","value":"<integer>"}],"variable":[{"key":"premiumId","value":"<integer>","description":"(Required) The premium identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"name\": \"<string>\",\n\t\"code\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"price\": \"<double>\",\n\t\"fairMarketValue\": \"<double>\",\n\t\"cost\": \"<double>\",\n\t\"inventoryCount\": \"<integer>\",\n\t\"isActive\": \"<boolean>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"aa1aa755-6075-4026-8273-bb1fe8a55fa9","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Premium/Decrement/:premiumId?decrementor=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Premium","Decrement",":premiumId"],"query":[{"key":"decrementor","value":"<integer>"}],"variable":[{"key":"premiumId","value":"<integer>","description":"(Required) The premium identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"fb9e8a00-090d-4a2a-84f0-b6a82eb0b3ee"},{"name":"Get Premium Custom Fields Available","id":"dce43fac-4148-4509-9b70-addc3f590b3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Premium/CustomFields","description":"<p>Will return all enabled custom fields available for the Premium object.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Premium","CustomFields"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"3c3da94e-1022-472f-8a87-91ead4b5fa02","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Premium/CustomFields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"dataType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"displayName\": \"<string>\",\n\t\t\"options\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t},\n\t{\n\t\t\"dataType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"displayName\": \"<string>\",\n\t\t\"options\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t}\n]"}],"_postman_id":"dce43fac-4148-4509-9b70-addc3f590b3d"},{"name":"Query Premiums","id":"348b084f-f64b-434e-8b20-cc1e24ad29df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"groups\": [\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        }\n    ],\n    \"sortBy\": \"<string>\",\n    \"descending\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Premium/Query?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Premium","Query"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10. Max is 1000.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"8a65b6f8-3532-4ab2-af76-9ecaeef10106","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Premium/Query?skip=<integer>&take=<integer>","protocol":"https","host":["api","virtuoussoftware","com"],"path":["api","Premium","Query"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"code\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"price\": \"<double>\",\n\t\t\t\"fairMarketValue\": \"<double>\",\n\t\t\t\"cost\": \"<double>\",\n\t\t\t\"inventoryCount\": \"<integer>\",\n\t\t\t\"isActive\": \"<boolean>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"code\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"price\": \"<double>\",\n\t\t\t\"fairMarketValue\": \"<double>\",\n\t\t\t\"cost\": \"<double>\",\n\t\t\t\"inventoryCount\": \"<integer>\",\n\t\t\t\"isActive\": \"<boolean>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"348b084f-f64b-434e-8b20-cc1e24ad29df"},{"name":"Get Premium Query Options","id":"47663995-fd46-47ca-8584-c527be5d0ac4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Premium/QueryOptions","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Premium","QueryOptions"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"7198c9ca-3de1-4821-9ecf-d611ec2da77f","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Premium/QueryOptions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"options\": [\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t}\n\t],\n\t\"operatorOptions\": [\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t},\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t}\n\t]\n}"}],"_postman_id":"47663995-fd46-47ca-8584-c527be5d0ac4"}],"id":"01bd07bd-4b57-4734-916e-14e2ed3a779a","_postman_id":"01bd07bd-4b57-4734-916e-14e2ed3a779a","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Recurring Gifts","item":[{"name":"Get Recurring Gifts for a Contact","id":"0997a754-f41b-41f4-9810-af8ae2b047c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/RecurringGift/ByContact/:contactId?sortBy=<string>&descending=<boolean>&skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","RecurringGift","ByContact",":contactId"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The field to be sorted. Supported: Id, RecurringGiftDate, Amount, CreatedDateTime.</p>\n","type":"text/plain"},"key":"sortBy","value":"<string>"},{"description":{"content":"<p>The direction to be sorted.</p>\n","type":"text/plain"},"key":"descending","value":"<boolean>"},{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) The contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactId"}]}},"response":[{"id":"c58a49dd-6206-48c4-825c-946718a40fbf","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/RecurringGift/ByContact/:contactId?sortBy=<string>&descending=<boolean>&skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","RecurringGift","ByContact",":contactId"],"query":[{"key":"sortBy","value":"<string>"},{"key":"descending","value":"<boolean>"},{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"transactionSource\": \"<string>\",\n\t\t\t\"transactionId\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"startDate\": \"<dateTime>\",\n\t\t\t\"amount\": \"<double>\",\n\t\t\t\"frequency\": \"<string>\",\n\t\t\t\"anticipatedEndDate\": \"<dateTime>\",\n\t\t\t\"cancelDateTimeUtc\": \"<dateTime>\",\n\t\t\t\"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n\t\t\t\"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"segmentId\": \"<integer>\",\n\t\t\t\"segment\": \"<string>\",\n\t\t\t\"segmentUrl\": \"<string>\",\n\t\t\t\"automatedPayments\": \"<boolean>\",\n\t\t\t\"trackPayments\": \"<boolean>\",\n\t\t\t\"isPrivate\": \"<boolean>\",\n\t\t\t\"status\": \"<string>\",\n\t\t\t\"nextExpectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"designations\": [\n\t\t\t\t{\n\t\t\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\t\t\"project\": \"<string>\",\n\t\t\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\t\t\"projectCode\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\t\t\"project\": \"<string>\",\n\t\t\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\t\t\"projectCode\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"transactionSource\": \"<string>\",\n\t\t\t\"transactionId\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"startDate\": \"<dateTime>\",\n\t\t\t\"amount\": \"<double>\",\n\t\t\t\"frequency\": \"<string>\",\n\t\t\t\"anticipatedEndDate\": \"<dateTime>\",\n\t\t\t\"cancelDateTimeUtc\": \"<dateTime>\",\n\t\t\t\"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n\t\t\t\"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"segmentId\": \"<integer>\",\n\t\t\t\"segment\": \"<string>\",\n\t\t\t\"segmentUrl\": \"<string>\",\n\t\t\t\"automatedPayments\": \"<boolean>\",\n\t\t\t\"trackPayments\": \"<boolean>\",\n\t\t\t\"isPrivate\": \"<boolean>\",\n\t\t\t\"status\": \"<string>\",\n\t\t\t\"nextExpectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"designations\": [\n\t\t\t\t{\n\t\t\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\t\t\"project\": \"<string>\",\n\t\t\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\t\t\"projectCode\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\t\t\"project\": \"<string>\",\n\t\t\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\t\t\"projectCode\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"0997a754-f41b-41f4-9810-af8ae2b047c5"},{"name":"Get a Recurring Gift","id":"e1db1cb8-8751-40d6-b274-e6f62a0bbc77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/RecurringGift/:recurringGiftId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","RecurringGift",":recurringGiftId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The recurring gift identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"recurringGiftId"}]}},"response":[{"id":"5f1f92a7-b573-442d-b6e5-d5b09c6e505e","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/RecurringGift/:recurringGiftId","host":["https://api.virtuoussoftware.com"],"path":["api","RecurringGift",":recurringGiftId"],"variable":[{"key":"recurringGiftId","value":"<integer>","description":"(Required) The recurring gift identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"transactionSource\": \"<string>\",\n\t\"transactionId\": \"<string>\",\n\t\"contactId\": \"<integer>\",\n\t\"startDate\": \"<dateTime>\",\n\t\"amount\": \"<double>\",\n\t\"frequency\": \"<string>\",\n\t\"anticipatedEndDate\": \"<dateTime>\",\n\t\"cancelDateTimeUtc\": \"<dateTime>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"segmentId\": \"<integer>\",\n\t\"segment\": \"<string>\",\n\t\"segmentUrl\": \"<string>\",\n\t\"automatedPayments\": \"<boolean>\",\n\t\"trackPayments\": \"<boolean>\",\n\t\"isPrivate\": \"<boolean>\",\n\t\"status\": \"<string>\",\n\t\"nextExpectedPaymentDate\": \"<dateTime>\",\n\t\"designations\": [\n\t\t{\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\"projectCode\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\"projectCode\": \"<string>\"\n\t\t}\n\t],\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"52f4f6ba-120e-48ca-9dab-6e722f38db67","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/RecurringGift/:recurringGiftId","host":["https://api.virtuoussoftware.com"],"path":["api","RecurringGift",":recurringGiftId"],"variable":[{"key":"recurringGiftId","value":"<integer>","description":"(Required) The recurring gift identifier."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e1db1cb8-8751-40d6-b274-e6f62a0bbc77"},{"name":"Create a Recurring Gift","id":"8f231d38-f045-4091-a79f-fef8adc3bc11","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer>\",\n    \"startDate\": \"<dateTime>\",\n    \"frequency\": \"Weekly|Bimonthly|Monthly|Quarterly|Semiannually|Annually|Biennially\",\n    \"amount\": \"<double>\",\n    \"nextExpectedPaymentDate\": \"<dateTime>\",\n    \"anticipatedEndDate\": \"<dateTime>\",\n    \"thankYouDate\": \"<dateTime>\",\n    \"segmentId\": \"<integer>\",\n    \"automatedPayments\": \"<boolean>\",\n    \"trackPayments\": \"<boolean>\",\n    \"isPrivate\": \"<boolean>\",\n    \"designations\": [\n        {\n            \"projectId\": \"<integer>\",\n            \"amountDesignated\": \"<double>\"\n        },\n        {\n            \"projectId\": \"<integer>\",\n            \"amountDesignated\": \"<double>\"\n        }\n    ],\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/RecurringGift","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","RecurringGift"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"f469d477-a121-4b4d-84e7-2383ad4f1015","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer>\",\n    \"startDate\": \"<dateTime>\",\n    \"frequency\": \"<string>\",\n    \"amount\": \"<double>\",\n    \"nextExpectedPaymentDate\": \"<dateTime>\",\n    \"anticipatedEndDate\": \"<dateTime>\",\n    \"thankYouDate\": \"<dateTime>\",\n    \"segmentId\": \"<integer>\",\n    \"automatedPayments\": \"<boolean>\",\n    \"trackPayments\": \"<boolean>\",\n    \"isPrivate\": \"<boolean>\",\n    \"designations\": [\n        {\n            \"projectId\": \"<integer>\",\n            \"amountDesignated\": \"<double>\"\n        },\n        {\n            \"projectId\": \"<integer>\",\n            \"amountDesignated\": \"<double>\"\n        }\n    ],\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/RecurringGift"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"transactionSource\": \"<string>\",\n\t\"transactionId\": \"<string>\",\n\t\"contactId\": \"<integer>\",\n\t\"startDate\": \"<dateTime>\",\n\t\"amount\": \"<double>\",\n\t\"frequency\": \"<string>\",\n\t\"anticipatedEndDate\": \"<dateTime>\",\n\t\"cancelDateTimeUtc\": \"<dateTime>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"segmentId\": \"<integer>\",\n\t\"segment\": \"<string>\",\n\t\"segmentUrl\": \"<string>\",\n\t\"automatedPayments\": \"<boolean>\",\n\t\"trackPayments\": \"<boolean>\",\n\t\"isPrivate\": \"<boolean>\",\n\t\"status\": \"<string>\",\n\t\"nextExpectedPaymentDate\": \"<dateTime>\",\n\t\"designations\": [\n\t\t{\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\"projectCode\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\"projectCode\": \"<string>\"\n\t\t}\n\t],\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"b9e47bcf-d92f-4aa4-839a-0840028d63b9","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactId\": \"<integer>\",\n    \"startDate\": \"<dateTime>\",\n    \"frequency\": \"<string>\",\n    \"amount\": \"<double>\",\n    \"nextExpectedPaymentDate\": \"<dateTime>\",\n    \"anticipatedEndDate\": \"<dateTime>\",\n    \"thankYouDate\": \"<dateTime>\",\n    \"segmentId\": \"<integer>\",\n    \"automatedPayments\": \"<boolean>\",\n    \"trackPayments\": \"<boolean>\",\n    \"isPrivate\": \"<boolean>\",\n    \"designations\": [\n        {\n            \"projectId\": \"<integer>\",\n            \"amountDesignated\": \"<double>\"\n        },\n        {\n            \"projectId\": \"<integer>\",\n            \"amountDesignated\": \"<double>\"\n        }\n    ],\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/RecurringGift"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"8f231d38-f045-4091-a79f-fef8adc3bc11"},{"name":"Update a Recurring Gift","id":"13511372-eb0a-4f52-b097-744507cffb45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"startDate\": \"<dateTime>\",\n    \"frequency\": \"Weekly|Bimonthly|Monthly|Quarterly|Semiannually|Annually|Biennially\",\n    \"amount\": \"<double>\",\n    \"nextExpectedPaymentDate\": \"<dateTime>\",\n    \"anticipatedEndDate\": \"<dateTime>\",\n    \"thankYouDate\": \"<dateTime>\",\n    \"segmentId\": \"<integer>\",\n    \"automatedPayments\": \"<boolean>\",\n    \"trackPayments\": \"<boolean>\",\n    \"isPrivate\": \"<boolean>\",\n    \"designations\": [\n        {\n            \"projectId\": \"<integer>\",\n            \"amountDesignated\": \"<double>\"\n        },\n        {\n            \"projectId\": \"<integer>\",\n            \"amountDesignated\": \"<double>\"\n        }\n    ],\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/RecurringGift/:recurringGiftId","description":"<p>Similar to other update methods in the API, excluding a property will remove it's value from the object. \nIf you're only updating a single property, the entire model is still required.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","RecurringGift",":recurringGiftId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"recurringGiftId"}]}},"response":[{"id":"3b38a0be-6266-4c46-b79e-146760af612d","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"startDate\": \"<dateTime>\",\n    \"frequency\": \"<string>\",\n    \"amount\": \"<double>\",\n    \"nextExpectedPaymentDate\": \"<dateTime>\",\n    \"anticipatedEndDate\": \"<dateTime>\",\n    \"thankYouDate\": \"<dateTime>\",\n    \"segmentId\": \"<integer>\",\n    \"automatedPayments\": \"<boolean>\",\n    \"trackPayments\": \"<boolean>\",\n    \"isPrivate\": \"<boolean>\",\n    \"designations\": [\n        {\n            \"projectId\": \"<integer>\",\n            \"amountDesignated\": \"<double>\"\n        },\n        {\n            \"projectId\": \"<integer>\",\n            \"amountDesignated\": \"<double>\"\n        }\n    ],\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/RecurringGift/:recurringGiftId","host":["https://api.virtuoussoftware.com"],"path":["api","RecurringGift",":recurringGiftId"],"variable":[{"key":"recurringGiftId","value":"<integer>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"transactionSource\": \"<string>\",\n\t\"transactionId\": \"<string>\",\n\t\"contactId\": \"<integer>\",\n\t\"startDate\": \"<dateTime>\",\n\t\"amount\": \"<double>\",\n\t\"frequency\": \"<string>\",\n\t\"anticipatedEndDate\": \"<dateTime>\",\n\t\"cancelDateTimeUtc\": \"<dateTime>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"segmentId\": \"<integer>\",\n\t\"segment\": \"<string>\",\n\t\"segmentUrl\": \"<string>\",\n\t\"automatedPayments\": \"<boolean>\",\n\t\"trackPayments\": \"<boolean>\",\n\t\"isPrivate\": \"<boolean>\",\n\t\"status\": \"<string>\",\n\t\"nextExpectedPaymentDate\": \"<dateTime>\",\n\t\"designations\": [\n\t\t{\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\"projectCode\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\"projectCode\": \"<string>\"\n\t\t}\n\t],\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"5723ba9d-0c87-4e52-8bd1-2585fd7fbedf","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"startDate\": \"<dateTime>\",\n    \"frequency\": \"<string>\",\n    \"amount\": \"<double>\",\n    \"nextExpectedPaymentDate\": \"<dateTime>\",\n    \"anticipatedEndDate\": \"<dateTime>\",\n    \"thankYouDate\": \"<dateTime>\",\n    \"segmentId\": \"<integer>\",\n    \"automatedPayments\": \"<boolean>\",\n    \"trackPayments\": \"<boolean>\",\n    \"isPrivate\": \"<boolean>\",\n    \"designations\": [\n        {\n            \"projectId\": \"<integer>\",\n            \"amountDesignated\": \"<double>\"\n        },\n        {\n            \"projectId\": \"<integer>\",\n            \"amountDesignated\": \"<double>\"\n        }\n    ],\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/RecurringGift/:recurringGiftId","host":["https://api.virtuoussoftware.com"],"path":["api","RecurringGift",":recurringGiftId"],"variable":[{"key":"recurringGiftId","value":"<integer>","description":"(Required) "}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"13511372-eb0a-4f52-b097-744507cffb45"},{"name":"Cancel a Recurring Gift","id":"69ad2ef2-6dde-447e-badb-0f25e15449bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"cancelReason\": \"<string>\",\n    \"categoryId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/RecurringGift/Cancel/:recurringGiftId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","RecurringGift","Cancel",":recurringGiftId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The recurring gift identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"recurringGiftId"}]}},"response":[{"id":"a5b2f600-0598-49f2-adc4-7cd27652abce","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"cancelReason\": \"<string>\",\n    \"categoryId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/RecurringGift/Cancel/:recurringGiftId","host":["https://api.virtuoussoftware.com"],"path":["api","RecurringGift","Cancel",":recurringGiftId"],"variable":[{"key":"recurringGiftId","value":"<integer>","description":"(Required) The recurring gift identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"transactionSource\": \"<string>\",\n\t\"transactionId\": \"<string>\",\n\t\"contactId\": \"<integer>\",\n\t\"startDate\": \"<dateTime>\",\n\t\"amount\": \"<double>\",\n\t\"frequency\": \"<string>\",\n\t\"anticipatedEndDate\": \"<dateTime>\",\n\t\"cancelDateTimeUtc\": \"<dateTime>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"segmentId\": \"<integer>\",\n\t\"segment\": \"<string>\",\n\t\"segmentUrl\": \"<string>\",\n\t\"automatedPayments\": \"<boolean>\",\n\t\"trackPayments\": \"<boolean>\",\n\t\"isPrivate\": \"<boolean>\",\n\t\"status\": \"<string>\",\n\t\"nextExpectedPaymentDate\": \"<dateTime>\",\n\t\"designations\": [\n\t\t{\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\"projectCode\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\"projectCode\": \"<string>\"\n\t\t}\n\t],\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"209a6b9c-9901-4a6d-991d-33b3f21f2932","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"cancelReason\": \"<string>\",\n    \"categoryId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/RecurringGift/Cancel/:recurringGiftId","host":["https://api.virtuoussoftware.com"],"path":["api","RecurringGift","Cancel",":recurringGiftId"],"variable":[{"key":"recurringGiftId","value":"<integer>","description":"(Required) The recurring gift identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"69ad2ef2-6dde-447e-badb-0f25e15449bd"},{"name":"Get Recurring Gift Custom Fields Available","id":"269c5843-7478-43a2-a04a-1588bb4bafad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/RecurringGift/CustomFields","description":"<p>Will return all enabled custom fields available for the Recurring Gift object.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","RecurringGift","CustomFields"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"76a18528-58eb-4279-9c68-ba887e5451b8","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/RecurringGift/CustomFields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"dataType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"displayName\": \"<string>\",\n\t\t\"options\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t},\n\t{\n\t\t\"dataType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"displayName\": \"<string>\",\n\t\t\"options\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t}\n]"}],"_postman_id":"269c5843-7478-43a2-a04a-1588bb4bafad"},{"name":"Get Recurring Gift Query Options","id":"08fae1f5-eb9e-41b8-8ec5-7cade8df70f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/RecurringGift/QueryOptions","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","RecurringGift","QueryOptions"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"b70f6a5d-4679-4589-80b6-2b7a5b78d2a2","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/RecurringGift/QueryOptions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"options\": [\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t}\n\t],\n\t\"operatorOptions\": [\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t},\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t}\n\t]\n}"}],"_postman_id":"08fae1f5-eb9e-41b8-8ec5-7cade8df70f1"},{"name":"Query Recurring Gifts","id":"2d44defa-aa9a-4627-815e-c2b08ea25e23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"groups\": [\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        }\n    ],\n    \"sortBy\": \"<string>\",\n    \"descending\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/RecurringGift/Query?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","RecurringGift","Query"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10. Max is 1000.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"291ebd8e-b5d4-42c4-a85b-09ab97a2daa1","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/RecurringGift/Query?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","RecurringGift","Query"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"transactionSource\": \"<string>\",\n\t\t\t\"transactionId\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"startDate\": \"<dateTime>\",\n\t\t\t\"amount\": \"<double>\",\n\t\t\t\"frequency\": \"<string>\",\n\t\t\t\"anticipatedEndDate\": \"<dateTime>\",\n\t\t\t\"cancelDateTimeUtc\": \"<dateTime>\",\n\t\t\t\"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n\t\t\t\"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"segmentId\": \"<integer>\",\n\t\t\t\"segment\": \"<string>\",\n\t\t\t\"segmentUrl\": \"<string>\",\n\t\t\t\"automatedPayments\": \"<boolean>\",\n\t\t\t\"trackPayments\": \"<boolean>\",\n\t\t\t\"isPrivate\": \"<boolean>\",\n\t\t\t\"status\": \"<string>\",\n\t\t\t\"nextExpectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"designations\": [\n\t\t\t\t{\n\t\t\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\t\t\"project\": \"<string>\",\n\t\t\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\t\t\"projectCode\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\t\t\"project\": \"<string>\",\n\t\t\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\t\t\"projectCode\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"transactionSource\": \"<string>\",\n\t\t\t\"transactionId\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"startDate\": \"<dateTime>\",\n\t\t\t\"amount\": \"<double>\",\n\t\t\t\"frequency\": \"<string>\",\n\t\t\t\"anticipatedEndDate\": \"<dateTime>\",\n\t\t\t\"cancelDateTimeUtc\": \"<dateTime>\",\n\t\t\t\"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n\t\t\t\"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"segmentId\": \"<integer>\",\n\t\t\t\"segment\": \"<string>\",\n\t\t\t\"segmentUrl\": \"<string>\",\n\t\t\t\"automatedPayments\": \"<boolean>\",\n\t\t\t\"trackPayments\": \"<boolean>\",\n\t\t\t\"isPrivate\": \"<boolean>\",\n\t\t\t\"status\": \"<string>\",\n\t\t\t\"nextExpectedPaymentDate\": \"<dateTime>\",\n\t\t\t\"designations\": [\n\t\t\t\t{\n\t\t\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\t\t\"project\": \"<string>\",\n\t\t\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\t\t\"projectCode\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\t\t\"project\": \"<string>\",\n\t\t\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\t\t\"projectCode\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"2d44defa-aa9a-4627-815e-c2b08ea25e23"}],"id":"2a8cd1c8-4540-4dcb-ab8e-913d8730143c","description":"<p>Recurring Gifts represent a donor' commitment to providing regular, ongoing support for your organization. It's common to think of this specifically as applying to monthly giving, but recurring gifts can also include quarterly payments, annual support, or even bimonthly donations. Often, recurring giving involves automatic payments via a credit card or bank transfer/e-check, but a recurring donor may choose to regularly send checks instead. A recurring gift does not represent a binding or long-term commitment from a donor. A recurring gift may end at any time (most often, they end when a donor's credit card expires) and there is no lump sum or total dollar amount committed by your donor.</p>\n","_postman_id":"2a8cd1c8-4540-4dcb-ab8e-913d8730143c","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Recurring Gift Payments","item":[{"name":"Get Payments for a Recurring Gift","id":"deace063-7387-47ee-bc89-9eb47161fd8f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/RecurringGiftPayment/:recurringGiftId?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","RecurringGiftPayment",":recurringGiftId"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) The recurring gift identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"recurringGiftId"}]}},"response":[{"id":"f77e8f4d-ae20-4fa3-8c55-d872de76ee70","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/RecurringGiftPayment/:recurringGiftId?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","RecurringGiftPayment",":recurringGiftId"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}],"variable":[{"key":"recurringGiftId","value":"<integer>","description":"(Required) The recurring gift identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"gift\": {\n\t\t\"id\": \"<integer>\",\n\t\t\"contactId\": \"<integer>\",\n\t\t\"giftDate\": \"<dateTime>\",\n\t\t\"amount\": \"<double>\"\n\t},\n\t\"expectedAmount\": \"<double>\",\n\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\"dismissPaymentDate\": \"<dateTime>\",\n\t\"fulfillPaymentDate\": \"<dateTime>\"\n}"},{"id":"50990d42-42c6-48b8-80f7-d221159ecf60","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/RecurringGiftPayment/:recurringGiftId?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","RecurringGiftPayment",":recurringGiftId"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}],"variable":[{"key":"recurringGiftId","value":"<integer>","description":"(Required) The recurring gift identifier."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"deace063-7387-47ee-bc89-9eb47161fd8f"}],"id":"08ed33ea-9457-429f-807e-0b10bc4cca33","description":"<p>Much like pledge payments, recurring gift payments are used to track expected revenue from your recurring givers. Users have the option to create a schedule of payments or not when creating a new recurring gift. If no payments are generated, gifts cannot be matched to a recurring gift, as gifts can only be associated with recurring gift payments. Past due payments will result in a past due balance on a recurring gift. Any outstanding payments can be forgiven, if desired, to zero out any balance due.</p>\n","_postman_id":"08ed33ea-9457-429f-807e-0b10bc4cca33","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}}],"id":"94f591dc-5639-4df9-9ce5-797e6f276e1b","_postman_id":"94f591dc-5639-4df9-9ce5-797e6f276e1b","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Campaigns","item":[{"name":"Campaigns","item":[{"name":"Get Campaign","id":"b4d712c1-5d85-4c1c-8a24-f5dd09deb413","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Campaign/:campaignId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Campaign",":campaignId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The campaign identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"campaignId"}]}},"response":[{"id":"b257b1f0-54e0-420e-af48-ce62fee6719d","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Campaign/:campaignId","protocol":"https","host":["api","virtuoussoftware","com"],"path":["api","Campaign",":campaignId"],"variable":[{"key":"campaignId","value":"<integer>","description":"(Required) The campaign identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"campaignId\": \"<integer>\",\n\t\"name\": \"<string>\",\n\t\"startDateTimeUtc\": \"<dateTime>\",\n\t\"endDateTimeUtc\": \"<dateTime>\",\n\t\"givingGoal\": \"<double>\",\n\t\"newGiverGoal\": \"<integer>\",\n\t\"totalGiftGoal\": \"<integer>\",\n\t\"isArchived\": \"<boolean>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\"\n}"},{"id":"0ed9080f-f6de-4b1e-a55e-e307ac1c050d","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Campaign/:campaignId","host":["https://api.virtuoussoftware.com"],"path":["api","Campaign",":campaignId"],"variable":[{"key":"campaignId","value":"<integer>","description":"(Required) The campaign identifier."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"b4d712c1-5d85-4c1c-8a24-f5dd09deb413"},{"name":"Gets Campaign Steps","id":"e968a0da-595f-48ca-ba30-d8ef1f0cdea5","request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Campaign/GetStepsByCampaignId/:campaignId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Campaign","GetStepsByCampaignId",":campaignId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The campaign identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"campaignId"}]}},"response":[{"id":"4ed6232c-5805-4ea5-83fd-3b2b81b92923","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Campaign/GetStepsByCampaignId/:campaignId","host":["https://api.virtuoussoftware.com"],"path":["api","Campaign","GetStepsByCampaignId",":campaignId"],"variable":[{"key":"campaignId","value":"<integer>","description":"(Required) The campaign identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t\"<string>\",\n\t\"<string>\"\n]"},{"id":"da405efc-d182-4177-a7eb-7de5de9ce18e","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Campaign/GetStepsByCampaignId/:campaignId","host":["https://api.virtuoussoftware.com"],"path":["api","Campaign","GetStepsByCampaignId",":campaignId"],"variable":[{"key":"campaignId","value":"<integer>","description":"(Required) The campaign identifier."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e968a0da-595f-48ca-ba30-d8ef1f0cdea5"},{"name":"Get Campaign Query Options","id":"1383b2f1-d4b9-4783-a19e-e56e7f44e0c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Campaign/QueryOptions","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Campaign","QueryOptions"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"85c34425-c3c6-4c3a-9c3b-63465b168893","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Campaign/QueryOptions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"options\": [\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t}\n\t],\n\t\"operatorOptions\": [\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t},\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t}\n\t]\n}"}],"_postman_id":"1383b2f1-d4b9-4783-a19e-e56e7f44e0c7"},{"name":"Query Campaigns","id":"a27f3e03-bfbf-40fe-aaaf-1b1dbf62e4ba","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"groups\": [\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        }\n    ],\n    \"sortBy\": \"<string>\",\n    \"descending\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Campaign/Query?skip=<integer>&take=<integer>","description":"<p>To see which options can be sent, use the {M:Virtuous.WebApi.Controllers.CampaignController.QueryOptions} endpoint.\nIf requests are timing out, you may be asking for too many items at once. The max take is 1,000.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Campaign","Query"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10. Max is 1000.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"c578245d-420d-4047-8c10-b091c28e95b6","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Campaign/Query?skip=<integer>&take=<integer>","protocol":"https","host":["api","virtuoussoftware","com"],"path":["api","Campaign","Query"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"campaignId\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"startDateTimeUtc\": \"<dateTime>\",\n\t\t\t\"endDateTimeUtc\": \"<dateTime>\",\n\t\t\t\"givingGoal\": \"<double>\",\n\t\t\t\"newGiverGoal\": \"<integer>\",\n\t\t\t\"totalGiftGoal\": \"<integer>\",\n\t\t\t\"isArchived\": \"<boolean>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"campaignId\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"startDateTimeUtc\": \"<dateTime>\",\n\t\t\t\"endDateTimeUtc\": \"<dateTime>\",\n\t\t\t\"givingGoal\": \"<double>\",\n\t\t\t\"newGiverGoal\": \"<integer>\",\n\t\t\t\"totalGiftGoal\": \"<integer>\",\n\t\t\t\"isArchived\": \"<boolean>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"},{"id":"05ef59de-a5ef-430f-bf10-4d7379e2dc16","name":"BadRequest","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Campaign/Query?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Campaign","Query"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"a27f3e03-bfbf-40fe-aaaf-1b1dbf62e4ba"}],"id":"3ce63de0-1683-4a0a-8a5c-c772e88403ae","description":"<p>Campaigns in Virtuous allow you to track your outbound marketing and fundraising efforts, connect these efforts to gifts received, and track their effectiveness. Campaigns are constructed in a hierarchy, consisting of Campaigns &gt; Communications &gt; Segments. This structure can be used to support any organization’s marketing structure, from small startups to large international organizations.</p>\n","_postman_id":"3ce63de0-1683-4a0a-8a5c-c772e88403ae","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Communications","item":[{"name":"Get Communications for a Campaign","id":"958f4586-696f-4a67-9874-06e6356bb608","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Communication/ByCampaign/:campaignId?filter=<string>&sortBy=<string>&descending=<boolean>&skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Communication","ByCampaign",":campaignId"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The filter.</p>\n","type":"text/plain"},"key":"filter","value":"<string>"},{"description":{"content":"<p>The field to be sorted. Supported: Id, Name, CreatedDateTime.</p>\n","type":"text/plain"},"key":"sortBy","value":"<string>"},{"description":{"content":"<p>The direction to be sorted.</p>\n","type":"text/plain"},"key":"descending","value":"<boolean>"},{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) The campaign identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"campaignId"}]}},"response":[{"id":"9e2d563b-b036-4cd7-ac97-3a3d43dc47db","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Communication/ByCampaign/:campaignId?filter=<string>&sortBy=<string>&descending=<boolean>&skip=<integer>&take=<integer>","protocol":"https","host":["api","virtuoussoftware","com"],"path":["api","Communication","ByCampaign",":campaignId"],"query":[{"key":"filter","value":"<string>"},{"key":"sortBy","value":"<string>"},{"key":"descending","value":"<boolean>"},{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}],"variable":[{"key":"campaignId","value":"<integer>","description":"(Required) The campaign identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"communicationId\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"campaignId\": \"<integer>\",\n            \"campaignName\": \"<string>\",\n\t\t\t\"channelType\": \"<string>\",\n\t\t\t\"communicationType\": \"<string>\",\n            \"startDateTimeUtc\": \"<dateTime>\",\n            \"givingGoal\": \"<decimal>\",\n            \"projectId\": \"<integer>\",\n            \"projectCode\": \"<string>\",\n            \"projectName\": \"<string>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"communicationId\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"campaignId\": \"<integer>\",\n            \"campaignName\": \"<string>\",\n\t\t\t\"channelType\": \"<string>\",\n\t\t\t\"communicationType\": \"<string>\",\n            \"startDateTimeUtc\": \"<dateTime>\",\n            \"givingGoal\": \"<decimal>\",\n            \"projectId\": \"<integer>\",\n            \"projectCode\": \"<string>\",\n            \"projectName\": \"<string>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"958f4586-696f-4a67-9874-06e6356bb608"},{"name":"Get Communication","id":"8cf8ea36-1315-405f-9be6-563fa1d44d69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Communication/:communicationId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Communication",":communicationId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The communication identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"communicationId"}]}},"response":[{"id":"ee2b43ee-8ccb-4ec0-be34-1ca50b3952c4","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Communication/:communicationId","protocol":"https","host":["api","virtuoussoftware","com"],"path":["api","Communication",":communicationId"],"variable":[{"key":"communicationId","value":"<integer>","description":"(Required) The communication identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"communicationId\": \"<integer>\",\n\t\"name\": \"<string>\",\n\t\"campaignId\": \"<integer>\",\n    \"campaignName\": \"<string>\",\n\t\"channelType\": \"<string>\",\n\t\"communicationType\": \"<string>\",\n    \"startDateTimeUtc\": \"<dateTime>\",\n    \"givingGoal\": \"<decimal>\",\n    \"projectId\": \"<integer>\",\n    \"projectCode\": \"<string>\",\n    \"projectName\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\"\n}"},{"id":"e57dbfc8-4bdc-47c5-a75c-316fde90d2ea","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Communication/:communicationId","host":["https://api.virtuoussoftware.com"],"path":["api","Communication",":communicationId"],"variable":[{"key":"communicationId","value":"<integer>","description":"(Required) The communication identifier."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"8cf8ea36-1315-405f-9be6-563fa1d44d69"},{"name":"Get Channel Types","id":"be03b900-005c-4fcd-918b-e8286caaee57","request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Communication/ChannelTypes","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Communication","ChannelTypes"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"4ef734c9-4074-4b10-94d7-e403c40e4cfc","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Communication/ChannelTypes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t\"<string>\",\n\t\"<string>\"\n]"}],"_postman_id":"be03b900-005c-4fcd-918b-e8286caaee57"},{"name":"Get Communication Types","id":"c6ef1857-9be2-44ff-8c4c-f3b91bf2f624","request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Communication/CommunicationTypes","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Communication","CommunicationTypes"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"3c966b99-1a6d-4506-b373-a8b19f2f448d","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Communication/CommunicationTypes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t\"<string>\",\n\t\"<string>\"\n]"}],"_postman_id":"c6ef1857-9be2-44ff-8c4c-f3b91bf2f624"},{"name":"Create Communication","id":"1370ce2c-2fd8-43a9-bdf2-80af93d41b72","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"campaignId\": \"<integer>\",\n    \"channelType\": \"<string>\",\n    \"communicationType\": \"<string>\",\n    \"communicationStep\": \"<string>\",\n    \"startDateTime\": \"<dateTime>\",\n    \"ownerId\": \"<integer>\",\n    \"givingGoal\": \"<double>\",\n    \"newGiverGoal\": \"<integer>\",\n    \"internalCostEstimate\": \"<double>\",\n    \"vendorCostEstimate\": \"<double>\",\n    \"networkReach\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Communication","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Communication"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"e324f02a-832b-4dd5-b3d2-145c175204ab","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"campaignId\": \"<integer>\",\n    \"channelType\": \"<string>\",\n    \"communicationType\": \"<string>\",\n    \"communicationStep\": \"<string>\",\n    \"startDateTime\": \"<dateTime>\",\n    \"ownerId\": \"<integer>\",\n    \"givingGoal\": \"<double>\",\n    \"newGiverGoal\": \"<integer>\",\n    \"internalCostEstimate\": \"<double>\",\n    \"vendorCostEstimate\": \"<double>\",\n    \"networkReach\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Communication"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"communicationId\": \"<integer>\",\n\t\"name\": \"<string>\",\n\t\"campaignId\": \"<integer>\",\n    \"campaignName\": \"<string>\",\n\t\"channelType\": \"<string>\",\n\t\"communicationType\": \"<string>\",\n    \"startDateTimeUtc\": \"<dateTime>\",\n    \"givingGoal\": \"<decimal>\",\n    \"projectId\": \"<integer>\",\n    \"projectCode\": \"<string>\",\n    \"projectName\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\"\n}"},{"id":"22f66efc-04cd-4250-afb3-6b41a5b97697","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"campaignId\": \"<integer>\",\n    \"channelType\": \"<string>\",\n    \"communicationType\": \"<string>\",\n    \"communicationStep\": \"<string>\",\n    \"startDateTime\": \"<dateTime>\",\n    \"ownerId\": \"<integer>\",\n    \"givingGoal\": \"<double>\",\n    \"newGiverGoal\": \"<integer>\",\n    \"internalCostEstimate\": \"<double>\",\n    \"vendorCostEstimate\": \"<double>\",\n    \"networkReach\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Communication"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"1370ce2c-2fd8-43a9-bdf2-80af93d41b72"},{"name":"Query Communications","id":"b5c56ac4-b846-4bcb-95bd-dc34b31c26d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"groups\": [\r\n        {\r\n            \"conditions\": [\r\n                {\r\n                    \"parameter\": \"<string>\",\r\n                    \"operator\": \"<string>\",\r\n                    \"value\": \"<string>\",\r\n                    \"secondaryValue\": \"<string>\",\r\n                    \"values\": [\r\n                        \"<string>\",\r\n                        \"<string>\"\r\n                    ]\r\n                },\r\n                {\r\n                    \"parameter\": \"<string>\",\r\n                    \"operator\": \"<string>\",\r\n                    \"value\": \"<string>\",\r\n                    \"secondaryValue\": \"<string>\",\r\n                    \"values\": [\r\n                        \"<string>\",\r\n                        \"<string>\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"conditions\": [\r\n                {\r\n                    \"parameter\": \"<string>\",\r\n                    \"operator\": \"<string>\",\r\n                    \"value\": \"<string>\",\r\n                    \"secondaryValue\": \"<string>\",\r\n                    \"values\": [\r\n                        \"<string>\",\r\n                        \"<string>\"\r\n                    ]\r\n                },\r\n                {\r\n                    \"parameter\": \"<string>\",\r\n                    \"operator\": \"<string>\",\r\n                    \"value\": \"<string>\",\r\n                    \"secondaryValue\": \"<string>\",\r\n                    \"values\": [\r\n                        \"<string>\",\r\n                        \"<string>\"\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ],\r\n    \"sortBy\": \"<string>\",\r\n    \"descending\": \"<boolean>\"\r\n}"},"url":"https://api.virtuoussoftware.com/api/Communication/Query?skip=<integer>&take=<integer>","description":"<p>To see which options can be sent, use the Communictation Query Options endpoint.<br />If requests are timing out, you may be asking for too many items at once. The max take is 1,000.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Communication","Query"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10. Max is 1000.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"079e1338-603b-4266-97f9-85bada29d6fe","name":"OK","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\r\n    \"groups\": [\r\n        {\r\n            \"conditions\": [\r\n                {\r\n                    \"parameter\": \"<string>\",\r\n                    \"operator\": \"<string>\",\r\n                    \"value\": \"<string>\",\r\n                    \"secondaryValue\": \"<string>\",\r\n                    \"values\": [\r\n                        \"<string>\",\r\n                        \"<string>\"\r\n                    ]\r\n                },\r\n                {\r\n                    \"parameter\": \"<string>\",\r\n                    \"operator\": \"<string>\",\r\n                    \"value\": \"<string>\",\r\n                    \"secondaryValue\": \"<string>\",\r\n                    \"values\": [\r\n                        \"<string>\",\r\n                        \"<string>\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"conditions\": [\r\n                {\r\n                    \"parameter\": \"<string>\",\r\n                    \"operator\": \"<string>\",\r\n                    \"value\": \"<string>\",\r\n                    \"secondaryValue\": \"<string>\",\r\n                    \"values\": [\r\n                        \"<string>\",\r\n                        \"<string>\"\r\n                    ]\r\n                },\r\n                {\r\n                    \"parameter\": \"<string>\",\r\n                    \"operator\": \"<string>\",\r\n                    \"value\": \"<string>\",\r\n                    \"secondaryValue\": \"<string>\",\r\n                    \"values\": [\r\n                        \"<string>\",\r\n                        \"<string>\"\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ],\r\n    \"sortBy\": \"<string>\",\r\n    \"descending\": \"<boolean>\"\r\n}"},"url":{"raw":"https://api.virtuoussoftware.com/api/Communication/Query?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Communication","Query"],"query":[{"key":"skip","value":"<integer>","description":"The number of records to skip. Default = 0."},{"key":"take","value":"<integer>","description":"The number of records to take. Default = 10. Max is 1000."}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\r\n\t\"list\": [\r\n\t\t{\r\n\t\t\t\"campaignId\": \"<integer>\",\r\n\t\t\t\"campaignName\": \"<string>\",\r\n\t\t\t\"channelType\": \"<string>\",\r\n\t\t\t\"communicationType\": \"<string>\",\r\n\t\t\t\"startdateTimeUtc\": \"<dateTime>\",\r\n\t\t\t\"givingGoal\": \"<decimal>\",\r\n\t\t\t\"projectId\": \"<integer>\",\r\n\t\t\t\"projectCode\": \"<string>\",\r\n            \"projectName\": \"<string>\",\r\n            \"createdDateTimeUtc\": \"<dateTime>\",\r\n            \"createdByUser\": \"<string>\",\r\n            \"lastModifiedDateTimeUtc\": \"<datTime>\",\r\n            \"modifiedByUser\": \"<string>\"\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"campaignId\": \"<integer>\",\r\n\t\t\t\"campaignName\": \"<string>\",\r\n\t\t\t\"channelType\": \"<string>\",\r\n\t\t\t\"communicationType\": \"<string>\",\r\n\t\t\t\"startdateTimeUtc\": \"<dateTime>\",\r\n\t\t\t\"givingGoal\": \"<decimal>\",\r\n\t\t\t\"projectId\": \"<integer>\",\r\n\t\t\t\"projectCode\": \"<string>\",\r\n            \"projectName\": \"<string>\",\r\n            \"createdDateTimeUtc\": \"<dateTime>\",\r\n            \"createdByUser\": \"<string>\",\r\n            \"lastModifiedDateTimeUtc\": \"<datTime>\",\r\n            \"modifiedByUser\": \"<string>\"\r\n\t\t}\r\n\t],\r\n\t\"total\": \"<integer>\"\r\n}"}],"_postman_id":"b5c56ac4-b846-4bcb-95bd-dc34b31c26d9"},{"name":"Communication Query Options","id":"ec64315c-7fc3-49b4-9e5f-22e9a277514b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Communication/QueryOptions","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Communication","QueryOptions"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"55baf224-2d51-469e-b079-bc19fb79e476","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Communication/QueryOptions"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\r\n\t\"options\": [\r\n\t\t{\r\n\t\t\t\"parameter\": \"<string>\",\r\n\t\t\t\"type\": \"<string>\",\r\n\t\t\t\"operatorOptions\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"operator\": \"<string>\",\r\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\r\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"operator\": \"<string>\",\r\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\r\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\r\n\t\t\t\t}\r\n\t\t\t],\r\n\t\t\t\"valueOptions\": [\r\n\t\t\t\t\"<string>\",\r\n\t\t\t\t\"<string>\"\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"parameter\": \"<string>\",\r\n\t\t\t\"type\": \"<string>\",\r\n\t\t\t\"operatorOptions\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"operator\": \"<string>\",\r\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\r\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"operator\": \"<string>\",\r\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\r\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\r\n\t\t\t\t}\r\n\t\t\t],\r\n\t\t\t\"valueOptions\": [\r\n\t\t\t\t\"<string>\",\r\n\t\t\t\t\"<string>\"\r\n\t\t\t]\r\n\t\t}\r\n\t],\r\n\t\"operatorOptions\": [\r\n\t\t{\r\n\t\t\t\"operator\": \"<string>\",\r\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\r\n\t\t\t\"valueRequired\": \"<boolean>\"\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"operator\": \"<string>\",\r\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\r\n\t\t\t\"valueRequired\": \"<boolean>\"\r\n\t\t}\r\n\t]\r\n}"}],"_postman_id":"ec64315c-7fc3-49b4-9e5f-22e9a277514b"}],"id":"7e47d91e-c79b-4702-8041-823bb90e4257","description":"<p>A single campaign in Virtuous may have one or more campaign communications associated with it. These may all be different messaging, delivered through different channels, that are all part of one single campaign effort. For example, as part of your “Year-End Membership Drive” campaign, you may have a coordinated messaging effort that includes a teaser email (“Get Ready -- Here Comes the Big Drive!”), a call to action banner on your website (“Are You a Member? Click to Join Today!”), a direct mail brochure (“Friend, Here are Six Glossy Pages About What Membership Means to You.”), an event (“Winter Membership Jamboree”), an email invite to the event (“Come Join us at Our Winter Membership Jamboree!”), and a social media blitz (“Tweet Using Hashtag #ImAMemberBecause to Tell us Your Story!”). Each of these communications supports the overall campaign, but can be tracked separately using the Virtuous Fundraising Campaigns module.</p>\n","_postman_id":"7e47d91e-c79b-4702-8041-823bb90e4257","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Segments","item":[{"name":"Get the Segments for a Contact","id":"9de10a3f-c669-4203-be8b-d74bb69177bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Segment/ByContact/:contactId?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Segment","ByContact",":contactId"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The skip.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The take.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) The contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactId"}]}},"response":[{"id":"dad553b5-1240-4d3e-b792-bb83bd5ec421","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Segment/ByContact/:contactId?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Segment","ByContact",":contactId"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"code\": \"<string>\",\n\t\t\t\"communicationId\": \"<integer>\",\n\t\t\t\"communicationName\": \"<string>\",\n\t\t\t\"campaignId\": \"<integer>\",\n\t\t\t\"campaignName\": \"<string>\",\n\t\t\t\"segmentOrganizerId\": \"<integer>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"code\": \"<string>\",\n\t\t\t\"communicationId\": \"<integer>\",\n\t\t\t\"communicationName\": \"<string>\",\n\t\t\t\"campaignId\": \"<integer>\",\n\t\t\t\"campaignName\": \"<string>\",\n\t\t\t\"segmentOrganizerId\": \"<integer>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"9de10a3f-c669-4203-be8b-d74bb69177bd"},{"name":"Get a Segment","id":"67d28be5-8e4c-4afd-a896-b255919f6ada","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Segment/:segmentId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Segment",":segmentId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The segment identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"segmentId"}]}},"response":[{"id":"8110c3a2-e6c1-4c91-8566-017eb416a62b","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Segment/:segmentId","host":["https://api.virtuoussoftware.com"],"path":["api","Segment",":segmentId"],"variable":[{"key":"segmentId","value":"<integer>","description":"(Required) The segment identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"name\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"code\": \"<string>\",\n\t\"communicationId\": \"<integer>\",\n\t\"communicationName\": \"<string>\",\n\t\"campaignId\": \"<integer>\",\n\t\"campaignName\": \"<string>\",\n\t\"segmentOrganizerId\": \"<integer>\"\n}"},{"id":"502aa22c-78ba-4a2a-aa08-1c957b56504a","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Segment/:segmentId","host":["https://api.virtuoussoftware.com"],"path":["api","Segment",":segmentId"],"variable":[{"key":"segmentId","value":"<integer>","description":"(Required) The segment identifier."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"67d28be5-8e4c-4afd-a896-b255919f6ada"},{"name":"Get a Segment using a unique Code","id":"d7df75ab-a08a-4e12-ad06-e7809baa38bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Segment/Code/:segmentCode","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Segment","Code",":segmentCode"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The segment code.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"segmentCode"}]}},"response":[{"id":"4001f32e-ced7-4010-b86a-20e3d4dedf05","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Segment/Code/:segmentCode","host":["https://api.virtuoussoftware.com"],"path":["api","Segment","Code",":segmentCode"],"variable":[{"key":"segmentCode","value":"<string>","description":"(Required) The segment code."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"name\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"code\": \"<string>\",\n\t\"communicationId\": \"<integer>\",\n\t\"communicationName\": \"<string>\",\n\t\"campaignId\": \"<integer>\",\n\t\"campaignName\": \"<string>\",\n\t\"segmentOrganizerId\": \"<integer>\"\n}"},{"id":"60acfd10-6f21-47cd-be33-1862a876cbe0","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Segment/Code/:segmentCode","host":["https://api.virtuoussoftware.com"],"path":["api","Segment","Code",":segmentCode"],"variable":[{"key":"segmentCode","value":"<string>","description":"(Required) The segment code."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d7df75ab-a08a-4e12-ad06-e7809baa38bd"},{"name":"Find Segments","id":"0041ef6c-9cc9-415d-a5b8-7765636d6529","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"search\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Segment/Search?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Segment","Search"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>How many items to skip.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>How many items to take.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"88dbf41c-88c2-413f-a572-d539a33008f7","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Segment/Search?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Segment","Search"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"code\": \"<string>\",\n\t\t\t\"communicationId\": \"<integer>\",\n\t\t\t\"communicationName\": \"<string>\",\n\t\t\t\"campaignId\": \"<integer>\",\n\t\t\t\"campaignName\": \"<string>\",\n\t\t\t\"segmentOrganizerId\": \"<integer>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"code\": \"<string>\",\n\t\t\t\"communicationId\": \"<integer>\",\n\t\t\t\"communicationName\": \"<string>\",\n\t\t\t\"campaignId\": \"<integer>\",\n\t\t\t\"campaignName\": \"<string>\",\n\t\t\t\"segmentOrganizerId\": \"<integer>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"},{"id":"fc920e3d-a866-494c-a764-8b5a755c7c15","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"description\": \"<string>\",\n    \"totalContacts\": \"<integer>\",\n    \"contactQueryId\": \"<integer>\",\n    \"costPerContact\": \"<double>\",\n    \"packageCode\": \"<string>\",\n    \"packageDescription\": \"<string>\",\n    \"receiptSegmentId\": \"<integer>\",\n    \"segmentOrganizerId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Segment/:segmentId","host":["https://api.virtuoussoftware.com"],"path":["api","Segment",":segmentId"],"variable":[{"key":"segmentId","value":"<integer>","description":"(Required) The segment identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"0041ef6c-9cc9-415d-a5b8-7765636d6529"},{"name":"Create a Segment","id":"7a3c8a1d-6649-4c2c-8f2f-3fda3d889485","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"communicationId\": \"<integer>\",\n    \"description\": \"<string>\",\n    \"totalContacts\": \"<integer>\",\n    \"contactQueryId\": \"<integer>\",\n    \"costPerContact\": \"<double>\",\n    \"packageCode\": \"<string>\",\n    \"packageDescription\": \"<string>\",\n    \"receiptSegmentId\": \"<integer>\",\n    \"segmentOrganizerId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Segment","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Segment"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"53f3a24b-e030-4196-b592-2cd5eee931b4","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"communicationId\": \"<integer>\",\n    \"description\": \"<string>\",\n    \"totalContacts\": \"<integer>\",\n    \"contactQueryId\": \"<integer>\",\n    \"costPerContact\": \"<double>\",\n    \"packageCode\": \"<string>\",\n    \"packageDescription\": \"<string>\",\n    \"receiptSegmentId\": \"<integer>\",\n    \"segmentOrganizerId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Segment"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"name\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"code\": \"<string>\",\n\t\"communicationId\": \"<integer>\",\n\t\"communicationName\": \"<string>\",\n\t\"campaignId\": \"<integer>\",\n\t\"campaignName\": \"<string>\",\n\t\"segmentOrganizerId\": \"<integer>\"\n}"},{"id":"691c6954-83fa-4ad7-8df2-eb3a93048909","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"communicationId\": \"<integer>\",\n    \"description\": \"<string>\",\n    \"totalContacts\": \"<integer>\",\n    \"contactQueryId\": \"<integer>\",\n    \"costPerContact\": \"<double>\",\n    \"packageCode\": \"<string>\",\n    \"packageDescription\": \"<string>\",\n    \"receiptSegmentId\": \"<integer>\",\n    \"segmentOrganizerId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Segment"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"7a3c8a1d-6649-4c2c-8f2f-3fda3d889485"},{"name":"Update a Segment","id":"d376626f-7fab-4707-92ba-c542082cc038","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"description\": \"<string>\",\n    \"totalContacts\": \"<integer>\",\n    \"contactQueryId\": \"<integer>\",\n    \"costPerContact\": \"<double>\",\n    \"packageCode\": \"<string>\",\n    \"packageDescription\": \"<string>\",\n    \"receiptSegmentId\": \"<integer>\",\n    \"segmentOrganizerId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Segment/:segmentId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Segment",":segmentId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The segment identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"segmentId"}]}},"response":[{"id":"6e778dcd-a91a-4489-80f2-ab23342f572c","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"description\": \"<string>\",\n    \"totalContacts\": \"<integer>\",\n    \"contactQueryId\": \"<integer>\",\n    \"costPerContact\": \"<double>\",\n    \"packageCode\": \"<string>\",\n    \"packageDescription\": \"<string>\",\n    \"receiptSegmentId\": \"<integer>\",\n    \"segmentOrganizerId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Segment/:segmentId","host":["https://api.virtuoussoftware.com"],"path":["api","Segment",":segmentId"],"variable":[{"key":"segmentId","value":"<integer>","description":"(Required) The segment identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"name\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"code\": \"<string>\",\n\t\"communicationId\": \"<integer>\",\n\t\"communicationName\": \"<string>\",\n\t\"campaignId\": \"<integer>\",\n\t\"campaignName\": \"<string>\",\n\t\"segmentOrganizerId\": \"<integer>\"\n}"}],"_postman_id":"d376626f-7fab-4707-92ba-c542082cc038"}],"id":"85981fb2-3e4c-453b-9d75-53e4cf60c8a2","description":"<p>Segments may be the most visible aspect of the Campaign hierarchy. Just as each campaign may have one or more campaign communications, each communication may in turn have one or more segments. This allows you to tweak messaging for specific audiences, and have one version of a mailer for non-givers and another version of the same mailer for mid-level or high-end givers. Segments are also used to tie gifts to a particular campaign. When viewing gifts in Virtuous, the Segment will always be listed. Picking a segment name that clearly identifies the right campaign can be a big help when quickly scanning a contact’s donation history.</p>\n","_postman_id":"85981fb2-3e4c-453b-9d75-53e4cf60c8a2","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}}],"id":"8d409939-e207-47d6-b426-ebbc8a41a62a","_postman_id":"8d409939-e207-47d6-b426-ebbc8a41a62a","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Projects","item":[{"name":"How to Get Projects","item":[{"name":"Get Project","id":"66885992-1f50-439e-a9fe-bde864ff24d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Project/:projectId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Project",":projectId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The project identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"projectId"}]}},"response":[{"id":"231c876d-2496-4606-8d72-d74eadabaed0","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Project/:projectId","host":["https://api.virtuoussoftware.com"],"path":["api","Project",":projectId"],"variable":[{"key":"projectId","value":"<integer>","description":"(Required) The project identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"name\": \"<string>\",\n\t\"projectCode\": \"<string>\",\n\t\"externalAccountingCode\": \"<string>\",\n\t\"onlineDisplayName\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"photoUrl\": \"<string>\",\n\t\"parentId\": \"<integer>\",\n\t\"parentName\": \"<string>\",\n\t\"isSubProject\": \"<boolean>\",\n\t\"inventoryStatus\": \"<string>\",\n    \"type\": \"<string>\",\n\t\"location\": \"<string>\",\n\t\"isRestrictedToGiftSpecifications\": \"<boolean>\",\n\t\"isLimitedToFinancialNeed\": \"<boolean>\",\n\t\"isPublic\": \"<boolean>\",\n\t\"isActive\": \"<boolean>\",\n\t\"isAvailableOnline\": \"<boolean>\",\n\t\"isTaxDeductible\": \"<boolean>\",\n\t\"treatAsAccountsPayable\": \"<boolean>\",\n\t\"beginningBalance\": \"<double>\",\n\t\"currentBalance\": \"<double>\",\n\t\"financialNeedType\": \"<string>\",\n\t\"financialNeedFrequency\": \"<string>\",\n\t\"financialNeedAmount\": \"<double>\",\n\t\"startDate\": \"<dateTime>\",\n\t\"endDate\": \"<dateTime>\",\n\t\"durationType\": \"<string>\",\n\t\"lifeToDateGiving\": \"<double>\",\n\t\"lifeToDateGiftCount\": \"<integer>\",\n\t\"lifeToDateGiversCount\": \"<integer>\",\n\t\"lifeToDateExpenseTotal\": \"<double>\",\n\t\"calendarYearToDateGiving\": \"<double>\",\n\t\"calendarYearToDateGiftCount\": \"<integer>\",\n\t\"calendarYearToDateGiversCount\": \"<integer>\",\n\t\"calendarYearToDateExpenseTotal\": \"<double>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"giftSpecifications\": [\n\t\t{\n\t\t\t\"amount\": \"<double>\",\n\t\t\t\"frequency\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"amount\": \"<double>\",\n\t\t\t\"frequency\": \"<string>\"\n\t\t}\n\t],\n\t\"customFields\": \"<object>\"\n}"},{"id":"dadd2e95-1238-4b98-97ad-19e51fe5e81e","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Project/:projectId","host":["https://api.virtuoussoftware.com"],"path":["api","Project",":projectId"],"variable":[{"key":"projectId","value":"<integer>","description":"(Required) The project identifier."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"66885992-1f50-439e-a9fe-bde864ff24d5"},{"name":"Get a Project using a unique Code","id":"242b03c9-23db-459e-a02d-8b54987282f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Project/Code/:projectCode","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Project","Code",":projectCode"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The project code.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"projectCode"}]}},"response":[{"id":"41857fdb-306d-4d56-9788-b0d96eea6235","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Project/Code/:projectCode","host":["https://api.virtuoussoftware.com"],"path":["api","Project","Code",":projectCode"],"variable":[{"key":"projectCode","value":"<string>","description":"(Required) The project code."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"name\": \"<string>\",\n\t\"projectCode\": \"<string>\",\n\t\"externalAccountingCode\": \"<string>\",\n\t\"onlineDisplayName\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"photoUrl\": \"<string>\",\n\t\"parentId\": \"<integer>\",\n\t\"parentName\": \"<string>\",\n\t\"isSubProject\": \"<boolean>\",\n\t\"inventoryStatus\": \"<string>\",\n\t\"type\": \"<string>\",\n\t\"location\": \"<string>\",\n\t\"isRestrictedToGiftSpecifications\": \"<boolean>\",\n\t\"isLimitedToFinancialNeed\": \"<boolean>\",\n\t\"isPublic\": \"<boolean>\",\n\t\"isActive\": \"<boolean>\",\n\t\"isAvailableOnline\": \"<boolean>\",\n\t\"isTaxDeductible\": \"<boolean>\",\n\t\"treatAsAccountsPayable\": \"<boolean>\",\n\t\"beginningBalance\": \"<double>\",\n\t\"currentBalance\": \"<double>\",\n\t\"financialNeedType\": \"<string>\",\n\t\"financialNeedFrequency\": \"<string>\",\n\t\"financialNeedAmount\": \"<double>\",\n\t\"startDate\": \"<dateTime>\",\n\t\"endDate\": \"<dateTime>\",\n\t\"durationType\": \"<string>\",\n\t\"lifeToDateGiving\": \"<double>\",\n\t\"lifeToDateGiftCount\": \"<integer>\",\n\t\"lifeToDateGiversCount\": \"<integer>\",\n\t\"lifeToDateExpenseTotal\": \"<double>\",\n\t\"calendarYearToDateGiving\": \"<double>\",\n\t\"calendarYearToDateGiftCount\": \"<integer>\",\n\t\"calendarYearToDateGiversCount\": \"<integer>\",\n\t\"calendarYearToDateExpenseTotal\": \"<double>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"giftSpecifications\": [\n\t\t{\n\t\t\t\"amount\": \"<double>\",\n\t\t\t\"frequency\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"amount\": \"<double>\",\n\t\t\t\"frequency\": \"<string>\"\n\t\t}\n\t],\n\t\"customFields\": \"<object>\"\n}"},{"id":"121eb806-c1c5-4b23-bbcf-11ee97c7ebe1","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Project/Code/:projectCode","host":["https://api.virtuoussoftware.com"],"path":["api","Project","Code",":projectCode"],"variable":[{"key":"projectCode","value":"<string>","description":"(Required) The project code."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"242b03c9-23db-459e-a02d-8b54987282f5"},{"name":"Find Projects","id":"fc2b8040-214c-4123-adce-4769aadbfb2b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"search\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Project/Search?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Project","Search"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>How many items to skip.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>How many items to take.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"d6ac11c4-a263-457c-b43e-c440c502ace5","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Segment/Search?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Segment","Search"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\"onlineDisplayName\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"photoUrl\": \"<string>\",\n\t\t\t\"parentId\": \"<integer>\",\n\t\t\t\"parentName\": \"<string>\",\n\t\t\t\"isSubProject\": \"<boolean>\",\n\t\t\t\"inventoryStatus\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"location\": \"<string>\",\n\t\t\t\"isRestrictedToGiftSpecifications\": \"<boolean>\",\n\t\t\t\"isLimitedToFinancialNeed\": \"<boolean>\",\n\t\t\t\"isPublic\": \"<boolean>\",\n\t\t\t\"isActive\": \"<boolean>\",\n\t\t\t\"isAvailableOnline\": \"<boolean>\",\n\t\t\t\"isTaxDeductible\": \"<boolean>\",\n\t\t\t\"treatAsAccountsPayable\": \"<boolean>\",\n\t\t\t\"beginningBalance\": \"<double>\",\n\t\t\t\"currentBalance\": \"<double>\",\n\t\t\t\"financialNeedType\": \"<string>\",\n\t\t\t\"financialNeedFrequency\": \"<string>\",\n\t\t\t\"financialNeedAmount\": \"<double>\",\n\t\t\t\"startDate\": \"<dateTime>\",\n\t\t\t\"endDate\": \"<dateTime>\",\n\t\t\t\"durationType\": \"<string>\",\n\t\t\t\"lifeToDateGiving\": \"<double>\",\n\t\t\t\"lifeToDateGiftCount\": \"<integer>\",\n\t\t\t\"lifeToDateGiversCount\": \"<integer>\",\n\t\t\t\"lifeToDateExpenseTotal\": \"<double>\",\n\t\t\t\"calendarYearToDateGiving\": \"<double>\",\n\t\t\t\"calendarYearToDateGiftCount\": \"<integer>\",\n\t\t\t\"calendarYearToDateGiversCount\": \"<integer>\",\n\t\t\t\"calendarYearToDateExpenseTotal\": \"<double>\",\n\t\t\t\"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n\t\t\t\"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"giftSpecifications\": [\n\t\t\t\t{\n\t\t\t\t\t\"amount\": \"<double>\",\n\t\t\t\t\t\"frequency\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"amount\": \"<double>\",\n\t\t\t\t\t\"frequency\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"customFields\": \"<object>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\"onlineDisplayName\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"photoUrl\": \"<string>\",\n\t\t\t\"parentId\": \"<integer>\",\n\t\t\t\"parentName\": \"<string>\",\n\t\t\t\"isSubProject\": \"<boolean>\",\n\t\t\t\"inventoryStatus\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"location\": \"<string>\",\n\t\t\t\"isRestrictedToGiftSpecifications\": \"<boolean>\",\n\t\t\t\"isLimitedToFinancialNeed\": \"<boolean>\",\n\t\t\t\"isPublic\": \"<boolean>\",\n\t\t\t\"isActive\": \"<boolean>\",\n\t\t\t\"isAvailableOnline\": \"<boolean>\",\n\t\t\t\"isTaxDeductible\": \"<boolean>\",\n\t\t\t\"treatAsAccountsPayable\": \"<boolean>\",\n\t\t\t\"beginningBalance\": \"<double>\",\n\t\t\t\"currentBalance\": \"<double>\",\n\t\t\t\"financialNeedType\": \"<string>\",\n\t\t\t\"financialNeedFrequency\": \"<string>\",\n\t\t\t\"financialNeedAmount\": \"<double>\",\n\t\t\t\"startDate\": \"<dateTime>\",\n\t\t\t\"endDate\": \"<dateTime>\",\n\t\t\t\"durationType\": \"<string>\",\n\t\t\t\"lifeToDateGiving\": \"<double>\",\n\t\t\t\"lifeToDateGiftCount\": \"<integer>\",\n\t\t\t\"lifeToDateGiversCount\": \"<integer>\",\n\t\t\t\"lifeToDateExpenseTotal\": \"<double>\",\n\t\t\t\"calendarYearToDateGiving\": \"<double>\",\n\t\t\t\"calendarYearToDateGiftCount\": \"<integer>\",\n\t\t\t\"calendarYearToDateGiversCount\": \"<integer>\",\n\t\t\t\"calendarYearToDateExpenseTotal\": \"<double>\",\n\t\t\t\"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n\t\t\t\"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"giftSpecifications\": [\n\t\t\t\t{\n\t\t\t\t\t\"amount\": \"<double>\",\n\t\t\t\t\t\"frequency\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"amount\": \"<double>\",\n\t\t\t\t\t\"frequency\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"customFields\": \"<object>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"},{"id":"4a9a0993-bc01-41fb-9e51-f2dc1a18c2aa","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"description\": \"<string>\",\n    \"totalContacts\": \"<integer>\",\n    \"contactQueryId\": \"<integer>\",\n    \"costPerContact\": \"<double>\",\n    \"packageCode\": \"<string>\",\n    \"packageDescription\": \"<string>\",\n    \"receiptSegmentId\": \"<integer>\",\n    \"segmentOrganizerId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Segment/:segmentId","host":["https://api.virtuoussoftware.com"],"path":["api","Segment",":segmentId"],"variable":[{"key":"segmentId","value":"<integer>","description":"(Required) The segment identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"fc2b8040-214c-4123-adce-4769aadbfb2b"}],"id":"0a87b26f-7797-4f3b-aac6-dbde994d58ad","_postman_id":"0a87b26f-7797-4f3b-aac6-dbde994d58ad","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"How to Create and Update Projects","item":[{"name":"Create a Project","id":"45aa5f41-d8a8-4cee-b61d-1f37d6f2e951","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"revenueAccountingCode\": \"<string>\",\n    \"inventoryStatus\": \"<string>\",\n    \"type\": \"<string>\",\n    \"location\": \"<string>\",\n    \"onlineDisplayName\": \"<string>\",\n    \"description\": \"<string>\",\n    \"externalAccountingCode\": \"<string>\",\n    \"durationType\": \"<string>\",\n    \"startDate\": \"<dateTime>\",\n    \"endDate\": \"<dateTime>\",\n    \"financialNeedAmount\": \"<double>\",\n    \"financialNeedType\": \"<string>\",\n    \"financialNeedFrequency\": \"<string>\",\n    \"isPublic\": \"<boolean>\",\n    \"isActive\": \"<boolean>\",\n    \"isAvailableOnline\": \"<boolean>\",\n    \"isLimitedToFinancialNeed\": \"<boolean>\",\n    \"isTaxDeductible\": \"<boolean>\",\n    \"treatAsAccountsPayable\": \"<boolean>\",\n    \"isRestrictedToGiftSpecifications\": \"<boolean>\",\n    \"parentId\": \"<integer>\",\n    \"beginningBalance\": \"<double>\",\n    \"currentBalance\": \"<double>\",\n    \"enableSync\": \"<boolean>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Project?disableWebhookUpdates=<boolean>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Project"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>Optional webhook owner type to exclude when updating object</p>\n","type":"text/plain"},"key":"disableWebhookUpdates","value":"<boolean>"}],"variable":[]}},"response":[{"id":"cc11b45b-23ea-4a35-9574-258892017a60","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"revenueAccountingCode\": \"<string>\",\n    \"inventoryStatus\": \"<string>\",\n    \"type\": \"<string>\",\n    \"location\": \"<string>\",\n    \"onlineDisplayName\": \"<string>\",\n    \"description\": \"<string>\",\n    \"externalAccountingCode\": \"<string>\",\n    \"durationType\": \"<string>\",\n    \"startDate\": \"<dateTime>\",\n    \"endDate\": \"<dateTime>\",\n    \"financialNeedAmount\": \"<double>\",\n    \"financialNeedType\": \"<string>\",\n    \"financialNeedFrequency\": \"<string>\",\n    \"isPublic\": \"<boolean>\",\n    \"isActive\": \"<boolean>\",\n    \"isAvailableOnline\": \"<boolean>\",\n    \"isLimitedToFinancialNeed\": \"<boolean>\",\n    \"isTaxDeductible\": \"<boolean>\",\n    \"treatAsAccountsPayable\": \"<boolean>\",\n    \"isRestrictedToGiftSpecifications\": \"<boolean>\",\n    \"parentId\": \"<integer>\",\n    \"beginningBalance\": \"<double>\",\n    \"currentBalance\": \"<double>\",\n    \"enableSync\": \"<boolean>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Project?disableWebhookUpdates=<boolean>","host":["https://api.virtuoussoftware.com"],"path":["api","Project"],"query":[{"key":"disableWebhookUpdates","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"name\": \"<string>\",\n\t\"projectCode\": \"<string>\",\n\t\"externalAccountingCode\": \"<string>\",\n\t\"onlineDisplayName\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"photoUrl\": \"<string>\",\n\t\"parentId\": \"<integer>\",\n\t\"parentName\": \"<string>\",\n\t\"isSubProject\": \"<boolean>\",\n\t\"inventoryStatus\": \"<string>\",\n\t\"type\": \"<string>\",\n\t\"location\": \"<string>\",\n\t\"isRestrictedToGiftSpecifications\": \"<boolean>\",\n\t\"isLimitedToFinancialNeed\": \"<boolean>\",\n\t\"isPublic\": \"<boolean>\",\n\t\"isActive\": \"<boolean>\",\n\t\"isAvailableOnline\": \"<boolean>\",\n\t\"isTaxDeductible\": \"<boolean>\",\n\t\"treatAsAccountsPayable\": \"<boolean>\",\n\t\"beginningBalance\": \"<double>\",\n\t\"currentBalance\": \"<double>\",\n\t\"financialNeedType\": \"<string>\",\n\t\"financialNeedFrequency\": \"<string>\",\n\t\"financialNeedAmount\": \"<double>\",\n\t\"startDate\": \"<dateTime>\",\n\t\"endDate\": \"<dateTime>\",\n\t\"durationType\": \"<string>\",\n\t\"lifeToDateGiving\": \"<double>\",\n\t\"lifeToDateGiftCount\": \"<integer>\",\n\t\"lifeToDateGiversCount\": \"<integer>\",\n\t\"lifeToDateExpenseTotal\": \"<double>\",\n\t\"calendarYearToDateGiving\": \"<double>\",\n\t\"calendarYearToDateGiftCount\": \"<integer>\",\n\t\"calendarYearToDateGiversCount\": \"<integer>\",\n\t\"calendarYearToDateExpenseTotal\": \"<double>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"giftSpecifications\": [\n\t\t{\n\t\t\t\"amount\": \"<double>\",\n\t\t\t\"frequency\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"amount\": \"<double>\",\n\t\t\t\"frequency\": \"<string>\"\n\t\t}\n\t],\n\t\"customFields\": \"<object>\"\n}"}],"_postman_id":"45aa5f41-d8a8-4cee-b61d-1f37d6f2e951"},{"name":"Update a Project","id":"aedd19ae-f342-4daf-b6a5-a2e3bbd1ed55","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"revenueAccountingCode\": \"<string>\",\n    \"inventoryStatus\": \"<string>\",\n    \"type\": \"<string>\",\n    \"location\": \"<string>\",\n    \"onlineDisplayName\": \"<string>\",\n    \"description\": \"<string>\",\n    \"externalAccountingCode\": \"<string>\",\n    \"durationType\": \"<string>\",\n    \"startDate\": \"<dateTime>\",\n    \"endDate\": \"<dateTime>\",\n    \"financialNeedAmount\": \"<double>\",\n    \"financialNeedType\": \"<string>\",\n    \"financialNeedFrequency\": \"<string>\",\n    \"isPublic\": \"<boolean>\",\n    \"isActive\": \"<boolean>\",\n    \"isAvailableOnline\": \"<boolean>\",\n    \"isLimitedToFinancialNeed\": \"<boolean>\",\n    \"isTaxDeductible\": \"<boolean>\",\n    \"treatAsAccountsPayable\": \"<boolean>\",\n    \"isRestrictedToGiftSpecifications\": \"<boolean>\",\n    \"parentId\": \"<integer>\",\n    \"beginningBalance\": \"<double>\",\n    \"currentBalance\": \"<double>\",\n    \"enableSync\": \"<boolean>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Project/:projectId?disableWebhookUpdates=<boolean>","description":"<p>Similar to other update methods in the API, excluding a property will remove it's value from the object. \nIf you're only updating a single property, the entire model is still required.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Project",":projectId"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>Optional name of type of webhook exclusion</p>\n","type":"text/plain"},"key":"disableWebhookUpdates","value":"<boolean>"}],"variable":[{"description":{"content":"<p>(Required) The project identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"projectId"}]}},"response":[{"id":"8939ae2a-6771-4abd-a614-53a1c0b37fa1","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"revenueAccountingCode\": \"<string>\",\n    \"inventoryStatus\": \"<string>\",\n    \"type\": \"<string>\",\n    \"location\": \"<string>\",\n    \"onlineDisplayName\": \"<string>\",\n    \"description\": \"<string>\",\n    \"externalAccountingCode\": \"<string>\",\n    \"durationType\": \"<string>\",\n    \"startDate\": \"<dateTime>\",\n    \"endDate\": \"<dateTime>\",\n    \"financialNeedAmount\": \"<double>\",\n    \"financialNeedType\": \"<string>\",\n    \"financialNeedFrequency\": \"<string>\",\n    \"isPublic\": \"<boolean>\",\n    \"isActive\": \"<boolean>\",\n    \"isAvailableOnline\": \"<boolean>\",\n    \"isLimitedToFinancialNeed\": \"<boolean>\",\n    \"isTaxDeductible\": \"<boolean>\",\n    \"treatAsAccountsPayable\": \"<boolean>\",\n    \"isRestrictedToGiftSpecifications\": \"<boolean>\",\n    \"parentId\": \"<integer>\",\n    \"beginningBalance\": \"<double>\",\n    \"currentBalance\": \"<double>\",\n    \"enableSync\": \"<boolean>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Project/:projectId?disableWebhookUpdates=<boolean>","host":["https://api.virtuoussoftware.com"],"path":["api","Project",":projectId"],"query":[{"key":"disableWebhookUpdates","value":"<boolean>"}],"variable":[{"key":"projectId","value":"<integer>","description":"(Required) The project identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"name\": \"<string>\",\n\t\"projectCode\": \"<string>\",\n\t\"externalAccountingCode\": \"<string>\",\n\t\"onlineDisplayName\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"photoUrl\": \"<string>\",\n\t\"parentId\": \"<integer>\",\n\t\"parentName\": \"<string>\",\n\t\"isSubProject\": \"<boolean>\",\n\t\"inventoryStatus\": \"<string>\",\n\t\"type\": \"<string>\",\n\t\"location\": \"<string>\",\n\t\"isRestrictedToGiftSpecifications\": \"<boolean>\",\n\t\"isLimitedToFinancialNeed\": \"<boolean>\",\n\t\"isPublic\": \"<boolean>\",\n\t\"isActive\": \"<boolean>\",\n\t\"isAvailableOnline\": \"<boolean>\",\n\t\"isTaxDeductible\": \"<boolean>\",\n\t\"treatAsAccountsPayable\": \"<boolean>\",\n\t\"beginningBalance\": \"<double>\",\n\t\"currentBalance\": \"<double>\",\n\t\"financialNeedType\": \"<string>\",\n\t\"financialNeedFrequency\": \"<string>\",\n\t\"financialNeedAmount\": \"<double>\",\n\t\"startDate\": \"<dateTime>\",\n\t\"endDate\": \"<dateTime>\",\n\t\"durationType\": \"<string>\",\n\t\"lifeToDateGiving\": \"<double>\",\n\t\"lifeToDateGiftCount\": \"<integer>\",\n\t\"lifeToDateGiversCount\": \"<integer>\",\n\t\"lifeToDateExpenseTotal\": \"<double>\",\n\t\"calendarYearToDateGiving\": \"<double>\",\n\t\"calendarYearToDateGiftCount\": \"<integer>\",\n\t\"calendarYearToDateGiversCount\": \"<integer>\",\n\t\"calendarYearToDateExpenseTotal\": \"<double>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"giftSpecifications\": [\n\t\t{\n\t\t\t\"amount\": \"<double>\",\n\t\t\t\"frequency\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"amount\": \"<double>\",\n\t\t\t\"frequency\": \"<string>\"\n\t\t}\n\t],\n\t\"customFields\": \"<object>\"\n}"}],"_postman_id":"aedd19ae-f342-4daf-b6a5-a2e3bbd1ed55"},{"name":"Update many Projects","id":"9345ac2e-bc27-4e33-b38a-18ac5048b084","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": \"<integer>\",\n        \"name\": \"<string>\",\n        \"projectCode\": \"<string>\",\n        \"onlineDisplayName\": \"<string>\",\n        \"description\": \"<string>\",\n        \"financialNeedAmount\": \"<double>\",\n        \"beginningBalance\": \"<double>\",\n        \"currentBalance\": \"<double>\",\n        \"type\": \"<string>\",\n        \"startDate\": \"<dateTime>\",\n        \"endDate\": \"<dateTime>\",\n        \"customFields\": \"<object>\"\n    },\n    {\n        \"id\": \"<integer>\",\n        \"name\": \"<string>\",\n        \"projectCode\": \"<string>\",\n        \"onlineDisplayName\": \"<string>\",\n        \"description\": \"<string>\",\n        \"financialNeedAmount\": \"<double>\",\n        \"beginningBalance\": \"<double>\",\n        \"currentBalance\": \"<double>\",\n        \"type\": \"<string>\",\n        \"startDate\": \"<dateTime>\",\n        \"endDate\": \"<dateTime>\",\n        \"customFields\": \"<object>\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Project","description":"<p>Use this endpoint anytime more than 1 project is going to be updated. \nPlease note that unlike other update endpoints this endpoint ONLY needs what is being updated (i.e. a patch).\nFor example, if you want to update the name on a project, only send the projectId and the name. \nThis ensures performance is top-notch.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Project"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"b2c5b279-333f-427d-a4bd-bfe258cf95bb","name":"OK","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": \"<integer>\",\n        \"name\": \"<string>\",\n        \"projectCode\": \"<string>\",\n        \"onlineDisplayName\": \"<string>\",\n        \"description\": \"<string>\",\n        \"financialNeedAmount\": \"<double>\",\n        \"beginningBalance\": \"<double>\",\n        \"currentBalance\": \"<double>\",\n        \"type\": \"<string>\",\n        \"startDate\": \"<dateTime>\",\n        \"endDate\": \"<dateTime>\",\n        \"customFields\": \"<object>\"\n    },\n    {\n        \"id\": \"<integer>\",\n        \"name\": \"<string>\",\n        \"projectCode\": \"<string>\",\n        \"onlineDisplayName\": \"<string>\",\n        \"description\": \"<string>\",\n        \"financialNeedAmount\": \"<double>\",\n        \"beginningBalance\": \"<double>\",\n        \"currentBalance\": \"<double>\",\n        \"type\": \"<string>\",\n        \"startDate\": \"<dateTime>\",\n        \"endDate\": \"<dateTime>\",\n        \"customFields\": \"<object>\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Project"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"\"<object>\""},{"id":"a1777aba-0fc6-4434-9634-1ea6d3905510","name":"BadRequest","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": \"<integer>\",\n        \"name\": \"<string>\",\n        \"projectCode\": \"<string>\",\n        \"onlineDisplayName\": \"<string>\",\n        \"description\": \"<string>\",\n        \"financialNeedAmount\": \"<double>\",\n        \"beginningBalance\": \"<double>\",\n        \"currentBalance\": \"<double>\",\n        \"type\": \"<string>\",\n        \"startDate\": \"<dateTime>\",\n        \"endDate\": \"<dateTime>\",\n        \"customFields\": \"<object>\"\n    },\n    {\n        \"id\": \"<integer>\",\n        \"name\": \"<string>\",\n        \"projectCode\": \"<string>\",\n        \"onlineDisplayName\": \"<string>\",\n        \"description\": \"<string>\",\n        \"financialNeedAmount\": \"<double>\",\n        \"beginningBalance\": \"<double>\",\n        \"currentBalance\": \"<double>\",\n        \"type\": \"<string>\",\n        \"startDate\": \"<dateTime>\",\n        \"endDate\": \"<dateTime>\",\n        \"customFields\": \"<object>\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Project"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9345ac2e-bc27-4e33-b38a-18ac5048b084"},{"name":"Temporarily Change Project Inventory Status","id":"29dafeff-28ab-4e9f-9794-5f31d97144b3","request":{"method":"PUT","header":[],"url":"https://api.virtuoussoftware.com/api/Project/:projectId/Status?inventoryStatus=<string>&durationMinutes=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Project",":projectId","Status"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>(Required) The inventory status status.</p>\n","type":"text/plain"},"key":"inventoryStatus","value":"<string>"},{"description":{"content":"<p>The inventory status duration minutes.</p>\n","type":"text/plain"},"key":"durationMinutes","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) The project identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"projectId"}]}},"response":[{"id":"47d11017-3677-49ff-9f7d-36459aa929cd","name":"OK","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Project/:projectId/Status?inventoryStatus=<string>&durationMinutes=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Project",":projectId","Status"],"query":[{"key":"inventoryStatus","value":"<string>"},{"key":"durationMinutes","value":"<integer>"}],"variable":[{"key":"projectId","value":"<integer>","description":"(Required) The project identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"29dafeff-28ab-4e9f-9794-5f31d97144b3"},{"name":"Update Project Balance","id":"a143c7e8-044b-4617-80aa-8db2c13af1fb","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"beginningBalance\": \"<double>\",\n    \"currentBalance\": \"<double>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Project/:projectId/Balance","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Project",":projectId","Balance"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"projectId"}]}},"response":[{"id":"d4a4335d-43f6-4e5c-a1dd-b13b1142e7bd","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"beginningBalance\": \"<double>\",\n    \"currentBalance\": \"<double>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Project/:projectId/Balance","host":["https://api.virtuoussoftware.com"],"path":["api","Project",":projectId","Balance"],"variable":[{"key":"projectId","value":"<integer>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"name\": \"<string>\",\n\t\"projectCode\": \"<string>\",\n\t\"externalAccountingCode\": \"<string>\",\n\t\"onlineDisplayName\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"photoUrl\": \"<string>\",\n\t\"parentId\": \"<integer>\",\n\t\"parentName\": \"<string>\",\n\t\"isSubProject\": \"<boolean>\",\n\t\"inventoryStatus\": \"<string>\",\n\t\"type\": \"<string>\",\n\t\"location\": \"<string>\",\n\t\"isRestrictedToGiftSpecifications\": \"<boolean>\",\n\t\"isLimitedToFinancialNeed\": \"<boolean>\",\n\t\"isPublic\": \"<boolean>\",\n\t\"isActive\": \"<boolean>\",\n\t\"isAvailableOnline\": \"<boolean>\",\n\t\"isTaxDeductible\": \"<boolean>\",\n\t\"treatAsAccountsPayable\": \"<boolean>\",\n\t\"beginningBalance\": \"<double>\",\n\t\"currentBalance\": \"<double>\",\n\t\"financialNeedType\": \"<string>\",\n\t\"financialNeedFrequency\": \"<string>\",\n\t\"financialNeedAmount\": \"<double>\",\n\t\"startDate\": \"<dateTime>\",\n\t\"endDate\": \"<dateTime>\",\n\t\"durationType\": \"<string>\",\n\t\"lifeToDateGiving\": \"<double>\",\n\t\"lifeToDateGiftCount\": \"<integer>\",\n\t\"lifeToDateGiversCount\": \"<integer>\",\n\t\"lifeToDateExpenseTotal\": \"<double>\",\n\t\"calendarYearToDateGiving\": \"<double>\",\n\t\"calendarYearToDateGiftCount\": \"<integer>\",\n\t\"calendarYearToDateGiversCount\": \"<integer>\",\n\t\"calendarYearToDateExpenseTotal\": \"<double>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"giftSpecifications\": [\n\t\t{\n\t\t\t\"amount\": \"<double>\",\n\t\t\t\"frequency\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"amount\": \"<double>\",\n\t\t\t\"frequency\": \"<string>\"\n\t\t}\n\t],\n\t\"customFields\": \"<object>\"\n}"}],"_postman_id":"a143c7e8-044b-4617-80aa-8db2c13af1fb"}],"id":"119a2a65-1413-4b2d-adc0-a37f8ee99e38","_postman_id":"119a2a65-1413-4b2d-adc0-a37f8ee99e38","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Configuration","item":[{"name":"Get Project Custom Fields Available","id":"e65cd70e-d1d1-41c9-8030-3d594a662ee7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Project/CustomFields","description":"<p>Will return all enabled custom fields available for the Project object.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Project","CustomFields"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"5f41d2d1-b393-494d-9c20-c9f24e93a35d","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Project/CustomFields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"dataType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"displayName\": \"<string>\",\n\t\t\"options\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t},\n\t{\n\t\t\"dataType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"displayName\": \"<string>\",\n\t\t\"options\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t}\n]"}],"_postman_id":"e65cd70e-d1d1-41c9-8030-3d594a662ee7"},{"name":"Get Project Types","id":"dad7c509-c57f-404f-97dc-f0ccc786d8c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Project/Types","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Project","Types"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"9be7173b-0212-4229-b387-6ba5d84e1a43","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Project/Types"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    \"Default\"\n]"}],"_postman_id":"dad7c509-c57f-404f-97dc-f0ccc786d8c3"}],"id":"4b1fb552-e69b-4efd-9bcd-c90be1fbbf0d","_postman_id":"4b1fb552-e69b-4efd-9bcd-c90be1fbbf0d","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Project Queries","item":[{"name":"Get Project Query Options","id":"786b0368-f1b2-438e-aac0-325c27774d0a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Project/QueryOptions","description":"<p>Returns all possible query options for Projects.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Project","QueryOptions"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"79894c34-89c7-47f7-a0a8-3b4b2ffd0556","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Project/QueryOptions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"options\": [\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t}\n\t],\n\t\"operatorOptions\": [\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t},\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t}\n\t]\n}"}],"_postman_id":"786b0368-f1b2-438e-aac0-325c27774d0a"},{"name":"Query Projects","id":"55a3da95-89f0-4ab6-b42e-6a529cbe42d8","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"groups\": [\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        }\n    ],\n    \"sortBy\": \"<string>\",\n    \"descending\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Project/Query?skip=<integer>&take=<integer>","description":"<p>To see which options can be sent, use the {M:Virtuous.WebApi.Controllers.ProjectController.QueryOptions} endpoint.\nIf you're going to consistently query for updated projects or new projects, don't. Use a webhook instead.\nIf requests are timing out, you may be asking for too many items at once. The max take is 1,000.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Project","Query"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10. Max is 1000.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"d5632988-424e-4176-b847-42fbe532662c","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Project/Query?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Project","Query"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\"onlineDisplayName\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"photoUrl\": \"<string>\",\n\t\t\t\"parentId\": \"<integer>\",\n\t\t\t\"parentName\": \"<string>\",\n\t\t\t\"isSubProject\": \"<boolean>\",\n\t\t\t\"inventoryStatus\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"location\": \"<string>\",\n\t\t\t\"isRestrictedToGiftSpecifications\": \"<boolean>\",\n\t\t\t\"isLimitedToFinancialNeed\": \"<boolean>\",\n\t\t\t\"isPublic\": \"<boolean>\",\n\t\t\t\"isActive\": \"<boolean>\",\n\t\t\t\"isAvailableOnline\": \"<boolean>\",\n\t\t\t\"isTaxDeductible\": \"<boolean>\",\n\t\t\t\"treatAsAccountsPayable\": \"<boolean>\",\n\t\t\t\"beginningBalance\": \"<double>\",\n\t\t\t\"currentBalance\": \"<double>\",\n\t\t\t\"financialNeedType\": \"<string>\",\n\t\t\t\"financialNeedFrequency\": \"<string>\",\n\t\t\t\"financialNeedAmount\": \"<double>\",\n\t\t\t\"startDate\": \"<dateTime>\",\n\t\t\t\"endDate\": \"<dateTime>\",\n\t\t\t\"durationType\": \"<string>\",\n\t\t\t\"lifeToDateGiving\": \"<double>\",\n\t\t\t\"lifeToDateGiftCount\": \"<integer>\",\n\t\t\t\"lifeToDateGiversCount\": \"<integer>\",\n\t\t\t\"lifeToDateExpenseTotal\": \"<double>\",\n\t\t\t\"calendarYearToDateGiving\": \"<double>\",\n\t\t\t\"calendarYearToDateGiftCount\": \"<integer>\",\n\t\t\t\"calendarYearToDateGiversCount\": \"<integer>\",\n\t\t\t\"calendarYearToDateExpenseTotal\": \"<double>\",\n\t\t\t\"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n\t\t\t\"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"giftSpecifications\": [\n\t\t\t\t{\n\t\t\t\t\t\"amount\": \"<double>\",\n\t\t\t\t\t\"frequency\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"amount\": \"<double>\",\n\t\t\t\t\t\"frequency\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"customFields\": \"<object>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\"onlineDisplayName\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"photoUrl\": \"<string>\",\n\t\t\t\"parentId\": \"<integer>\",\n\t\t\t\"parentName\": \"<string>\",\n\t\t\t\"isSubProject\": \"<boolean>\",\n\t\t\t\"inventoryStatus\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"location\": \"<string>\",\n\t\t\t\"isRestrictedToGiftSpecifications\": \"<boolean>\",\n\t\t\t\"isLimitedToFinancialNeed\": \"<boolean>\",\n\t\t\t\"isPublic\": \"<boolean>\",\n\t\t\t\"isActive\": \"<boolean>\",\n\t\t\t\"isAvailableOnline\": \"<boolean>\",\n\t\t\t\"isTaxDeductible\": \"<boolean>\",\n\t\t\t\"treatAsAccountsPayable\": \"<boolean>\",\n\t\t\t\"beginningBalance\": \"<double>\",\n\t\t\t\"currentBalance\": \"<double>\",\n\t\t\t\"financialNeedType\": \"<string>\",\n\t\t\t\"financialNeedFrequency\": \"<string>\",\n\t\t\t\"financialNeedAmount\": \"<double>\",\n\t\t\t\"startDate\": \"<dateTime>\",\n\t\t\t\"endDate\": \"<dateTime>\",\n\t\t\t\"durationType\": \"<string>\",\n\t\t\t\"lifeToDateGiving\": \"<double>\",\n\t\t\t\"lifeToDateGiftCount\": \"<integer>\",\n\t\t\t\"lifeToDateGiversCount\": \"<integer>\",\n\t\t\t\"lifeToDateExpenseTotal\": \"<double>\",\n\t\t\t\"calendarYearToDateGiving\": \"<double>\",\n\t\t\t\"calendarYearToDateGiftCount\": \"<integer>\",\n\t\t\t\"calendarYearToDateGiversCount\": \"<integer>\",\n\t\t\t\"calendarYearToDateExpenseTotal\": \"<double>\",\n\t\t\t\"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n\t\t\t\"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"giftSpecifications\": [\n\t\t\t\t{\n\t\t\t\t\t\"amount\": \"<double>\",\n\t\t\t\t\t\"frequency\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"amount\": \"<double>\",\n\t\t\t\t\t\"frequency\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"customFields\": \"<object>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"},{"id":"4146253d-4448-45d5-9c26-aacdb00b747b","name":"BadRequest","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Project/Query?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Project","Query"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"55a3da95-89f0-4ab6-b42e-6a529cbe42d8"}],"id":"6b36a43c-2172-4d8f-84a1-20df1f77354e","_postman_id":"6b36a43c-2172-4d8f-84a1-20df1f77354e","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Project Expenses","item":[{"name":"Get Project Expenses for a Project","id":"3515549f-dbe5-41ae-8575-936e648abe88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ProjectExpense?projectId=<integer>&projectCode=<string>&filter=<string>&take=<integer>&count=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ProjectExpense"],"host":["https://api.virtuoussoftware.com"],"query":[{"key":"projectId","value":"<integer>"},{"key":"projectCode","value":"<string>"},{"key":"filter","value":"<string>"},{"key":"take","value":"<integer>"},{"key":"count","value":"<integer>"}],"variable":[]}},"response":[{"id":"95ef648f-673c-4cab-8b09-1b69ceefd14b","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ProjectExpense?projectId=<integer>&projectCode=<string>&filter=<string>&take=<integer>&count=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","ProjectExpense"],"query":[{"key":"projectId","value":"<integer>"},{"key":"projectCode","value":"<string>"},{"key":"filter","value":"<string>"},{"key":"take","value":"<integer>"},{"key":"count","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"projectName\": \"<string>\",\n\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\"parentProjectId\": \"<integer>\",\n\t\t\t\"parentProjectName\": \"<string>\",\n\t\t\t\"parentProjectCode\": \"<string>\",\n\t\t\t\"expenseAmount\": \"<double>\",\n\t\t\t\"expenseDate\": \"<dateTime>\",\n\t\t\t\"accountingCode\": \"<string>\",\n\t\t\t\"expenseDescription\": \"<string>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"projectName\": \"<string>\",\n\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\"parentProjectId\": \"<integer>\",\n\t\t\t\"parentProjectName\": \"<string>\",\n\t\t\t\"parentProjectCode\": \"<string>\",\n\t\t\t\"expenseAmount\": \"<double>\",\n\t\t\t\"expenseDate\": \"<dateTime>\",\n\t\t\t\"accountingCode\": \"<string>\",\n\t\t\t\"expenseDescription\": \"<string>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"},{"id":"0b3ead46-1645-442b-a8c4-e8763921a009","name":"BadRequest","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ProjectExpense?projectId=<integer>&projectCode=<string>&filter=<string>&take=<integer>&count=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","ProjectExpense"],"query":[{"key":"projectId","value":"<integer>"},{"key":"projectCode","value":"<string>"},{"key":"filter","value":"<string>"},{"key":"take","value":"<integer>"},{"key":"count","value":"<integer>"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3515549f-dbe5-41ae-8575-936e648abe88"},{"name":"Get Project Expense","id":"f092b678-21d9-4e60-873e-c59a53379384","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ProjectExpense/:projectExpenseId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ProjectExpense",":projectExpenseId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The project expense identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"projectExpenseId"}]}},"response":[{"id":"93e0dc43-9c76-4538-9430-23227e481d7c","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ProjectExpense/:projectExpenseId","host":["https://api.virtuoussoftware.com"],"path":["api","ProjectExpense",":projectExpenseId"],"variable":[{"key":"projectExpenseId","value":"<integer>","description":"(Required) The project expense identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"projectId\": \"<integer>\",\n\t\"projectName\": \"<string>\",\n\t\"projectCode\": \"<string>\",\n\t\"parentProjectId\": \"<integer>\",\n\t\"parentProjectName\": \"<string>\",\n\t\"parentProjectCode\": \"<string>\",\n\t\"expenseAmount\": \"<double>\",\n\t\"expenseDate\": \"<dateTime>\",\n\t\"accountingCode\": \"<string>\",\n\t\"expenseDescription\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\"\n}"},{"id":"0a661c30-a275-4982-beb5-153171c0113c","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ProjectExpense/:projectExpenseId","host":["https://api.virtuoussoftware.com"],"path":["api","ProjectExpense",":projectExpenseId"],"variable":[{"key":"projectExpenseId","value":"<integer>","description":"(Required) The project expense identifier."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"f092b678-21d9-4e60-873e-c59a53379384"},{"name":"Create a Project Expense","id":"bce73762-d9e1-4d80-9c27-39d2e7439ee4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"projectId\": \"<integer>\",\n    \"expenseAmount\": \"<double>\",\n    \"expenseDate\": \"<dateTime>\",\n    \"accountingCode\": \"<string>\",\n    \"expenseDescription\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ProjectExpense","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ProjectExpense"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"6d6952dd-06d5-43d0-86fa-d7fd95c869c3","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"projectId\": \"<integer>\",\n    \"expenseAmount\": \"<double>\",\n    \"expenseDate\": \"<dateTime>\",\n    \"accountingCode\": \"<string>\",\n    \"expenseDescription\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ProjectExpense"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"projectId\": \"<integer>\",\n\t\"projectName\": \"<string>\",\n\t\"projectCode\": \"<string>\",\n\t\"parentProjectId\": \"<integer>\",\n\t\"parentProjectName\": \"<string>\",\n\t\"parentProjectCode\": \"<string>\",\n\t\"expenseAmount\": \"<double>\",\n\t\"expenseDate\": \"<dateTime>\",\n\t\"accountingCode\": \"<string>\",\n\t\"expenseDescription\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\"\n}"},{"id":"1b13c752-17fa-434d-b97e-ae1cf1a64344","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"projectId\": \"<integer>\",\n    \"expenseAmount\": \"<double>\",\n    \"expenseDate\": \"<dateTime>\",\n    \"accountingCode\": \"<string>\",\n    \"expenseDescription\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ProjectExpense"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"bce73762-d9e1-4d80-9c27-39d2e7439ee4"},{"name":"Create many Project Expenses","id":"ad707bb1-b13c-454a-b1f6-5fbf20dcbb87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"projectExpenses\": [\n        {\n            \"projectId\": \"<integer>\",\n            \"expenseAmount\": \"<double>\",\n            \"expenseDate\": \"<dateTime>\",\n            \"accountingCode\": \"<string>\",\n            \"expenseDescription\": \"<string>\"\n        },\n        {\n            \"projectId\": \"<integer>\",\n            \"expenseAmount\": \"<double>\",\n            \"expenseDate\": \"<dateTime>\",\n            \"accountingCode\": \"<string>\",\n            \"expenseDescription\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ProjectExpense/Batch","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ProjectExpense","Batch"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"487c6f48-b68e-4e1b-89f6-69cb3ee2af07","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"projectExpenses\": [\n        {\n            \"projectId\": \"<integer>\",\n            \"expenseAmount\": \"<double>\",\n            \"expenseDate\": \"<dateTime>\",\n            \"accountingCode\": \"<string>\",\n            \"expenseDescription\": \"<string>\"\n        },\n        {\n            \"projectId\": \"<integer>\",\n            \"expenseAmount\": \"<double>\",\n            \"expenseDate\": \"<dateTime>\",\n            \"accountingCode\": \"<string>\",\n            \"expenseDescription\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ProjectExpense/Batch"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"e7d5b4db-c813-48d3-9d6f-b4ed262f93ac","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"projectExpenses\": [\n        {\n            \"projectId\": \"<integer>\",\n            \"expenseAmount\": \"<double>\",\n            \"expenseDate\": \"<dateTime>\",\n            \"accountingCode\": \"<string>\",\n            \"expenseDescription\": \"<string>\"\n        },\n        {\n            \"projectId\": \"<integer>\",\n            \"expenseAmount\": \"<double>\",\n            \"expenseDate\": \"<dateTime>\",\n            \"accountingCode\": \"<string>\",\n            \"expenseDescription\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ProjectExpense/Batch"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ad707bb1-b13c-454a-b1f6-5fbf20dcbb87"},{"name":"Update a Project Expense","id":"88255c06-2743-4009-9ff9-62ebdc52c965","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"expenseAmount\": \"<double>\",\n    \"expenseDate\": \"<dateTime>\",\n    \"accountingCode\": \"<string>\",\n    \"expenseDescription\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ProjectExpense/:projectExpenseId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ProjectExpense",":projectExpenseId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The project expense identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"projectExpenseId"}]}},"response":[{"id":"03b87817-f4a9-4920-91be-f46ccd82ceff","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"expenseAmount\": \"<double>\",\n    \"expenseDate\": \"<dateTime>\",\n    \"accountingCode\": \"<string>\",\n    \"expenseDescription\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/ProjectExpense/:projectExpenseId","host":["https://api.virtuoussoftware.com"],"path":["api","ProjectExpense",":projectExpenseId"],"variable":[{"key":"projectExpenseId","value":"<integer>","description":"(Required) The project expense identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"projectId\": \"<integer>\",\n\t\"projectName\": \"<string>\",\n\t\"projectCode\": \"<string>\",\n\t\"parentProjectId\": \"<integer>\",\n\t\"parentProjectName\": \"<string>\",\n\t\"parentProjectCode\": \"<string>\",\n\t\"expenseAmount\": \"<double>\",\n\t\"expenseDate\": \"<dateTime>\",\n\t\"accountingCode\": \"<string>\",\n\t\"expenseDescription\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\"\n}"},{"id":"217da24c-6871-4241-9217-93fab44f220a","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"expenseAmount\": \"<double>\",\n    \"expenseDate\": \"<dateTime>\",\n    \"accountingCode\": \"<string>\",\n    \"expenseDescription\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/ProjectExpense/:projectExpenseId","host":["https://api.virtuoussoftware.com"],"path":["api","ProjectExpense",":projectExpenseId"],"variable":[{"key":"projectExpenseId","value":"<integer>","description":"(Required) The project expense identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"88255c06-2743-4009-9ff9-62ebdc52c965"}],"id":"7b49f4ca-2c4d-4d5a-a171-0ff9023a97a0","_postman_id":"7b49f4ca-2c4d-4d5a-a171-0ff9023a97a0","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Project Notes","item":[{"name":"Get Notes for a Project","id":"285d00a1-a2d6-4e6b-953a-fb6bd91e08df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ProjectNote/ByProject/:projectId?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ProjectNote","ByProject",":projectId"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) The project identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"projectId"}]}},"response":[{"id":"ca72cda4-f4c0-4b98-a3d6-ca6e552bd5d8","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ProjectNote/ByProject/:projectId?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","ProjectNote","ByProject",":projectId"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}],"variable":[{"key":"projectId","value":"<integer>","description":"(Required) The project identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"createdByAvatarUrl\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"note\": \"<string>\",\n\t\t\t\"important\": \"<boolean>\",\n\t\t\t\"isPrivate\": \"<boolean>\",\n\t\t\t\"binaryPath\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"createdByAvatarUrl\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"note\": \"<string>\",\n\t\t\t\"important\": \"<boolean>\",\n\t\t\t\"isPrivate\": \"<boolean>\",\n\t\t\t\"binaryPath\": \"<string>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"285d00a1-a2d6-4e6b-953a-fb6bd91e08df"},{"name":"Get Project Note","id":"9e70109f-542d-4738-82b9-501e19083501","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ProjectNote/:noteId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ProjectNote",":noteId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The note identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"noteId"}]}},"response":[{"id":"f3e0075d-49e1-42cb-9329-bebc950d62ba","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ProjectNote/:noteId","host":["https://api.virtuoussoftware.com"],"path":["api","ProjectNote",":noteId"],"variable":[{"key":"noteId","value":"<integer>","description":"(Required) The note identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"createdByAvatarUrl\": \"<string>\",\n\t\"type\": \"<string>\",\n\t\"note\": \"<string>\",\n\t\"important\": \"<boolean>\",\n\t\"isPrivate\": \"<boolean>\",\n\t\"binaryPath\": \"<string>\"\n}"},{"id":"860a6f49-d458-433e-b340-ad0ca240c6e4","name":"BadRequest","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ProjectNote/:noteId","host":["https://api.virtuoussoftware.com"],"path":["api","ProjectNote",":noteId"],"variable":[{"key":"noteId","value":"<integer>","description":"(Required) The note identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9e70109f-542d-4738-82b9-501e19083501"},{"name":"Create a Project Note","id":"c92ea39a-446e-494c-9606-a83888937c83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"projectId\": \"<integer>\",\n    \"type\": \"<string>\",\n    \"note\": \"<string>\",\n    \"important\": \"<boolean>\",\n    \"private\": \"<boolean>\",\n    \"contactId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ProjectNote","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ProjectNote"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"6650b018-3027-48dc-a9f5-cdeee4fae508","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"projectId\": \"<integer>\",\n    \"type\": \"<string>\",\n    \"note\": \"<string>\",\n    \"important\": \"<boolean>\",\n    \"private\": \"<boolean>\",\n    \"contactId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ProjectNote"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"createdByAvatarUrl\": \"<string>\",\n\t\"type\": \"<string>\",\n\t\"note\": \"<string>\",\n\t\"important\": \"<boolean>\",\n\t\"isPrivate\": \"<boolean>\",\n\t\"binaryPath\": \"<string>\"\n}"},{"id":"c7267266-961e-46fa-a1c8-b0b3443503ba","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"projectId\": \"<integer>\",\n    \"type\": \"<string>\",\n    \"note\": \"<string>\",\n    \"important\": \"<boolean>\",\n    \"private\": \"<boolean>\",\n    \"contactId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ProjectNote"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c92ea39a-446e-494c-9606-a83888937c83"},{"name":"Update a Project Note","id":"885be2d4-bb2b-4af3-8ab3-44391be36f93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"<string>\",\n    \"note\": \"<string>\",\n    \"important\": \"<boolean>\",\n    \"private\": \"<boolean>\",\n    \"contactId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ProjectNote/:noteId","description":"<p>Similar to other update methods in the API, excluding a property will remove it's value from the object. \nIf you're only updating a single property, the entire model is still required.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ProjectNote",":noteId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The note identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"noteId"}]}},"response":[{"id":"df787c66-96b5-44d4-8311-afbbfbbf1a36","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"type\": \"<string>\",\n    \"note\": \"<string>\",\n    \"important\": \"<boolean>\",\n    \"private\": \"<boolean>\",\n    \"contactId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/ProjectNote/:noteId","host":["https://api.virtuoussoftware.com"],"path":["api","ProjectNote",":noteId"],"variable":[{"key":"noteId","value":"<integer>","description":"(Required) The note identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"createdByAvatarUrl\": \"<string>\",\n\t\"type\": \"<string>\",\n\t\"note\": \"<string>\",\n\t\"important\": \"<boolean>\",\n\t\"isPrivate\": \"<boolean>\",\n\t\"binaryPath\": \"<string>\"\n}"},{"id":"d692eba5-017f-42bc-966f-1391058941ce","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"type\": \"<string>\",\n    \"note\": \"<string>\",\n    \"important\": \"<boolean>\",\n    \"private\": \"<boolean>\",\n    \"contactId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/ProjectNote/:noteId","host":["https://api.virtuoussoftware.com"],"path":["api","ProjectNote",":noteId"],"variable":[{"key":"noteId","value":"<integer>","description":"(Required) The note identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"885be2d4-bb2b-4af3-8ab3-44391be36f93"},{"name":"Delete a Project Note","id":"c787e851-c0dd-4752-adfb-14408ca35192","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.virtuoussoftware.com/api/ProjectNote/:noteId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ProjectNote",":noteId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The note identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"noteId"}]}},"response":[{"id":"d1a06cbd-fa76-4b87-a84e-ac960c503ad5","name":"OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ProjectNote/:noteId","host":["https://api.virtuoussoftware.com"],"path":["api","ProjectNote",":noteId"],"variable":[{"key":"noteId","value":"<integer>","description":"(Required) The note identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"4095c3d5-ef3b-4760-85a0-5d357ec96d31","name":"BadRequest","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ProjectNote/:noteId","host":["https://api.virtuoussoftware.com"],"path":["api","ProjectNote",":noteId"],"variable":[{"key":"noteId","value":"<integer>","description":"(Required) The note identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c787e851-c0dd-4752-adfb-14408ca35192"},{"name":"Get Project Note Types","id":"621dc020-fd23-4b36-9681-ab5ded17868c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ProjectNote/Types","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ProjectNote","Types"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"1f440de5-d743-45b7-a3ef-38eae1e71eca","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ProjectNote/Types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t\"<string>\",\n\t\"<string>\"\n]"}],"_postman_id":"621dc020-fd23-4b36-9681-ab5ded17868c"}],"id":"de2e03c8-940c-449e-a8cd-51d4b84311a2","_postman_id":"de2e03c8-940c-449e-a8cd-51d4b84311a2","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Project Roles","item":[{"name":"Get Project Roles for a Contact","id":"a80efafa-cbef-411b-a3d8-cd47b01e521f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ProjectRole/ByContact/:contactId?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ProjectRole","ByContact",":contactId"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) The contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactId"}]}},"response":[{"id":"4e497ddf-6ddb-4cab-a8ab-cc05ea997297","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ProjectRole/ByContact/:contactId?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","ProjectRole","ByContact",":contactId"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactName\": \"<string>\",\n\t\t\t\"projectDesignationId\": \"<integer>\",\n\t\t\t\"projectDesignationName\": \"<string>\",\n\t\t\t\"projectRoleTypeId\": \"<integer>\",\n\t\t\t\"projectRoleType\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactName\": \"<string>\",\n\t\t\t\"projectDesignationId\": \"<integer>\",\n\t\t\t\"projectDesignationName\": \"<string>\",\n\t\t\t\"projectRoleTypeId\": \"<integer>\",\n\t\t\t\"projectRoleType\": \"<string>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"a80efafa-cbef-411b-a3d8-cd47b01e521f"},{"name":"Get Project Roles for a Project","id":"5802f431-8a56-424d-933c-311df0e5d296","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ProjectRole/ByProject/:projectId?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ProjectRole","ByProject",":projectId"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) The project identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"projectId"}]}},"response":[{"id":"1636dfe5-2326-4a95-91bd-c940eaf9f02f","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ProjectRole/ByProject/:projectId?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","ProjectRole","ByProject",":projectId"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}],"variable":[{"key":"projectId","value":"<integer>","description":"(Required) The project identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactName\": \"<string>\",\n\t\t\t\"projectDesignationId\": \"<integer>\",\n\t\t\t\"projectDesignationName\": \"<string>\",\n\t\t\t\"projectRoleTypeId\": \"<integer>\",\n\t\t\t\"projectRoleType\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactName\": \"<string>\",\n\t\t\t\"projectDesignationId\": \"<integer>\",\n\t\t\t\"projectDesignationName\": \"<string>\",\n\t\t\t\"projectRoleTypeId\": \"<integer>\",\n\t\t\t\"projectRoleType\": \"<string>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"5802f431-8a56-424d-933c-311df0e5d296"},{"name":"Get Project Role","id":"7acf7762-4afe-4bf2-a94b-0a59d72f3245","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ProjectRole/:projectRoleId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ProjectRole",":projectRoleId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The project role identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"projectRoleId"}]}},"response":[{"id":"eaa94e28-bada-45db-9d07-188d3764955c","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ProjectRole/:projectRoleId","host":["https://api.virtuoussoftware.com"],"path":["api","ProjectRole",":projectRoleId"],"variable":[{"key":"projectRoleId","value":"<integer>","description":"(Required) The project role identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactName\": \"<string>\",\n\t\"projectDesignationId\": \"<integer>\",\n\t\"projectDesignationName\": \"<string>\",\n\t\"projectRoleTypeId\": \"<integer>\",\n\t\"projectRoleType\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\"\n}"},{"id":"a43cf3ed-d483-4fdb-8f0d-94db6b24440e","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ProjectRole/:projectRoleId","host":["https://api.virtuoussoftware.com"],"path":["api","ProjectRole",":projectRoleId"],"variable":[{"key":"projectRoleId","value":"<integer>","description":"(Required) The project role identifier."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"7acf7762-4afe-4bf2-a94b-0a59d72f3245"},{"name":"Create a Project Role","id":"ce624a7c-ffe4-4eb7-824d-40be4ef48c76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"projectDesignationId\": \"<integer>\",\n    \"contactId\": \"<integer>\",\n    \"projectRoleTypeId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ProjectRole","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ProjectRole"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"47a11d4e-4c8e-4ef4-bac7-4ede96fd7d93","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"projectDesignationId\": \"<integer>\",\n    \"contactId\": \"<integer>\",\n    \"projectRoleTypeId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ProjectRole"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactName\": \"<string>\",\n\t\"projectDesignationId\": \"<integer>\",\n\t\"projectDesignationName\": \"<string>\",\n\t\"projectRoleTypeId\": \"<integer>\",\n\t\"projectRoleType\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\"\n}"},{"id":"5338bcdd-f7c8-4ecf-b4a6-dd682c2fab11","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"projectDesignationId\": \"<integer>\",\n    \"contactId\": \"<integer>\",\n    \"projectRoleTypeId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ProjectRole"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ce624a7c-ffe4-4eb7-824d-40be4ef48c76"},{"name":"Update a Project Role","id":"981c5e6c-1b24-4fcf-8e95-dc588afb2c37","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"projectRoleTypeId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/ProjectRole/:projectRoleId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ProjectRole",":projectRoleId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The project role identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"projectRoleId"}]}},"response":[{"id":"ba3314cb-0b6a-469a-a2bf-2cae5bd2d0c5","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"projectRoleTypeId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/ProjectRole/:projectRoleId","host":["https://api.virtuoussoftware.com"],"path":["api","ProjectRole",":projectRoleId"],"variable":[{"key":"projectRoleId","value":"<integer>","description":"(Required) The project role identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactName\": \"<string>\",\n\t\"projectDesignationId\": \"<integer>\",\n\t\"projectDesignationName\": \"<string>\",\n\t\"projectRoleTypeId\": \"<integer>\",\n\t\"projectRoleType\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\"\n}"},{"id":"bcdc190a-0b49-429d-a13c-b9fb4c5fcf72","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"projectRoleTypeId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/ProjectRole/:projectRoleId","host":["https://api.virtuoussoftware.com"],"path":["api","ProjectRole",":projectRoleId"],"variable":[{"key":"projectRoleId","value":"<integer>","description":"(Required) The project role identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"981c5e6c-1b24-4fcf-8e95-dc588afb2c37"},{"name":"Delete a Project Role","id":"fc02cab3-aceb-4981-bc91-12ec037d9bf3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.virtuoussoftware.com/api/ProjectRole/:projectRoleId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ProjectRole",":projectRoleId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The project role identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"projectRoleId"}]}},"response":[{"id":"986fc16c-d828-4bc2-92d1-60cabc761c9f","name":"OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ProjectRole/:projectRoleId","host":["https://api.virtuoussoftware.com"],"path":["api","ProjectRole",":projectRoleId"],"variable":[{"key":"projectRoleId","value":"<integer>","description":"(Required) The project role identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"1ef24004-0a13-4d07-961e-2142ff0f28c3","name":"BadRequest","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ProjectRole/:projectRoleId","host":["https://api.virtuoussoftware.com"],"path":["api","ProjectRole",":projectRoleId"],"variable":[{"key":"projectRoleId","value":"<integer>","description":"(Required) The project role identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"fc02cab3-aceb-4981-bc91-12ec037d9bf3"},{"name":"Get Project Role Types","id":"0b49c8ca-d5c9-49ca-9373-d9d8ad66d8c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/ProjectRole/Types?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","ProjectRole","Types"],"host":["https://api.virtuoussoftware.com"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"04b202cc-efde-44de-93e0-9d75af41263c","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/ProjectRole/Types?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","ProjectRole","Types"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"role\": \"<string>\",\n\t\t\t\"isEnabled\": \"<boolean>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"role\": \"<string>\",\n\t\t\t\"isEnabled\": \"<boolean>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"0b49c8ca-d5c9-49ca-9373-d9d8ad66d8c6"}],"id":"4a37d70d-1f2e-4260-9e0c-ec16d7d14c8b","_postman_id":"4a37d70d-1f2e-4260-9e0c-ec16d7d14c8b","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}}],"id":"221d2453-0611-4b93-b529-7205a06f8001","_postman_id":"221d2453-0611-4b93-b529-7205a06f8001","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Events","item":[{"name":"Event","item":[{"name":"Get Events","id":"1bfb144e-9e85-4951-8261-b84a3a423838","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Event?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Event"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip.  Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take.  Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"c1f2679d-0116-416b-9672-5399ad934291","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Event?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Event"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"eventViewUrl\": \"<string>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"eventType\": \"<string>\",\n\t\t\t\"locationName\": \"<string>\",\n\t\t\t\"displayAddress\": \"<string>\",\n\t\t\t\"geocodeAddress\": \"<string>\",\n\t\t\t\"startDateTime\": \"<string>\",\n\t\t\t\"endDateTime\": \"<string>\",\n\t\t\t\"timeZone\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"specialInstructions\": \"<string>\",\n\t\t\t\"inviteOnly\": \"<boolean>\",\n\t\t\t\"rsvpRequired\": \"<boolean>\",\n\t\t\t\"totalInvites\": \"<integer>\",\n\t\t\t\"totalRsvps\": \"<integer>\",\n\t\t\t\"totalAttended\": \"<integer>\",\n\t\t\t\"totalGifts\": \"<integer>\",\n\t\t\t\"totalGiving\": \"<string>\",\n\t\t\t\"communicationId\": \"<integer>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"eventContactsUrl\": \"<string>\",\n\t\t\t\"generosityEventContacts\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"eventContactUrl\": \"<string>\",\n\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\",\n\t\t\t\t\t\"firstName\": \"<string>\",\n\t\t\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\t\t\"primaryPhone\": \"<string>\",\n\t\t\t\t\t\"primaryEmail\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"eventContactUrl\": \"<string>\",\n\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\",\n\t\t\t\t\t\"firstName\": \"<string>\",\n\t\t\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\t\t\"primaryPhone\": \"<string>\",\n\t\t\t\t\t\"primaryEmail\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"tables\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t],\n\t\t\t\"meals\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t],\n\t\t\t\"eventInvitationsUrl\": \"<string>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"eventViewUrl\": \"<string>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"eventType\": \"<string>\",\n\t\t\t\"locationName\": \"<string>\",\n\t\t\t\"displayAddress\": \"<string>\",\n\t\t\t\"geocodeAddress\": \"<string>\",\n\t\t\t\"startDateTime\": \"<string>\",\n\t\t\t\"endDateTime\": \"<string>\",\n\t\t\t\"timeZone\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"specialInstructions\": \"<string>\",\n\t\t\t\"inviteOnly\": \"<boolean>\",\n\t\t\t\"rsvpRequired\": \"<boolean>\",\n\t\t\t\"totalInvites\": \"<integer>\",\n\t\t\t\"totalRsvps\": \"<integer>\",\n\t\t\t\"totalAttended\": \"<integer>\",\n\t\t\t\"totalGifts\": \"<integer>\",\n\t\t\t\"totalGiving\": \"<string>\",\n\t\t\t\"communicationId\": \"<integer>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"eventContactsUrl\": \"<string>\",\n\t\t\t\"generosityEventContacts\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"eventContactUrl\": \"<string>\",\n\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\",\n\t\t\t\t\t\"firstName\": \"<string>\",\n\t\t\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\t\t\"primaryPhone\": \"<string>\",\n\t\t\t\t\t\"primaryEmail\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"eventContactUrl\": \"<string>\",\n\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\",\n\t\t\t\t\t\"firstName\": \"<string>\",\n\t\t\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\t\t\"primaryPhone\": \"<string>\",\n\t\t\t\t\t\"primaryEmail\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"tables\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t],\n\t\t\t\"meals\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t],\n\t\t\t\"eventInvitationsUrl\": \"<string>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"1bfb144e-9e85-4951-8261-b84a3a423838"},{"name":"Get an Event","id":"f86d36aa-3ab4-4c41-a588-df12cc751915","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Event/:eventId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Event",":eventId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The event identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"eventId"}]}},"response":[{"id":"5260d692-7bde-4ee0-82e3-5da2ee58d9a4","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Event/:eventId","host":["https://api.virtuoussoftware.com"],"path":["api","Event",":eventId"],"variable":[{"key":"eventId","value":"<integer>","description":"(Required) The event identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"eventViewUrl\": \"<string>\",\n\t\"name\": \"<string>\",\n\t\"eventType\": \"<string>\",\n\t\"locationName\": \"<string>\",\n\t\"displayAddress\": \"<string>\",\n\t\"geocodeAddress\": \"<string>\",\n\t\"startDateTime\": \"<string>\",\n\t\"endDateTime\": \"<string>\",\n\t\"timeZone\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"specialInstructions\": \"<string>\",\n\t\"inviteOnly\": \"<boolean>\",\n\t\"rsvpRequired\": \"<boolean>\",\n\t\"totalInvites\": \"<integer>\",\n\t\"totalRsvps\": \"<integer>\",\n\t\"totalAttended\": \"<integer>\",\n\t\"totalGifts\": \"<integer>\",\n\t\"totalGiving\": \"<string>\",\n\t\"communicationId\": \"<integer>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"eventContactsUrl\": \"<string>\",\n\t\"generosityEventContacts\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"eventContactUrl\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\"primaryPhone\": \"<string>\",\n\t\t\t\"primaryEmail\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"eventContactUrl\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\"primaryPhone\": \"<string>\",\n\t\t\t\"primaryEmail\": \"<string>\"\n\t\t}\n\t],\n\t\"tables\": [\n\t\t\"<string>\",\n\t\t\"<string>\"\n\t],\n\t\"meals\": [\n\t\t\"<string>\",\n\t\t\"<string>\"\n\t],\n\t\"eventInvitationsUrl\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"cde4d21f-c994-431b-b016-6580e443d80f","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Event/:eventId","host":["https://api.virtuoussoftware.com"],"path":["api","Event",":eventId"],"variable":[{"key":"eventId","value":"<integer>","description":"(Required) The event identifier."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"f86d36aa-3ab4-4c41-a588-df12cc751915"},{"name":"Find an Event","id":"08fa575e-d228-42ef-b1b6-79376af51fd9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Event/Search?filter=<string>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Event","Search"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>(Required) The filter.</p>\n","type":"text/plain"},"key":"filter","value":"<string>"}],"variable":[]}},"response":[{"id":"71ae3e3d-7d00-4d57-95a7-65eeb8898a98","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Event/Search?filter=<string>","host":["https://api.virtuoussoftware.com"],"path":["api","Event","Search"],"query":[{"key":"filter","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"id\": \"<integer>\",\n\t\t\"eventViewUrl\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"eventType\": \"<string>\",\n\t\t\"locationName\": \"<string>\",\n\t\t\"displayAddress\": \"<string>\",\n\t\t\"geocodeAddress\": \"<string>\",\n\t\t\"startDateTime\": \"<string>\",\n\t\t\"endDateTime\": \"<string>\",\n\t\t\"timeZone\": \"<string>\",\n\t\t\"description\": \"<string>\",\n\t\t\"specialInstructions\": \"<string>\",\n\t\t\"inviteOnly\": \"<boolean>\",\n\t\t\"rsvpRequired\": \"<boolean>\",\n\t\t\"totalInvites\": \"<integer>\",\n\t\t\"totalRsvps\": \"<integer>\",\n\t\t\"totalAttended\": \"<integer>\",\n\t\t\"totalGifts\": \"<integer>\",\n\t\t\"totalGiving\": \"<string>\",\n\t\t\"communicationId\": \"<integer>\",\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\",\n\t\t\"eventContactsUrl\": \"<string>\",\n\t\t\"generosityEventContacts\": [\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"eventContactUrl\": \"<string>\",\n\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\",\n\t\t\t\t\"firstName\": \"<string>\",\n\t\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\t\"primaryPhone\": \"<string>\",\n\t\t\t\t\"primaryEmail\": \"<string>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"eventContactUrl\": \"<string>\",\n\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\",\n\t\t\t\t\"firstName\": \"<string>\",\n\t\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\t\"primaryPhone\": \"<string>\",\n\t\t\t\t\"primaryEmail\": \"<string>\"\n\t\t\t}\n\t\t],\n\t\t\"tables\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n\t\t\"meals\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n\t\t\"eventInvitationsUrl\": \"<string>\",\n\t\t\"customFields\": [\n\t\t\t{\n\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"id\": \"<integer>\",\n\t\t\"eventViewUrl\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"eventType\": \"<string>\",\n\t\t\"locationName\": \"<string>\",\n\t\t\"displayAddress\": \"<string>\",\n\t\t\"geocodeAddress\": \"<string>\",\n\t\t\"startDateTime\": \"<string>\",\n\t\t\"endDateTime\": \"<string>\",\n\t\t\"timeZone\": \"<string>\",\n\t\t\"description\": \"<string>\",\n\t\t\"specialInstructions\": \"<string>\",\n\t\t\"inviteOnly\": \"<boolean>\",\n\t\t\"rsvpRequired\": \"<boolean>\",\n\t\t\"totalInvites\": \"<integer>\",\n\t\t\"totalRsvps\": \"<integer>\",\n\t\t\"totalAttended\": \"<integer>\",\n\t\t\"totalGifts\": \"<integer>\",\n\t\t\"totalGiving\": \"<string>\",\n\t\t\"communicationId\": \"<integer>\",\n\t\t\"eventContactsUrl\": \"<string>\",\n\t\t\"generosityEventContacts\": [\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"eventContactUrl\": \"<string>\",\n\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\",\n\t\t\t\t\"firstName\": \"<string>\",\n\t\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\t\"primaryPhone\": \"<string>\",\n\t\t\t\t\"primaryEmail\": \"<string>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"eventContactUrl\": \"<string>\",\n\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\",\n\t\t\t\t\"firstName\": \"<string>\",\n\t\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\t\"primaryPhone\": \"<string>\",\n\t\t\t\t\"primaryEmail\": \"<string>\"\n\t\t\t}\n\t\t],\n\t\t\"tables\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n\t\t\"meals\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n\t\t\"eventInvitationsUrl\": \"<string>\",\n\t\t\"customFields\": [\n\t\t\t{\n\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t}\n\t\t]\n\t}\n]"}],"_postman_id":"08fa575e-d228-42ef-b1b6-79376af51fd9"},{"name":"Create an Event","id":"cae18e3c-59ad-4e3a-9abd-9a0cd1bb3209","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"eventType\": \"<string>\",\n    \"startDateTime\": \"<dateTime>\",\n    \"endDateTime\": \"<dateTime>\",\n    \"timeZone\": \"<string>\",\n    \"communicationId\": \"<integer>\",\n    \"locationName\": \"<string>\",\n    \"description\": \"<string>\",\n    \"specialInstructions\": \"<string>\",\n    \"inviteOnly\": \"<boolean>\",\n    \"rsvpRequired\": \"<boolean>\",\n    \"tables\": [\n        \"<string>\",\n        \"<string>\"\n    ],\n    \"meals\": [\n        \"<string>\",\n        \"<string>\"\n    ],\n    \"address1\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"postal\": \"<string>\",\n    \"country\": \"<string>\",\n    \"eventbriteId\": \"<string>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Event","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Event"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"c61ab8c9-e6f6-4e9c-bf5e-251a5534762e","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"eventType\": \"<string>\",\n    \"startDateTime\": \"<dateTime>\",\n    \"endDateTime\": \"<dateTime>\",\n    \"timeZone\": \"<string>\",\n    \"communicationId\": \"<integer>\",\n    \"locationName\": \"<string>\",\n    \"description\": \"<string>\",\n    \"specialInstructions\": \"<string>\",\n    \"inviteOnly\": \"<boolean>\",\n    \"rsvpRequired\": \"<boolean>\",\n    \"tables\": [\n        \"<string>\",\n        \"<string>\"\n    ],\n    \"meals\": [\n        \"<string>\",\n        \"<string>\"\n    ],\n    \"address1\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"postal\": \"<string>\",\n    \"country\": \"<string>\",\n    \"eventbriteId\": \"<string>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Event"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"eventViewUrl\": \"<string>\",\n\t\"name\": \"<string>\",\n\t\"eventType\": \"<string>\",\n\t\"locationName\": \"<string>\",\n\t\"displayAddress\": \"<string>\",\n\t\"geocodeAddress\": \"<string>\",\n\t\"startDateTime\": \"<string>\",\n\t\"endDateTime\": \"<string>\",\n\t\"timeZone\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"specialInstructions\": \"<string>\",\n\t\"inviteOnly\": \"<boolean>\",\n\t\"rsvpRequired\": \"<boolean>\",\n\t\"totalInvites\": \"<integer>\",\n\t\"totalRsvps\": \"<integer>\",\n\t\"totalAttended\": \"<integer>\",\n\t\"totalGifts\": \"<integer>\",\n\t\"totalGiving\": \"<string>\",\n\t\"communicationId\": \"<integer>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"eventContactsUrl\": \"<string>\",\n\t\"generosityEventContacts\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"eventContactUrl\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\"primaryPhone\": \"<string>\",\n\t\t\t\"primaryEmail\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"eventContactUrl\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\"primaryPhone\": \"<string>\",\n\t\t\t\"primaryEmail\": \"<string>\"\n\t\t}\n\t],\n\t\"tables\": [\n\t\t\"<string>\",\n\t\t\"<string>\"\n\t],\n\t\"meals\": [\n\t\t\"<string>\",\n\t\t\"<string>\"\n\t],\n\t\"eventInvitationsUrl\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"1a51366e-a328-441d-b052-a79ec3c1825b","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"eventType\": \"<string>\",\n    \"startDateTime\": \"<dateTime>\",\n    \"endDateTime\": \"<dateTime>\",\n    \"timeZone\": \"<string>\",\n    \"communicationId\": \"<integer>\",\n    \"locationName\": \"<string>\",\n    \"description\": \"<string>\",\n    \"specialInstructions\": \"<string>\",\n    \"inviteOnly\": \"<boolean>\",\n    \"rsvpRequired\": \"<boolean>\",\n    \"tables\": [\n        \"<string>\",\n        \"<string>\"\n    ],\n    \"meals\": [\n        \"<string>\",\n        \"<string>\"\n    ],\n    \"address1\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"postal\": \"<string>\",\n    \"country\": \"<string>\",\n    \"eventbriteId\": \"<string>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Event"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"cae18e3c-59ad-4e3a-9abd-9a0cd1bb3209"},{"name":"Update an Event","id":"8ae411e9-b9a4-4280-a7a8-7c7afb86a08c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"eventType\": \"<string>\",\n    \"startDateTime\": \"<dateTime>\",\n    \"endDateTime\": \"<dateTime>\",\n    \"timeZone\": \"<string>\",\n    \"communicationId\": \"<integer>\",\n    \"locationName\": \"<string>\",\n    \"description\": \"<string>\",\n    \"specialInstructions\": \"<string>\",\n    \"inviteOnly\": \"<boolean>\",\n    \"rsvpRequired\": \"<boolean>\",\n    \"tables\": [\n        \"<string>\",\n        \"<string>\"\n    ],\n    \"meals\": [\n        \"<string>\",\n        \"<string>\"\n    ],\n    \"address1\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"postal\": \"<string>\",\n    \"country\": \"<string>\",\n    \"eventbriteId\": \"<string>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Event/:eventId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Event",":eventId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The event identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"eventId"}]}},"response":[{"id":"f08113a9-1557-4cdc-ad4c-6c8b1e56561e","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"eventType\": \"<string>\",\n    \"startDateTime\": \"<dateTime>\",\n    \"endDateTime\": \"<dateTime>\",\n    \"timeZone\": \"<string>\",\n    \"communicationId\": \"<integer>\",\n    \"locationName\": \"<string>\",\n    \"description\": \"<string>\",\n    \"specialInstructions\": \"<string>\",\n    \"inviteOnly\": \"<boolean>\",\n    \"rsvpRequired\": \"<boolean>\",\n    \"tables\": [\n        \"<string>\",\n        \"<string>\"\n    ],\n    \"meals\": [\n        \"<string>\",\n        \"<string>\"\n    ],\n    \"address1\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"postal\": \"<string>\",\n    \"country\": \"<string>\",\n    \"eventbriteId\": \"<string>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Event/:eventId","host":["https://api.virtuoussoftware.com"],"path":["api","Event",":eventId"],"variable":[{"key":"eventId","value":"<integer>","description":"(Required) The event identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"eventViewUrl\": \"<string>\",\n\t\"name\": \"<string>\",\n\t\"eventType\": \"<string>\",\n\t\"locationName\": \"<string>\",\n\t\"displayAddress\": \"<string>\",\n\t\"geocodeAddress\": \"<string>\",\n\t\"startDateTime\": \"<string>\",\n\t\"endDateTime\": \"<string>\",\n\t\"timeZone\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"specialInstructions\": \"<string>\",\n\t\"inviteOnly\": \"<boolean>\",\n\t\"rsvpRequired\": \"<boolean>\",\n\t\"totalInvites\": \"<integer>\",\n\t\"totalRsvps\": \"<integer>\",\n\t\"totalAttended\": \"<integer>\",\n\t\"totalGifts\": \"<integer>\",\n\t\"totalGiving\": \"<string>\",\n\t\"communicationId\": \"<integer>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"eventContactsUrl\": \"<string>\",\n\t\"generosityEventContacts\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"eventContactUrl\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\"primaryPhone\": \"<string>\",\n\t\t\t\"primaryEmail\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"eventContactUrl\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\"primaryPhone\": \"<string>\",\n\t\t\t\"primaryEmail\": \"<string>\"\n\t\t}\n\t],\n\t\"tables\": [\n\t\t\"<string>\",\n\t\t\"<string>\"\n\t],\n\t\"meals\": [\n\t\t\"<string>\",\n\t\t\"<string>\"\n\t],\n\t\"eventInvitationsUrl\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"42b15a0d-6cd0-480d-a796-6afda28b7da3","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"eventType\": \"<string>\",\n    \"startDateTime\": \"<dateTime>\",\n    \"endDateTime\": \"<dateTime>\",\n    \"timeZone\": \"<string>\",\n    \"communicationId\": \"<integer>\",\n    \"locationName\": \"<string>\",\n    \"description\": \"<string>\",\n    \"specialInstructions\": \"<string>\",\n    \"inviteOnly\": \"<boolean>\",\n    \"rsvpRequired\": \"<boolean>\",\n    \"tables\": [\n        \"<string>\",\n        \"<string>\"\n    ],\n    \"meals\": [\n        \"<string>\",\n        \"<string>\"\n    ],\n    \"address1\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"postal\": \"<string>\",\n    \"country\": \"<string>\",\n    \"eventbriteId\": \"<string>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Event/:eventId","host":["https://api.virtuoussoftware.com"],"path":["api","Event",":eventId"],"variable":[{"key":"eventId","value":"<integer>","description":"(Required) The event identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"8ae411e9-b9a4-4280-a7a8-7c7afb86a08c"},{"name":"Delete an Event","id":"0c84b923-f80a-4b8f-b412-551b6edd2fc9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.virtuoussoftware.com/api/Event/:eventId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Event",":eventId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The event identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"eventId"}]}},"response":[{"id":"8b7b10d2-ba42-4dcf-bf7a-f607ba576139","name":"OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Event/:eventId","host":["https://api.virtuoussoftware.com"],"path":["api","Event",":eventId"],"variable":[{"key":"eventId","value":"<integer>","description":"(Required) The event identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"d7f82e5f-21c2-4783-aa2c-b98df0071464","name":"BadRequest","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Event/:eventId","host":["https://api.virtuoussoftware.com"],"path":["api","Event",":eventId"],"variable":[{"key":"eventId","value":"<integer>","description":"(Required) The event identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"0c84b923-f80a-4b8f-b412-551b6edd2fc9"},{"name":"Get the Event Types","id":"88d059eb-14e1-4d6b-8e3d-2c2355a23f19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Event/Types","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Event","Types"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"2faacd91-40c8-4960-ae5d-288ddd498838","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Event/Types"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"88d059eb-14e1-4d6b-8e3d-2c2355a23f19"},{"name":"Get Event Custom Fields Available","id":"67681d8d-9e38-4088-ae4f-4338e118321a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Event/CustomFields","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Event","CustomFields"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"c114e96c-f589-4b90-84ff-c032b51aac3a","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Event/CustomFields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"dataType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"displayName\": \"<string>\",\n\t\t\"options\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t},\n\t{\n\t\t\"dataType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"displayName\": \"<string>\",\n\t\t\"options\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t}\n]"}],"_postman_id":"67681d8d-9e38-4088-ae4f-4338e118321a"},{"name":"Get Event Query Options","id":"ee9ab2fc-a0c4-41f3-960c-1746be4a6d1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Event/QueryOptions","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Event","QueryOptions"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"6f433e0a-992c-4251-95db-e9143f33eb29","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Event/QueryOptions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"options\": [\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t}\n\t],\n\t\"operatorOptions\": [\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t},\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t}\n\t]\n}"}],"_postman_id":"ee9ab2fc-a0c4-41f3-960c-1746be4a6d1b"},{"name":"Query Events","id":"cb0c11fc-f1b5-4dc3-baee-7f692e4d0e76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"groups\": [\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        }\n    ],\n    \"sortBy\": \"<string>\",\n    \"descending\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Event/Query?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Event","Query"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10. Max is 1000.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"1b4a4855-2bd1-4249-9b15-6af1552ffb65","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Event/Query?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Event","Query"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"eventViewUrl\": \"<string>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"eventType\": \"<string>\",\n\t\t\t\"locationName\": \"<string>\",\n\t\t\t\"displayAddress\": \"<string>\",\n\t\t\t\"geocodeAddress\": \"<string>\",\n\t\t\t\"startDateTime\": \"<string>\",\n\t\t\t\"endDateTime\": \"<string>\",\n\t\t\t\"timeZone\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"specialInstructions\": \"<string>\",\n\t\t\t\"inviteOnly\": \"<boolean>\",\n\t\t\t\"rsvpRequired\": \"<boolean>\",\n\t\t\t\"totalInvites\": \"<integer>\",\n\t\t\t\"totalRsvps\": \"<integer>\",\n\t\t\t\"totalAttended\": \"<integer>\",\n\t\t\t\"totalGifts\": \"<integer>\",\n\t\t\t\"totalGiving\": \"<string>\",\n\t\t\t\"communicationId\": \"<integer>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"eventContactsUrl\": \"<string>\",\n\t\t\t\"generosityEventContacts\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"eventContactUrl\": \"<string>\",\n\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\",\n\t\t\t\t\t\"firstName\": \"<string>\",\n\t\t\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\t\t\"primaryPhone\": \"<string>\",\n\t\t\t\t\t\"primaryEmail\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"eventContactUrl\": \"<string>\",\n\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\",\n\t\t\t\t\t\"firstName\": \"<string>\",\n\t\t\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\t\t\"primaryPhone\": \"<string>\",\n\t\t\t\t\t\"primaryEmail\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"tables\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t],\n\t\t\t\"meals\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t],\n\t\t\t\"eventInvitationsUrl\": \"<string>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"eventViewUrl\": \"<string>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"eventType\": \"<string>\",\n\t\t\t\"locationName\": \"<string>\",\n\t\t\t\"displayAddress\": \"<string>\",\n\t\t\t\"geocodeAddress\": \"<string>\",\n\t\t\t\"startDateTime\": \"<string>\",\n\t\t\t\"endDateTime\": \"<string>\",\n\t\t\t\"timeZone\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"specialInstructions\": \"<string>\",\n\t\t\t\"inviteOnly\": \"<boolean>\",\n\t\t\t\"rsvpRequired\": \"<boolean>\",\n\t\t\t\"totalInvites\": \"<integer>\",\n\t\t\t\"totalRsvps\": \"<integer>\",\n\t\t\t\"totalAttended\": \"<integer>\",\n\t\t\t\"totalGifts\": \"<integer>\",\n\t\t\t\"totalGiving\": \"<string>\",\n\t\t\t\"communicationId\": \"<integer>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"eventContactsUrl\": \"<string>\",\n\t\t\t\"generosityEventContacts\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"eventContactUrl\": \"<string>\",\n\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\",\n\t\t\t\t\t\"firstName\": \"<string>\",\n\t\t\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\t\t\"primaryPhone\": \"<string>\",\n\t\t\t\t\t\"primaryEmail\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"eventContactUrl\": \"<string>\",\n\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\",\n\t\t\t\t\t\"firstName\": \"<string>\",\n\t\t\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\t\t\"primaryPhone\": \"<string>\",\n\t\t\t\t\t\"primaryEmail\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"tables\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t],\n\t\t\t\"meals\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t],\n\t\t\t\"eventInvitationsUrl\": \"<string>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"},{"id":"f298ee60-6ab0-4d53-aaca-2a5af3541c3e","name":"BadRequest","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Event/Query?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Event","Query"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"cb0c11fc-f1b5-4dc3-baee-7f692e4d0e76"}],"id":"8d368429-1ebc-4eae-8def-77d12914f5c6","_postman_id":"8d368429-1ebc-4eae-8def-77d12914f5c6","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Event Attendees","item":[{"name":"Get Event Attendees for an Event","id":"1d31c8dd-0d53-491b-83c1-ad9c45a73542","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Event/:eventId/Attendees?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Event",":eventId","Attendees"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip.  Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take.  Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) The event identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"eventId"}]}},"response":[{"id":"8ea16860-ee97-4c94-a719-09eb6c37ccc8","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Event/:eventId/Attendees?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Event",":eventId","Attendees"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}],"variable":[{"key":"eventId","value":"<integer>","description":"(Required) The event identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"eventInvitationUrl\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactIndividualId\": \"<integer>\",\n\t\t\t\"invitee\": \"<string>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"event\": \"<string>\",\n\t\t\t\"eventId\": \"<integer>\",\n\t\t\t\"eventViewUrl\": \"<string>\",\n\t\t\t\"location\": \"<string>\",\n\t\t\t\"startDateTime\": \"<string>\",\n\t\t\t\"endDateTime\": \"<string>\",\n\t\t\t\"timeZone\": \"<string>\",\n\t\t\t\"rsvp\": \"<string>\",\n\t\t\t\"attended\": \"<string>\",\n\t\t\t\"emailAddress\": \"<string>\",\n\t\t\t\"invited\": \"<string>\",\n\t\t\t\"emailStatus\": \"<string>\",\n\t\t\t\"emailSent\": \"<string>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"eventInvitationUrl\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactIndividualId\": \"<integer>\",\n\t\t\t\"invitee\": \"<string>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"event\": \"<string>\",\n\t\t\t\"eventId\": \"<integer>\",\n\t\t\t\"eventViewUrl\": \"<string>\",\n\t\t\t\"location\": \"<string>\",\n\t\t\t\"startDateTime\": \"<string>\",\n\t\t\t\"endDateTime\": \"<string>\",\n\t\t\t\"timeZone\": \"<string>\",\n\t\t\t\"rsvp\": \"<string>\",\n\t\t\t\"attended\": \"<string>\",\n\t\t\t\"emailAddress\": \"<string>\",\n\t\t\t\"invited\": \"<string>\",\n\t\t\t\"emailStatus\": \"<string>\",\n\t\t\t\"emailSent\": \"<string>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"1d31c8dd-0d53-491b-83c1-ad9c45a73542"},{"name":"Get an Event Attendee","id":"72c8327c-63b5-4dcd-baca-7617b0f8ea72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Event/:eventId/Attendees/:eventAttendeeId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Event",":eventId","Attendees",":eventAttendeeId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The event identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"eventId"},{"description":{"content":"<p>(Required) The event attendee identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"eventAttendeeId"}]}},"response":[{"id":"ff61e9ca-61a4-48be-9ef7-68efd63d3455","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Event/:eventId/Attendees/:eventAttendeeId","host":["https://api.virtuoussoftware.com"],"path":["api","Event",":eventId","Attendees",":eventAttendeeId"],"variable":[{"key":"eventId","value":"<integer>","description":"(Required) The event identifier."},{"key":"eventAttendeeId","value":"<integer>","description":"(Required) The event attendee identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"eventInvitationUrl\": \"<string>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactIndividualId\": \"<integer>\",\n\t\"invitee\": \"<string>\",\n\t\"contactUrl\": \"<string>\",\n\t\"event\": \"<string>\",\n\t\"eventId\": \"<integer>\",\n\t\"eventViewUrl\": \"<string>\",\n\t\"location\": \"<string>\",\n\t\"startDateTime\": \"<string>\",\n\t\"endDateTime\": \"<string>\",\n\t\"timeZone\": \"<string>\",\n\t\"rsvp\": \"<string>\",\n\t\"attended\": \"<string>\",\n\t\"emailAddress\": \"<string>\",\n\t\"invited\": \"<string>\",\n\t\"emailStatus\": \"<string>\",\n\t\"emailSent\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"f3084327-9bc7-400f-aaf5-55c651384e30","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Event/:eventId/Attendees/:eventAttendeeId","host":["https://api.virtuoussoftware.com"],"path":["api","Event",":eventId","Attendees",":eventAttendeeId"],"variable":[{"key":"eventId","value":"<integer>","description":"(Required) The event identifier."},{"key":"eventAttendeeId","value":"<integer>","description":"(Required) The event attendee identifier."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"72c8327c-63b5-4dcd-baca-7617b0f8ea72"},{"name":"Create an Event Attendee","id":"308ce47a-f000-4e65-aa5a-47f90eeaa726","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"contactIndividualId\": \"<integer>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Event/:eventId/Attendees","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Event",":eventId","Attendees"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The event identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"eventId"}]}},"response":[{"id":"5aa2ca39-1f50-4b15-94fb-1cabd4d540de","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactIndividualId\": \"<integer>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Event/:eventId/Attendees","host":["https://api.virtuoussoftware.com"],"path":["api","Event",":eventId","Attendees"],"variable":[{"key":"eventId","value":"<integer>","description":"(Required) The event identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"eventInvitationUrl\": \"<string>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactIndividualId\": \"<integer>\",\n\t\"invitee\": \"<string>\",\n\t\"contactUrl\": \"<string>\",\n\t\"event\": \"<string>\",\n\t\"eventId\": \"<integer>\",\n\t\"eventViewUrl\": \"<string>\",\n\t\"location\": \"<string>\",\n\t\"startDateTime\": \"<string>\",\n\t\"endDateTime\": \"<string>\",\n\t\"timeZone\": \"<string>\",\n\t\"rsvp\": \"<string>\",\n\t\"attended\": \"<string>\",\n\t\"emailAddress\": \"<string>\",\n\t\"invited\": \"<string>\",\n\t\"emailStatus\": \"<string>\",\n\t\"emailSent\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"36142d10-d331-4845-bb52-792e9623bcaa","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactIndividualId\": \"<integer>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Event/:eventId/Attendees","host":["https://api.virtuoussoftware.com"],"path":["api","Event",":eventId","Attendees"],"variable":[{"key":"eventId","value":"<integer>","description":"(Required) The event identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"308ce47a-f000-4e65-aa5a-47f90eeaa726"},{"name":"Update an Event Attendee","id":"4e2f6241-386b-405a-b7eb-8796e2862c3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"invited\": \"<boolean>\",\n    \"rsvp\": \"<boolean>\",\n    \"rsvpResponse\": \"<boolean>\",\n    \"attended\": \"<boolean>\",\n    \"schedule\": \"<string>\",\n    \"table\": \"<string>\",\n    \"meal\": \"<string>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Event/:eventId/Attendees/:eventAttendeeId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Event",":eventId","Attendees",":eventAttendeeId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The event identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"eventId"},{"description":{"content":"<p>(Required) The event attendee identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"eventAttendeeId"}]}},"response":[{"id":"d429d178-4d87-4622-934a-2167ff0b71d2","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"invited\": \"<boolean>\",\n    \"rsvp\": \"<boolean>\",\n    \"rsvpResponse\": \"<boolean>\",\n    \"attended\": \"<boolean>\",\n    \"schedule\": \"<string>\",\n    \"table\": \"<string>\",\n    \"meal\": \"<string>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Event/:eventId/Attendees/:eventAttendeeId","host":["https://api.virtuoussoftware.com"],"path":["api","Event",":eventId","Attendees",":eventAttendeeId"],"variable":[{"key":"eventId","value":"<integer>","description":"(Required) The event identifier."},{"key":"eventAttendeeId","value":"<integer>","description":"(Required) The event attendee identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"eventInvitationUrl\": \"<string>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactIndividualId\": \"<integer>\",\n\t\"invitee\": \"<string>\",\n\t\"contactUrl\": \"<string>\",\n\t\"event\": \"<string>\",\n\t\"eventId\": \"<integer>\",\n\t\"eventViewUrl\": \"<string>\",\n\t\"location\": \"<string>\",\n\t\"startDateTime\": \"<string>\",\n\t\"endDateTime\": \"<string>\",\n\t\"timeZone\": \"<string>\",\n\t\"rsvp\": \"<string>\",\n\t\"attended\": \"<string>\",\n\t\"emailAddress\": \"<string>\",\n\t\"invited\": \"<string>\",\n\t\"emailStatus\": \"<string>\",\n\t\"emailSent\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"8dd7749d-6a0c-4ffe-aacc-af845d5e8cbf","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"invited\": \"<boolean>\",\n    \"rsvp\": \"<boolean>\",\n    \"rsvpResponse\": \"<boolean>\",\n    \"attended\": \"<boolean>\",\n    \"schedule\": \"<string>\",\n    \"table\": \"<string>\",\n    \"meal\": \"<string>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Event/:eventId/Attendees/:eventAttendeeId","host":["https://api.virtuoussoftware.com"],"path":["api","Event",":eventId","Attendees",":eventAttendeeId"],"variable":[{"key":"eventId","value":"<integer>","description":"(Required) The event identifier."},{"key":"eventAttendeeId","value":"<integer>","description":"(Required) The event attendee identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"edfacf91-9cbe-42ae-81c0-90e5f4b80797","name":"NotFound","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"invited\": \"<boolean>\",\n    \"rsvp\": \"<boolean>\",\n    \"rsvpResponse\": \"<boolean>\",\n    \"attended\": \"<boolean>\",\n    \"schedule\": \"<string>\",\n    \"table\": \"<string>\",\n    \"meal\": \"<string>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Event/:eventId/Attendees/:eventAttendeeId","host":["https://api.virtuoussoftware.com"],"path":["api","Event",":eventId","Attendees",":eventAttendeeId"],"variable":[{"key":"eventId","value":"<integer>","description":"(Required) The event identifier."},{"key":"eventAttendeeId","value":"<integer>","description":"(Required) The event attendee identifier."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"4e2f6241-386b-405a-b7eb-8796e2862c3b"},{"name":"Delete an Event Attendee","id":"47a6add6-5471-432f-94c1-cce4075921db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.virtuoussoftware.com/api/Event/:eventId/Attendees/:eventAttendeeId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Event",":eventId","Attendees",":eventAttendeeId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The event identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"eventId"},{"description":{"content":"<p>(Required) The event attendee identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"eventAttendeeId"}]}},"response":[{"id":"2570a415-9805-440c-bdc8-16e895c6b603","name":"OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Event/:eventId/Attendees/:eventAttendeeId","host":["https://api.virtuoussoftware.com"],"path":["api","Event",":eventId","Attendees",":eventAttendeeId"],"variable":[{"key":"eventId","value":"<integer>","description":"(Required) The event identifier."},{"key":"eventAttendeeId","value":"<integer>","description":"(Required) The event attendee identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"43996172-4224-4d2a-a38e-d90e4db8e6b8","name":"BadRequest","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Event/:eventId/Attendees/:eventAttendeeId","host":["https://api.virtuoussoftware.com"],"path":["api","Event",":eventId","Attendees",":eventAttendeeId"],"variable":[{"key":"eventId","value":"<integer>","description":"(Required) The event identifier."},{"key":"eventAttendeeId","value":"<integer>","description":"(Required) The event attendee identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"47a6add6-5471-432f-94c1-cce4075921db"},{"name":"Get Event Attendee Custom Fields Available","id":"023f2983-6bfe-4d6a-bfd7-578fa7c2c1e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/EventAttendee/CustomFields","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","EventAttendee","CustomFields"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"295e31f5-59af-4de4-9c95-7ffdff8da544","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/EventAttendee/CustomFields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"dataType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"displayName\": \"<string>\",\n\t\t\"options\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t},\n\t{\n\t\t\"dataType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"displayName\": \"<string>\",\n\t\t\"options\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t}\n]"}],"_postman_id":"023f2983-6bfe-4d6a-bfd7-578fa7c2c1e2"},{"name":"Get Event Attendee Query Options","id":"727c8aa6-14ad-40f1-a1e3-3f6a324504ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/EventAttendee/QueryOptions","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","EventAttendee","QueryOptions"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"fd1ccc4e-33fa-42f4-a96a-9c7a28337386","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/EventAttendee/QueryOptions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"options\": [\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t}\n\t],\n\t\"operatorOptions\": [\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t},\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t}\n\t]\n}"}],"_postman_id":"727c8aa6-14ad-40f1-a1e3-3f6a324504ea"},{"name":"Query Event Attendees","id":"64df9404-677d-463d-a378-9b4a098e4e4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"groups\": [\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        }\n    ],\n    \"sortBy\": \"<string>\",\n    \"descending\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/EventAttendee/Query?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","EventAttendee","Query"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10. Max is 1000.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"b11f4e9b-dcc0-42b1-b184-7eaa9438c61f","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/EventAttendee/Query?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","EventAttendee","Query"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"eventInvitationUrl\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactIndividualId\": \"<integer>\",\n\t\t\t\"invitee\": \"<string>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"event\": \"<string>\",\n\t\t\t\"eventId\": \"<integer>\",\n\t\t\t\"eventViewUrl\": \"<string>\",\n\t\t\t\"location\": \"<string>\",\n\t\t\t\"startDateTime\": \"<string>\",\n\t\t\t\"endDateTime\": \"<string>\",\n\t\t\t\"timeZone\": \"<string>\",\n\t\t\t\"rsvp\": \"<string>\",\n\t\t\t\"attended\": \"<string>\",\n\t\t\t\"emailAddress\": \"<string>\",\n\t\t\t\"invited\": \"<string>\",\n\t\t\t\"emailStatus\": \"<string>\",\n\t\t\t\"emailSent\": \"<string>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"eventInvitationUrl\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactIndividualId\": \"<integer>\",\n\t\t\t\"invitee\": \"<string>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"event\": \"<string>\",\n\t\t\t\"eventId\": \"<integer>\",\n\t\t\t\"eventViewUrl\": \"<string>\",\n\t\t\t\"location\": \"<string>\",\n\t\t\t\"startDateTime\": \"<string>\",\n\t\t\t\"endDateTime\": \"<string>\",\n\t\t\t\"timeZone\": \"<string>\",\n\t\t\t\"rsvp\": \"<string>\",\n\t\t\t\"attended\": \"<string>\",\n\t\t\t\"emailAddress\": \"<string>\",\n\t\t\t\"invited\": \"<string>\",\n\t\t\t\"emailStatus\": \"<string>\",\n\t\t\t\"emailSent\": \"<string>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"},{"id":"c4f1a3a7-0bb2-42ba-b6e6-aedf34dcaec2","name":"BadRequest","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/EventAttendee/Query?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","EventAttendee","Query"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"64df9404-677d-463d-a378-9b4a098e4e4e"}],"id":"70c461cd-3cd3-4178-a222-5d6dc336fe68","_postman_id":"70c461cd-3cd3-4178-a222-5d6dc336fe68","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Event Contacts","item":[{"name":"Get Event Contacts for an Event","id":"56416a96-d258-4529-a850-a7caf897de9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Event/:eventId/Contacts?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Event",":eventId","Contacts"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip.  Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take.  Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) The event identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"eventId"}]}},"response":[{"id":"f82c64e4-17a9-47b0-8384-23aa69d6ceed","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Event/:eventId/Contacts?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Event",":eventId","Contacts"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}],"variable":[{"key":"eventId","value":"<integer>","description":"(Required) The event identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"eventContactUrl\": \"<string>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\"primaryPhone\": \"<string>\",\n\t\t\t\"primaryEmail\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"eventContactUrl\": \"<string>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\"primaryPhone\": \"<string>\",\n\t\t\t\"primaryEmail\": \"<string>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"56416a96-d258-4529-a850-a7caf897de9e"},{"name":"Get an Event Contact","id":"ce95dd61-6278-47db-b1f1-99c780bb1d21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Event/:eventId/Contacts/:eventContactId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Event",":eventId","Contacts",":eventContactId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The event contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"eventContactId"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"eventId"}]}},"response":[{"id":"d994a623-16f4-49e8-8ddc-179bddffdd38","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Event/:eventId/Contacts/:eventContactId","host":["https://api.virtuoussoftware.com"],"path":["api","Event",":eventId","Contacts",":eventContactId"],"variable":[{"key":"eventId","value":"<string>","description":"(Required) "},{"key":"eventContactId","value":"<integer>","description":"(Required) The event contact identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"eventContactUrl\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactUrl\": \"<string>\",\n\t\"displayName\": \"<string>\",\n\t\"firstName\": \"<string>\",\n\t\"avatarUrl\": \"<string>\",\n\t\"primaryPhone\": \"<string>\",\n\t\"primaryEmail\": \"<string>\"\n}"},{"id":"bf75a244-9b4b-4169-b09a-531f9d2a2d26","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Event/:eventId/Contacts/:eventContactId","host":["https://api.virtuoussoftware.com"],"path":["api","Event",":eventId","Contacts",":eventContactId"],"variable":[{"key":"eventContactId","value":"<integer>","description":"(Required) The event contact identifier."},{"key":"eventId","value":"<string>","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ce95dd61-6278-47db-b1f1-99c780bb1d21"},{"name":"Create an Event Contact","id":"2c152929-0a56-4ff9-9540-2a4f5104eb93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"contactIndividualId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Event/:eventId/Contacts","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Event",":eventId","Contacts"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The event identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"eventId"}]}},"response":[{"id":"4fd9cfd8-ce43-4ec5-9cb4-337e960ff153","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactIndividualId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Event/:eventId/Contacts","host":["https://api.virtuoussoftware.com"],"path":["api","Event",":eventId","Contacts"],"variable":[{"key":"eventId","value":"<integer>","description":"(Required) The event identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"eventContactUrl\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactUrl\": \"<string>\",\n\t\"displayName\": \"<string>\",\n\t\"firstName\": \"<string>\",\n\t\"avatarUrl\": \"<string>\",\n\t\"primaryPhone\": \"<string>\",\n\t\"primaryEmail\": \"<string>\"\n}"},{"id":"900e6c59-49e6-45aa-82d5-70714aff5c97","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactIndividualId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Event/:eventId/Contacts","host":["https://api.virtuoussoftware.com"],"path":["api","Event",":eventId","Contacts"],"variable":[{"key":"eventId","value":"<integer>","description":"(Required) The event identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"2c152929-0a56-4ff9-9540-2a4f5104eb93"},{"name":"Delete an Event Contact","id":"353ed10e-3264-41dd-bbc5-854169c7cfa4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.virtuoussoftware.com/api/Event/:eventId/Contacts/:eventContactId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Event",":eventId","Contacts",":eventContactId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The event contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"eventContactId"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"eventId"}]}},"response":[{"id":"bc81b242-d3b2-44ca-a18a-aca00f21b7a3","name":"OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Event/:eventId/Contacts/:eventContactId","host":["https://api.virtuoussoftware.com"],"path":["api","Event",":eventId","Contacts",":eventContactId"],"variable":[{"key":"eventContactId","value":"<integer>","description":"(Required) The event contact identifier."},{"key":"eventId","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"0ef2109e-0e56-4afd-9154-7f9239134c4b","name":"BadRequest","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Event/:eventId/Contacts/:eventContactId","host":["https://api.virtuoussoftware.com"],"path":["api","Event",":eventId","Contacts",":eventContactId"],"variable":[{"key":"eventContactId","value":"<integer>","description":"(Required) The event contact identifier."},{"key":"eventId","value":"<string>","description":"(Required) "}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"353ed10e-3264-41dd-bbc5-854169c7cfa4"}],"id":"871f1492-959c-4011-854d-fc48ec1322d2","_postman_id":"871f1492-959c-4011-854d-fc48ec1322d2","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}}],"id":"1bd8e574-3c51-4832-af54-91c4eae187c1","_postman_id":"1bd8e574-3c51-4832-af54-91c4eae187c1","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Grants","item":[{"name":"Get Grants for a Contact","id":"f8e0e120-4aef-47e5-880c-7588d2dc00b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Grant/ByContact/:contactId?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Grant","ByContact",":contactId"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) The contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactId"}]}},"response":[{"id":"6aede94d-b4c3-40c9-a986-78c1cd21d8e0","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Grant/ByContact/:contactId?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Grant","ByContact",":contactId"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"grantUrl\": \"<string>\",\n\t\t\t\"giftsAppliedUrl\": \"<string>\",\n\t\t\t\"ownerId\": \"<integer>\",\n\t\t\t\"title\": \"<string>\",\n\t\t\t\"grantingOrganizationId\": \"<integer>\",\n\t\t\t\"grantingOrganizationUrl\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"referenceId\": \"<string>\",\n\t\t\t\"receivingOrganizationId\": \"<integer>\",\n\t\t\t\"receivingOrganizationUrl\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"dueDateUtc\": \"<dateTime>\",\n\t\t\t\"totalAnticipatedAmount\": \"<double>\",\n\t\t\t\"status\": \"<string>\",\n\t\t\t\"submissionDateUtc\": \"<dateTime>\",\n\t\t\t\"anticipatedAwardDateUtc\": \"<dateTime>\",\n\t\t\t\"pointOfContactName\": \"<string>\",\n\t\t\t\"pointOfContactEmail\": \"<string>\",\n\t\t\t\"pointOfContactPhone\": \"<string>\",\n\t\t\t\"website\": \"<string>\",\n\t\t\t\"awardedGrant\": \"<boolean>\",\n\t\t\t\"awardedAmount\": \"<double>\",\n\t\t\t\"awardedDateUtc\": \"<dateTime>\",\n\t\t\t\"awardTerms\": \"<string>\",\n\t\t\t\"grantType\": \"<string>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"grantUrl\": \"<string>\",\n\t\t\t\"giftsAppliedUrl\": \"<string>\",\n\t\t\t\"ownerId\": \"<integer>\",\n\t\t\t\"title\": \"<string>\",\n\t\t\t\"grantingOrganizationId\": \"<integer>\",\n\t\t\t\"grantingOrganizationUrl\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"referenceId\": \"<string>\",\n\t\t\t\"receivingOrganizationId\": \"<integer>\",\n\t\t\t\"receivingOrganizationUrl\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"dueDateUtc\": \"<dateTime>\",\n\t\t\t\"totalAnticipatedAmount\": \"<double>\",\n\t\t\t\"status\": \"<string>\",\n\t\t\t\"submissionDateUtc\": \"<dateTime>\",\n\t\t\t\"anticipatedAwardDateUtc\": \"<dateTime>\",\n\t\t\t\"pointOfContactName\": \"<string>\",\n\t\t\t\"pointOfContactEmail\": \"<string>\",\n\t\t\t\"pointOfContactPhone\": \"<string>\",\n\t\t\t\"website\": \"<string>\",\n\t\t\t\"awardedGrant\": \"<boolean>\",\n\t\t\t\"awardedAmount\": \"<double>\",\n\t\t\t\"awardedDateUtc\": \"<dateTime>\",\n\t\t\t\"awardTerms\": \"<string>\",\n\t\t\t\"grantType\": \"<string>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"f8e0e120-4aef-47e5-880c-7588d2dc00b2"},{"name":"Get Grant","id":"a8f1f12b-801d-40ca-b3ce-eff549f55d4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Grant/:grantId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Grant",":grantId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The grant identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"grantId"}]}},"response":[{"id":"d5f2dda4-92e7-4a6e-8dc3-bac7450fc4a0","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Grant/:grantId","host":["https://api.virtuoussoftware.com"],"path":["api","Grant",":grantId"],"variable":[{"key":"grantId","value":"<integer>","description":"(Required) The grant identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"grantUrl\": \"<string>\",\n\t\"giftsAppliedUrl\": \"<string>\",\n\t\"ownerId\": \"<integer>\",\n\t\"title\": \"<string>\",\n\t\"grantingOrganizationId\": \"<integer>\",\n\t\"grantingOrganizationUrl\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"referenceId\": \"<string>\",\n\t\"receivingOrganizationId\": \"<integer>\",\n\t\"receivingOrganizationUrl\": \"<string>\",\n\t\"projectUrl\": \"<string>\",\n\t\"projectId\": \"<integer>\",\n\t\"project\": \"<string>\",\n\t\"dueDateUtc\": \"<dateTime>\",\n\t\"totalAnticipatedAmount\": \"<double>\",\n\t\"status\": \"<string>\",\n\t\"submissionDateUtc\": \"<dateTime>\",\n\t\"anticipatedAwardDateUtc\": \"<dateTime>\",\n\t\"pointOfContactName\": \"<string>\",\n\t\"pointOfContactEmail\": \"<string>\",\n\t\"pointOfContactPhone\": \"<string>\",\n\t\"website\": \"<string>\",\n\t\"awardedGrant\": \"<boolean>\",\n\t\"awardedAmount\": \"<double>\",\n\t\"awardedDateUtc\": \"<dateTime>\",\n\t\"awardTerms\": \"<string>\",\n\t\"grantType\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"f476ea9a-a71a-4a3d-9767-439756695b22","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Grant/:grantId","host":["https://api.virtuoussoftware.com"],"path":["api","Grant",":grantId"],"variable":[{"key":"grantId","value":"<integer>","description":"(Required) The grant identifier."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"a8f1f12b-801d-40ca-b3ce-eff549f55d4b"},{"name":"Get a Grant by Reference ID","id":"5c0b46f9-ad6a-4772-815e-5d5ac9e0f0d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Grant/ByReference/:referenceId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Grant","ByReference",":referenceId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The reference identifier.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"referenceId"}]}},"response":[{"id":"65aad946-8983-49d7-b00b-64f59b7096f1","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Grant/ByReference/:referenceId","host":["https://api.virtuoussoftware.com"],"path":["api","Grant","ByReference",":referenceId"],"variable":[{"key":"referenceId","value":"<string>","description":"(Required) The reference identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"grantUrl\": \"<string>\",\n\t\"giftsAppliedUrl\": \"<string>\",\n\t\"ownerId\": \"<integer>\",\n\t\"title\": \"<string>\",\n\t\"grantingOrganizationId\": \"<integer>\",\n\t\"grantingOrganizationUrl\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"referenceId\": \"<string>\",\n\t\"receivingOrganizationId\": \"<integer>\",\n\t\"receivingOrganizationUrl\": \"<string>\",\n\t\"projectUrl\": \"<string>\",\n\t\"projectId\": \"<integer>\",\n\t\"project\": \"<string>\",\n\t\"dueDateUtc\": \"<dateTime>\",\n\t\"totalAnticipatedAmount\": \"<double>\",\n\t\"status\": \"<string>\",\n\t\"submissionDateUtc\": \"<dateTime>\",\n\t\"anticipatedAwardDateUtc\": \"<dateTime>\",\n\t\"pointOfContactName\": \"<string>\",\n\t\"pointOfContactEmail\": \"<string>\",\n\t\"pointOfContactPhone\": \"<string>\",\n\t\"website\": \"<string>\",\n\t\"awardedGrant\": \"<boolean>\",\n\t\"awardedAmount\": \"<double>\",\n\t\"awardedDateUtc\": \"<dateTime>\",\n\t\"awardTerms\": \"<string>\",\n\t\"grantType\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"e4cca327-d61f-4b04-98b1-397b3e8d6a76","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Grant/ByReference/:referenceId","host":["https://api.virtuoussoftware.com"],"path":["api","Grant","ByReference",":referenceId"],"variable":[{"key":"referenceId","value":"<string>","description":"(Required) The reference identifier."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"5c0b46f9-ad6a-4772-815e-5d5ac9e0f0d5"},{"name":"Get the Gifts applied to a Grant","id":"92f2e932-d842-4359-b3b3-4c4e24fb8be2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Grant/:grantId/Gifts","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Grant",":grantId","Gifts"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The grant identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"grantId"}]}},"response":[{"id":"c5e105e1-0ab0-455a-a5d3-94c452a06d42","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Grant/:grantId/Gifts","host":["https://api.virtuoussoftware.com"],"path":["api","Grant",":grantId","Gifts"],"variable":[{"key":"grantId","value":"<integer>","description":"(Required) The grant identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"id\": \"<integer>\",\n\t\t\"transactionSource\": \"<string>\",\n\t\t\"transactionId\": \"<string>\",\n\t\t\"contactId\": \"<integer>\",\n\t\t\"contactName\": \"<string>\",\n\t\t\"contactUrl\": \"<string>\",\n\t\t\"giftType\": \"<string>\",\n\t\t\"giftTypeFormatted\": \"<string>\",\n\t\t\"giftDate\": \"<dateTime>\",\n\t\t\"giftDateFormatted\": \"<string>\",\n\t\t\"amount\": \"<double>\",\n\t\t\"amountFormatted\": \"<string>\",\n        \"currencyCode\": \"<string>\",\n        \"exchangeRate\": \"<decimal>\",\n        \"baseCurrencyCode\": \"<string>\",\n\t\t\"batch\": \"<string>\",\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\",\n\t\t\"segmentId\": \"<integer>\",\n\t\t\"segment\": \"<string>\",\n\t\t\"segmentCode\": \"<string>\",\n\t\t\"segmentUrl\": \"<string>\",\n\t\t\"mediaOutletId\": \"<integer>\",\n\t\t\"mediaOutlet\": \"<string>\",\n\t\t\"grantId\": \"<integer>\",\n\t\t\"grant\": \"<string>\",\n\t\t\"grantUrl\": \"<string>\",\n\t\t\"notes\": \"<string>\",\n\t\t\"tribute\": \"<string>\",\n\t\t\"tributeId\": \"<integer>\",\n\t\t\"tributeType\": \"<string>\",\n\t\t\"acknowledgeeIndividualId\": \"<integer>\",\n\t\t\"receiptDate\": \"<dateTime>\",\n\t\t\"receiptDateFormatted\": \"<string>\",\n\t\t\"contactPassthroughId\": \"<integer>\",\n\t\t\"contactPassthroughUrl\": \"<string>\",\n\t\t\"contactIndividualId\": \"<integer>\",\n\t\t\"cashAccountingCode\": \"<string>\",\n\t\t\"giftAskId\": \"<integer>\",\n\t\t\"contactMembershipId\": \"<integer>\",\n\t\t\"giftDesignations\": [\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\t\"project\": \"<string>\",\n\t\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\t\"projectType\": \"<string>\",\n\t\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\t\"display\": \"<string>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\t\"project\": \"<string>\",\n\t\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\t\"projectType\": \"<string>\",\n\t\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\t\"display\": \"<string>\"\n\t\t\t}\n\t\t],\n\t\t\"giftPremiums\": [\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"premiumId\": \"<integer>\",\n\t\t\t\t\"premium\": \"<string>\",\n\t\t\t\t\"premiumUrl\": \"<string>\",\n\t\t\t\t\"quantity\": \"<integer>\",\n\t\t\t\t\"display\": \"<string>\",\n                \"createDateTimeUtc\": \"<dateTime>\",\n                \"createdByUser\": \"<string>\",\n                \"modifiedDateTimeUtc\": \"<dateTime>\",\n                \"modifiedByUser\": \"<string>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"premiumId\": \"<integer>\",\n\t\t\t\t\"premium\": \"<string>\",\n\t\t\t\t\"premiumUrl\": \"<string>\",\n\t\t\t\t\"quantity\": \"<integer>\",\n\t\t\t\t\"display\": \"<string>\",\n                \"createDateTimeUtc\": \"<dateTime>\",\n                \"createdByUser\": \"<string>\",\n                \"modifiedDateTimeUtc\": \"<dateTime>\",\n                \"modifiedByUser\": \"<string>\"\n\t\t\t}\n\t\t],\n\t\t\"pledgePayments\": [\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\t\"actualAmount\": \"<double>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\t\"actualAmount\": \"<double>\"\n\t\t\t}\n\t\t],\n\t\t\"recurringGiftPayments\": [\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"gift\": {\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\t\t\"amount\": \"<double>\"\n\t\t\t\t},\n\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"dismissPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"fulfillPaymentDate\": \"<dateTime>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"gift\": {\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\t\t\"amount\": \"<double>\"\n\t\t\t\t},\n\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"dismissPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"fulfillPaymentDate\": \"<dateTime>\"\n\t\t\t}\n\t\t],\n\t\t\"giftUrl\": \"<string>\",\n\t\t\"isPrivate\": \"<boolean>\",\n\t\t\"isTaxDeductible\": \"<boolean>\",\n\t\t\"customFields\": [\n\t\t\t{\n\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t}\n\t\t]\n\t},\n\t{\n\t\t\"id\": \"<integer>\",\n\t\t\"transactionSource\": \"<string>\",\n\t\t\"transactionId\": \"<string>\",\n\t\t\"contactId\": \"<integer>\",\n\t\t\"contactName\": \"<string>\",\n\t\t\"contactUrl\": \"<string>\",\n\t\t\"giftType\": \"<string>\",\n\t\t\"giftTypeFormatted\": \"<string>\",\n\t\t\"giftDate\": \"<dateTime>\",\n\t\t\"giftDateFormatted\": \"<string>\",\n\t\t\"amount\": \"<double>\",\n\t\t\"amountFormatted\": \"<string>\",\n        \"currencyCode\": \"<string>\",\n        \"exchangeRate\": \"<decimal>\",\n        \"baseCurrencyCode\": \"<string>\",\n\t\t\"batch\": \"<string>\",\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\",\n\t\t\"segmentId\": \"<integer>\",\n\t\t\"segment\": \"<string>\",\n\t\t\"segmentCode\": \"<string>\",\n\t\t\"segmentUrl\": \"<string>\",\n\t\t\"mediaOutletId\": \"<integer>\",\n\t\t\"mediaOutlet\": \"<string>\",\n\t\t\"grantId\": \"<integer>\",\n\t\t\"grant\": \"<string>\",\n\t\t\"grantUrl\": \"<string>\",\n\t\t\"notes\": \"<string>\",\n\t\t\"tribute\": \"<string>\",\n\t\t\"tributeId\": \"<integer>\",\n\t\t\"tributeType\": \"<string>\",\n\t\t\"acknowledgeeIndividualId\": \"<integer>\",\n\t\t\"receiptDate\": \"<dateTime>\",\n\t\t\"receiptDateFormatted\": \"<string>\",\n\t\t\"contactPassthroughId\": \"<integer>\",\n\t\t\"contactPassthroughUrl\": \"<string>\",\n\t\t\"contactIndividualId\": \"<integer>\",\n\t\t\"cashAccountingCode\": \"<string>\",\n\t\t\"giftAskId\": \"<integer>\",\n\t\t\"contactMembershipId\": \"<integer>\",\n\t\t\"giftDesignations\": [\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\t\"project\": \"<string>\",\n\t\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\t\"projectType\": \"<string>\",\n\t\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\t\"display\": \"<string>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\t\"project\": \"<string>\",\n\t\t\t\t\"projectCode\": \"<string>\",\n\t\t\t\t\"externalAccountingCode\": \"<string>\",\n\t\t\t\t\"projectType\": \"<string>\",\n\t\t\t\t\"projectLocation\": \"<string>\",\n\t\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\t\"amountDesignated\": \"<double>\",\n\t\t\t\t\"display\": \"<string>\"\n\t\t\t}\n\t\t],\n\t\t\"giftPremiums\": [\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"premiumId\": \"<integer>\",\n\t\t\t\t\"premium\": \"<string>\",\n\t\t\t\t\"premiumUrl\": \"<string>\",\n\t\t\t\t\"quantity\": \"<integer>\",\n\t\t\t\t\"display\": \"<string>\",\n                \"createDateTimeUtc\": \"<dateTime>\",\n                \"createdByUser\": \"<string>\",\n                \"modifiedDateTimeUtc\": \"<dateTime>\",\n                \"modifiedByUser\": \"<string>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"premiumId\": \"<integer>\",\n\t\t\t\t\"premium\": \"<string>\",\n\t\t\t\t\"premiumUrl\": \"<string>\",\n\t\t\t\t\"quantity\": \"<integer>\",\n\t\t\t\t\"display\": \"<string>\",\n                \"createDateTimeUtc\": \"<dateTime>\",\n                \"createdByUser\": \"<string>\",\n                \"modifiedDateTimeUtc\": \"<dateTime>\",\n                \"modifiedByUser\": \"<string>\"\n\t\t\t}\n\t\t],\n\t\t\"pledgePayments\": [\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\t\"actualAmount\": \"<double>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\"giftId\": \"<integer>\",\n\t\t\t\t\"actualAmount\": \"<double>\"\n\t\t\t}\n\t\t],\n\t\t\"recurringGiftPayments\": [\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"gift\": {\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\t\t\"amount\": \"<double>\"\n\t\t\t\t},\n\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"dismissPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"fulfillPaymentDate\": \"<dateTime>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\"gift\": {\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\"giftDate\": \"<dateTime>\",\n\t\t\t\t\t\"amount\": \"<double>\"\n\t\t\t\t},\n\t\t\t\t\"expectedAmount\": \"<double>\",\n\t\t\t\t\"expectedPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"dismissPaymentDate\": \"<dateTime>\",\n\t\t\t\t\"fulfillPaymentDate\": \"<dateTime>\"\n\t\t\t}\n\t\t],\n\t\t\"giftUrl\": \"<string>\",\n\t\t\"isPrivate\": \"<boolean>\",\n\t\t\"isTaxDeductible\": \"<boolean>\",\n\t\t\"customFields\": [\n\t\t\t{\n\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t}\n\t\t]\n\t}\n]"},{"id":"1c5e5971-5147-43a5-a09a-7eebbe00ddd0","name":"BadRequest","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Grant/:grantId/Gifts","host":["https://api.virtuoussoftware.com"],"path":["api","Grant",":grantId","Gifts"],"variable":[{"key":"grantId","value":"<integer>","description":"(Required) The grant identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"92f2e932-d842-4359-b3b3-4c4e24fb8be2"},{"name":"Create a Grant","id":"7609b2eb-fbf3-46b8-a9a5-64ef09d9e84d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"ownerId\": \"<integer>\",\n    \"title\": \"<string>\",\n    \"grantingOrganizationId\": \"<integer>\",\n    \"description\": \"<string>\",\n    \"referenceId\": \"<string>\",\n    \"receivingOrganizationId\": \"<integer>\",\n    \"projectId\": \"<integer>\",\n    \"dueDate\": \"<dateTime>\",\n    \"totalAnticipatedAmount\": \"<double>\",\n    \"status\": \"<string>\",\n    \"submissionDate\": \"<dateTime>\",\n    \"anticipatedAwardDate\": \"<dateTime>\",\n    \"pointOfContactName\": \"<string>\",\n    \"pointOfContactEmail\": \"<string>\",\n    \"pointOfContactPhone\": \"<string>\",\n    \"website\": \"<string>\",\n    \"awardedGrant\": \"<boolean>\",\n    \"awardedAmount\": \"<double>\",\n    \"awardedDate\": \"<dateTime>\",\n    \"awardTerms\": \"<string>\",\n    \"grantType\": \"<string>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Grant","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Grant"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"4079a62d-11ed-4951-9c4a-97316df70f2f","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"ownerId\": \"<integer>\",\n    \"title\": \"<string>\",\n    \"grantingOrganizationId\": \"<integer>\",\n    \"description\": \"<string>\",\n    \"referenceId\": \"<string>\",\n    \"receivingOrganizationId\": \"<integer>\",\n    \"projectId\": \"<integer>\",\n    \"dueDate\": \"<dateTime>\",\n    \"totalAnticipatedAmount\": \"<double>\",\n    \"status\": \"<string>\",\n    \"submissionDate\": \"<dateTime>\",\n    \"anticipatedAwardDate\": \"<dateTime>\",\n    \"pointOfContactName\": \"<string>\",\n    \"pointOfContactEmail\": \"<string>\",\n    \"pointOfContactPhone\": \"<string>\",\n    \"website\": \"<string>\",\n    \"awardedGrant\": \"<boolean>\",\n    \"awardedAmount\": \"<double>\",\n    \"awardedDate\": \"<dateTime>\",\n    \"awardTerms\": \"<string>\",\n    \"grantType\": \"<string>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Grant"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"grantUrl\": \"<string>\",\n\t\"giftsAppliedUrl\": \"<string>\",\n\t\"ownerId\": \"<integer>\",\n\t\"title\": \"<string>\",\n\t\"grantingOrganizationId\": \"<integer>\",\n\t\"grantingOrganizationUrl\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"referenceId\": \"<string>\",\n\t\"receivingOrganizationId\": \"<integer>\",\n\t\"receivingOrganizationUrl\": \"<string>\",\n\t\"projectUrl\": \"<string>\",\n\t\"projectId\": \"<integer>\",\n\t\"project\": \"<string>\",\n\t\"dueDateUtc\": \"<dateTime>\",\n\t\"totalAnticipatedAmount\": \"<double>\",\n\t\"status\": \"<string>\",\n\t\"submissionDateUtc\": \"<dateTime>\",\n\t\"anticipatedAwardDateUtc\": \"<dateTime>\",\n\t\"pointOfContactName\": \"<string>\",\n\t\"pointOfContactEmail\": \"<string>\",\n\t\"pointOfContactPhone\": \"<string>\",\n\t\"website\": \"<string>\",\n\t\"awardedGrant\": \"<boolean>\",\n\t\"awardedAmount\": \"<double>\",\n\t\"awardedDateUtc\": \"<dateTime>\",\n\t\"awardTerms\": \"<string>\",\n\t\"grantType\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"eb21d1c6-739e-4296-8505-bc0228430bd5","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"ownerId\": \"<integer>\",\n    \"title\": \"<string>\",\n    \"grantingOrganizationId\": \"<integer>\",\n    \"description\": \"<string>\",\n    \"referenceId\": \"<string>\",\n    \"receivingOrganizationId\": \"<integer>\",\n    \"projectId\": \"<integer>\",\n    \"dueDate\": \"<dateTime>\",\n    \"totalAnticipatedAmount\": \"<double>\",\n    \"status\": \"<string>\",\n    \"submissionDate\": \"<dateTime>\",\n    \"anticipatedAwardDate\": \"<dateTime>\",\n    \"pointOfContactName\": \"<string>\",\n    \"pointOfContactEmail\": \"<string>\",\n    \"pointOfContactPhone\": \"<string>\",\n    \"website\": \"<string>\",\n    \"awardedGrant\": \"<boolean>\",\n    \"awardedAmount\": \"<double>\",\n    \"awardedDate\": \"<dateTime>\",\n    \"awardTerms\": \"<string>\",\n    \"grantType\": \"<string>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Grant"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"7609b2eb-fbf3-46b8-a9a5-64ef09d9e84d"},{"name":"Update a Grant","id":"008f3cf2-e5c1-4007-a5b0-975040ed7cdb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"ownerId\": \"<integer>\",\n    \"title\": \"<string>\",\n    \"grantingOrganizationId\": \"<integer>\",\n    \"description\": \"<string>\",\n    \"referenceId\": \"<string>\",\n    \"receivingOrganizationId\": \"<integer>\",\n    \"projectId\": \"<integer>\",\n    \"dueDate\": \"<dateTime>\",\n    \"totalAnticipatedAmount\": \"<double>\",\n    \"status\": \"<string>\",\n    \"submissionDate\": \"<dateTime>\",\n    \"anticipatedAwardDate\": \"<dateTime>\",\n    \"pointOfContactName\": \"<string>\",\n    \"pointOfContactEmail\": \"<string>\",\n    \"pointOfContactPhone\": \"<string>\",\n    \"website\": \"<string>\",\n    \"awardedGrant\": \"<boolean>\",\n    \"awardedAmount\": \"<double>\",\n    \"awardedDate\": \"<dateTime>\",\n    \"awardTerms\": \"<string>\",\n    \"grantType\": \"<string>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Grant/:grantId","description":"<p>Similar to other update methods in the API, excluding a property will remove it's value from the object. \nIf you're only updating a single property, the entire model is still required.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Grant",":grantId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The grant identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"grantId"}]}},"response":[{"id":"ded09825-6a37-4d27-92bc-be37de72dcca","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"ownerId\": \"<integer>\",\n    \"title\": \"<string>\",\n    \"grantingOrganizationId\": \"<integer>\",\n    \"description\": \"<string>\",\n    \"referenceId\": \"<string>\",\n    \"receivingOrganizationId\": \"<integer>\",\n    \"projectId\": \"<integer>\",\n    \"dueDate\": \"<dateTime>\",\n    \"totalAnticipatedAmount\": \"<double>\",\n    \"status\": \"<string>\",\n    \"submissionDate\": \"<dateTime>\",\n    \"anticipatedAwardDate\": \"<dateTime>\",\n    \"pointOfContactName\": \"<string>\",\n    \"pointOfContactEmail\": \"<string>\",\n    \"pointOfContactPhone\": \"<string>\",\n    \"website\": \"<string>\",\n    \"awardedGrant\": \"<boolean>\",\n    \"awardedAmount\": \"<double>\",\n    \"awardedDate\": \"<dateTime>\",\n    \"awardTerms\": \"<string>\",\n    \"grantType\": \"<string>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Grant/:grantId","host":["https://api.virtuoussoftware.com"],"path":["api","Grant",":grantId"],"variable":[{"key":"grantId","value":"<integer>","description":"(Required) The grant identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"grantUrl\": \"<string>\",\n\t\"giftsAppliedUrl\": \"<string>\",\n\t\"ownerId\": \"<integer>\",\n\t\"title\": \"<string>\",\n\t\"grantingOrganizationId\": \"<integer>\",\n\t\"grantingOrganizationUrl\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"referenceId\": \"<string>\",\n\t\"receivingOrganizationId\": \"<integer>\",\n\t\"receivingOrganizationUrl\": \"<string>\",\n\t\"projectUrl\": \"<string>\",\n\t\"projectId\": \"<integer>\",\n\t\"project\": \"<string>\",\n\t\"dueDateUtc\": \"<dateTime>\",\n\t\"totalAnticipatedAmount\": \"<double>\",\n\t\"status\": \"<string>\",\n\t\"submissionDateUtc\": \"<dateTime>\",\n\t\"anticipatedAwardDateUtc\": \"<dateTime>\",\n\t\"pointOfContactName\": \"<string>\",\n\t\"pointOfContactEmail\": \"<string>\",\n\t\"pointOfContactPhone\": \"<string>\",\n\t\"website\": \"<string>\",\n\t\"awardedGrant\": \"<boolean>\",\n\t\"awardedAmount\": \"<double>\",\n\t\"awardedDateUtc\": \"<dateTime>\",\n\t\"awardTerms\": \"<string>\",\n\t\"grantType\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"8ef39f6c-f92e-4251-ae98-51da16f19f9f","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"ownerId\": \"<integer>\",\n    \"title\": \"<string>\",\n    \"grantingOrganizationId\": \"<integer>\",\n    \"description\": \"<string>\",\n    \"referenceId\": \"<string>\",\n    \"receivingOrganizationId\": \"<integer>\",\n    \"projectId\": \"<integer>\",\n    \"dueDate\": \"<dateTime>\",\n    \"totalAnticipatedAmount\": \"<double>\",\n    \"status\": \"<string>\",\n    \"submissionDate\": \"<dateTime>\",\n    \"anticipatedAwardDate\": \"<dateTime>\",\n    \"pointOfContactName\": \"<string>\",\n    \"pointOfContactEmail\": \"<string>\",\n    \"pointOfContactPhone\": \"<string>\",\n    \"website\": \"<string>\",\n    \"awardedGrant\": \"<boolean>\",\n    \"awardedAmount\": \"<double>\",\n    \"awardedDate\": \"<dateTime>\",\n    \"awardTerms\": \"<string>\",\n    \"grantType\": \"<string>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Grant/:grantId","host":["https://api.virtuoussoftware.com"],"path":["api","Grant",":grantId"],"variable":[{"key":"grantId","value":"<integer>","description":"(Required) The grant identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"008f3cf2-e5c1-4007-a5b0-975040ed7cdb"},{"name":"Delete a Grant","id":"d86770cf-e93a-4251-9be3-10e85b32393d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.virtuoussoftware.com/api/Grant/:grantId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Grant",":grantId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The grant identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"grantId"}]}},"response":[{"id":"bf79e337-cb77-4d05-99a9-7664900e38aa","name":"OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Grant/:grantId","host":["https://api.virtuoussoftware.com"],"path":["api","Grant",":grantId"],"variable":[{"key":"grantId","value":"<integer>","description":"(Required) The grant identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"c48263be-e957-4028-87b5-632eccb011fb","name":"BadRequest","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Grant/:grantId","host":["https://api.virtuoussoftware.com"],"path":["api","Grant",":grantId"],"variable":[{"key":"grantId","value":"<integer>","description":"(Required) The grant identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d86770cf-e93a-4251-9be3-10e85b32393d"},{"name":"Get Grant Custom Fields Available","id":"f93c3184-49a1-4878-a127-d23a9cd56525","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Grant/CustomFields","description":"<p>Will return all enabled custom fields available for the Grant object.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Grant","CustomFields"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"4a9f762e-cdcf-4920-8e67-902ea59ab5ac","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Grant/CustomFields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"dataType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"displayName\": \"<string>\",\n\t\t\"options\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t},\n\t{\n\t\t\"dataType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"displayName\": \"<string>\",\n\t\t\"options\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t}\n]"}],"_postman_id":"f93c3184-49a1-4878-a127-d23a9cd56525"},{"name":"Get Grant Query Options","id":"10e3f108-76aa-4914-8633-227ce77a416f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Grant/QueryOptions","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Grant","QueryOptions"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"2ab4c899-070f-42f6-b475-6b6d18665912","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Grant/QueryOptions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"options\": [\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t}\n\t],\n\t\"operatorOptions\": [\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t},\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t}\n\t]\n}"}],"_postman_id":"10e3f108-76aa-4914-8633-227ce77a416f"},{"name":"Query Grants","id":"0899e4cf-0cae-482c-bd88-b2a610d2e2aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"groups\": [\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"conditions\": [\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                },\n                {\n                    \"parameter\": \"<string>\",\n                    \"operator\": \"<string>\",\n                    \"value\": \"<string>\",\n                    \"secondaryValue\": \"<string>\",\n                    \"values\": [\n                        \"<string>\",\n                        \"<string>\"\n                    ]\n                }\n            ]\n        }\n    ],\n    \"sortBy\": \"<string>\",\n    \"descending\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Grant/Query?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Grant","Query"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10. Max is 1000.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"6da6c19a-cf75-4df5-bd71-647a97652554","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Grant/Query?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Grant","Query"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"grantUrl\": \"<string>\",\n\t\t\t\"giftsAppliedUrl\": \"<string>\",\n\t\t\t\"ownerId\": \"<integer>\",\n\t\t\t\"title\": \"<string>\",\n\t\t\t\"grantingOrganizationId\": \"<integer>\",\n\t\t\t\"grantingOrganizationUrl\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"referenceId\": \"<string>\",\n\t\t\t\"receivingOrganizationId\": \"<integer>\",\n\t\t\t\"receivingOrganizationUrl\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"dueDateUtc\": \"<dateTime>\",\n\t\t\t\"totalAnticipatedAmount\": \"<double>\",\n\t\t\t\"status\": \"<string>\",\n\t\t\t\"submissionDateUtc\": \"<dateTime>\",\n\t\t\t\"anticipatedAwardDateUtc\": \"<dateTime>\",\n\t\t\t\"pointOfContactName\": \"<string>\",\n\t\t\t\"pointOfContactEmail\": \"<string>\",\n\t\t\t\"pointOfContactPhone\": \"<string>\",\n\t\t\t\"website\": \"<string>\",\n\t\t\t\"awardedGrant\": \"<boolean>\",\n\t\t\t\"awardedAmount\": \"<double>\",\n\t\t\t\"awardedDateUtc\": \"<dateTime>\",\n\t\t\t\"awardTerms\": \"<string>\",\n\t\t\t\"grantType\": \"<string>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"grantUrl\": \"<string>\",\n\t\t\t\"giftsAppliedUrl\": \"<string>\",\n\t\t\t\"ownerId\": \"<integer>\",\n\t\t\t\"title\": \"<string>\",\n\t\t\t\"grantingOrganizationId\": \"<integer>\",\n\t\t\t\"grantingOrganizationUrl\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"referenceId\": \"<string>\",\n\t\t\t\"receivingOrganizationId\": \"<integer>\",\n\t\t\t\"receivingOrganizationUrl\": \"<string>\",\n\t\t\t\"projectUrl\": \"<string>\",\n\t\t\t\"projectId\": \"<integer>\",\n\t\t\t\"project\": \"<string>\",\n\t\t\t\"dueDateUtc\": \"<dateTime>\",\n\t\t\t\"totalAnticipatedAmount\": \"<double>\",\n\t\t\t\"status\": \"<string>\",\n\t\t\t\"submissionDateUtc\": \"<dateTime>\",\n\t\t\t\"anticipatedAwardDateUtc\": \"<dateTime>\",\n\t\t\t\"pointOfContactName\": \"<string>\",\n\t\t\t\"pointOfContactEmail\": \"<string>\",\n\t\t\t\"pointOfContactPhone\": \"<string>\",\n\t\t\t\"website\": \"<string>\",\n\t\t\t\"awardedGrant\": \"<boolean>\",\n\t\t\t\"awardedAmount\": \"<double>\",\n\t\t\t\"awardedDateUtc\": \"<dateTime>\",\n\t\t\t\"awardTerms\": \"<string>\",\n\t\t\t\"grantType\": \"<string>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"customFields\": [\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"name\": \"<string>\",\n\t\t\t\t\t\"value\": \"<string>\",\n\t\t\t\t\t\"displayName\": \"<string>\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"},{"id":"00395271-b6fc-4683-ac53-7bcd91a7ee94","name":"BadRequest","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Grant/Query?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Grant","Query"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"0899e4cf-0cae-482c-bd88-b2a610d2e2aa"}],"id":"6a62d0cf-b97a-4f8b-91c6-7b09da7aa141","_postman_id":"6a62d0cf-b97a-4f8b-91c6-7b09da7aa141","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Volunteering","item":[{"name":"Volunteer Opportunity","item":[{"name":"Get Volunteer Opportunities","id":"60660fd6-6917-4e11-a587-ade251d1ec7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/VolunteerOpportunity?filter=<string>&skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","VolunteerOpportunity"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The optional filter.</p>\n","type":"text/plain"},"key":"filter","value":"<string>"},{"description":{"content":"<p>The number of records to skip.  Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take.  Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"9f6e4072-3f75-4ce2-af48-567ab5cba717","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity?filter=<string>&skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity"],"query":[{"key":"filter","value":"<string>"},{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"list\": [\n        {\n            \"id\": 1,\n            \"name\": \"Sunday Soup Kitchen\",\n            \"url\": \"https://soupkitchen.org/sunday\",\n            \"description\": \"Come on out to our soup kitchen and pitch in!\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n            \"anytime\": false,\n            \"startDateTime\": \"3/27/2022 12:00 PM\",\n            \"endDateTime\": \"3/27/2022 6:00 PM\",\n            \"timeZone\": \"US/Arizona\",\n            \"isActive\": true,\n            \"isLocalOnly\": true,\n            \"currentPriority\": \"Medium\",\n            \"currentNeed\": 20,\n            \"preferredNumberOfHours\": 20,\n            \"anywhere\": false,\n            \"locationName\": \"Downtown Soup Kitchen\",\n            \"address1\": \"123 Nowhere Ave\",\n            \"address2\": \"Suite 200\",\n            \"city\": \"Phoenix\",\n            \"state\": \"AZ\",\n            \"postal\": \"85004\",\n            \"country\": \"US\",\n            \"totalVolunteers\": 0,\n            \"totalVolunteerHours\": 0,\n            \"currentNeedFilledPercentage\": 0,\n            \"hoursFilledPercentage\": 0,\n            \"volunteerOrganizers\": [\n                {\n                    \"id\": 1,\n                    \"contactId\": 122,\n                    \"contactIndividualId\": 134,\n                    \"displayName\": \"Bob Loblaw\",\n                    \"firstName\": \"Bob\",\n                    \"avatarUrl\": null,\n                    \"primaryPhone\": \"555-555-5555\",\n                    \"primaryEmail\": \"bob@loblaw.org\",\n                    \"contactUrl\": \"https://api.virtuoussoftware.com/api/Contact/122\",\n                    \"volunteerOrganizerUrl\": \"https://api.virtuoussoftware.com/api/VolunteerOpportunity/1/Organizers/1\",\n                    \"volunteerOpportunityUrl\": \"https://api.virtuoussoftware.com/api/VolunteerOpportunity/1\"\n                }\n            ],\n            \"volunteerOpportunityUrl\": \"https://api.virtuoussoftware.com/api/VolunteerOpportunity/1\",\n            \"volunteerOrganizersUrl\": \"https://api.virtuoussoftware.com/api/VolunteerOpportunity/1/Organizers/1\",\n            \"volunteersUrl\": \"https://api.virtuoussoftware.com/api/VolunteerOpportunity/1/Volunteers\",\n            \"customFields\": [\n                {\n                    \"name\": \"Meal Options\",\n                    \"value\": \"Soup and Salad for Lunch, Pizza for Dinner\",\n                    \"displayName\": \"What meal options will be available?\"\n                }\n            ]\n        }\n    ],\n    \"total\": 1\n}"}],"_postman_id":"60660fd6-6917-4e11-a587-ade251d1ec7b"},{"name":"Get Volunteer Opportunity","id":"33131efc-aa1d-4e8e-bf53-79720d2b67e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","VolunteerOpportunity",":volunteerOpportunityId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The volunteer opportunity identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"volunteerOpportunityId"}]}},"response":[{"id":"88a5d1e6-71a1-4cdf-b042-9aa8e3130bf6","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId"],"variable":[{"key":"volunteerOpportunityId","value":"<integer>","description":"(Required) The volunteer opportunity identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"volunteerOpportunityUrl\": \"<string>\",\n\t\"name\": \"<string>\",\n\t\"locationName\": \"<string>\",\n\t\"displayAddress\": \"<string>\",\n\t\"startDateTime\": \"<string>\",\n\t\"endDateTime\": \"<string>\",\n\t\"preferredDateTime\": \"<string>\",\n\t\"timeZone\": \"<string>\",\n\t\"description\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"isActive\": \"<boolean>\",\n\t\"isLocalOnly\": \"<boolean>\",\n\t\"preferredNumberOfHours\": \"<double>\",\n\t\"projectId\": \"<integer>\",\n\t\"totalVolunteers\": \"<integer>\",\n\t\"totalVolunteerHours\": \"<double>\",\n\t\"volunteerOrganizers\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"volunteerOrganizerUrl\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"displayName\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\"primaryPhone\": \"<string>\",\n\t\t\t\"primaryEmail\": \"<string>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"volunteerOpportunityUrl\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"volunteerOrganizerUrl\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"displayName\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\"primaryPhone\": \"<string>\",\n\t\t\t\"primaryEmail\": \"<string>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"volunteerOpportunityUrl\": \"<string>\"\n\t\t}\n\t],\n\t\"currentNeed\": \"<integer>\",\n\t\"currentPriority\": \"<string>\",\n\t\"currentPriorityName\": \"<string>\",\n\t\"currentNeedFilledPercentage\": \"<double>\",\n\t\"hoursFilledPercentage\": \"<double>\",\n\t\"volunteerOrganizersUrl\": \"<string>\",\n\t\"volunteersUrl\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"24a84f68-fef8-424d-8977-9e7e67acdae1","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId"],"variable":[{"key":"volunteerOpportunityId","value":"<integer>","description":"(Required) The volunteer opportunity identifier."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"33131efc-aa1d-4e8e-bf53-79720d2b67e1"},{"name":"Create a Volunteer Opportunity","id":"dbabf899-0b78-4f8d-a4ed-a4f776c45225","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"startDateTime\": \"<dateTime>\",\n    \"endDateTime\": \"<dateTime>\",\n    \"timeZone\": \"<string>\",\n    \"preferredNumberOfHours\": \"<double>\",\n    \"projectId\": \"<integer>\",\n    \"locationName\": \"<string>\",\n    \"description\": \"<string>\",\n    \"isActive\": \"<boolean>\",\n    \"isLocalOnly\": \"<boolean>\",\n    \"address1\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"postal\": \"<string>\",\n    \"country\": \"<string>\",\n    \"preferredDateTime\": \"<dateTime>\",\n    \"currentPriority\": \"<string>\",\n    \"currentNeed\": \"<integer>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/VolunteerOpportunity","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","VolunteerOpportunity"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"1794a90d-c1a7-4efb-b37c-973ad77d7145","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"startDateTime\": \"<dateTime>\",\n    \"endDateTime\": \"<dateTime>\",\n    \"timeZone\": \"<string>\",\n    \"preferredNumberOfHours\": \"<double>\",\n    \"projectId\": \"<integer>\",\n    \"locationName\": \"<string>\",\n    \"description\": \"<string>\",\n    \"isActive\": \"<boolean>\",\n    \"isLocalOnly\": \"<boolean>\",\n    \"address1\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"postal\": \"<string>\",\n    \"country\": \"<string>\",\n    \"preferredDateTime\": \"<dateTime>\",\n    \"currentPriority\": \"<string>\",\n    \"currentNeed\": \"<integer>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/VolunteerOpportunity"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"volunteerOpportunityUrl\": \"<string>\",\n\t\"name\": \"<string>\",\n\t\"locationName\": \"<string>\",\n\t\"displayAddress\": \"<string>\",\n\t\"startDateTime\": \"<string>\",\n\t\"endDateTime\": \"<string>\",\n\t\"preferredDateTime\": \"<string>\",\n\t\"timeZone\": \"<string>\",\n\t\"description\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"isActive\": \"<boolean>\",\n\t\"isLocalOnly\": \"<boolean>\",\n\t\"preferredNumberOfHours\": \"<double>\",\n\t\"projectId\": \"<integer>\",\n\t\"totalVolunteers\": \"<integer>\",\n\t\"totalVolunteerHours\": \"<double>\",\n\t\"volunteerOrganizers\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"volunteerOrganizerUrl\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"displayName\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\"primaryPhone\": \"<string>\",\n\t\t\t\"primaryEmail\": \"<string>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"volunteerOpportunityUrl\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"volunteerOrganizerUrl\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"displayName\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\"primaryPhone\": \"<string>\",\n\t\t\t\"primaryEmail\": \"<string>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"volunteerOpportunityUrl\": \"<string>\"\n\t\t}\n\t],\n\t\"currentNeed\": \"<integer>\",\n\t\"currentPriority\": \"<string>\",\n\t\"currentPriorityName\": \"<string>\",\n\t\"currentNeedFilledPercentage\": \"<double>\",\n\t\"hoursFilledPercentage\": \"<double>\",\n\t\"volunteerOrganizersUrl\": \"<string>\",\n\t\"volunteersUrl\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"19fbece9-6973-4104-9b77-f7f3bf846899","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"startDateTime\": \"<dateTime>\",\n    \"endDateTime\": \"<dateTime>\",\n    \"timeZone\": \"<string>\",\n    \"preferredNumberOfHours\": \"<double>\",\n    \"projectId\": \"<integer>\",\n    \"locationName\": \"<string>\",\n    \"description\": \"<string>\",\n    \"isActive\": \"<boolean>\",\n    \"isLocalOnly\": \"<boolean>\",\n    \"address1\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"postal\": \"<string>\",\n    \"country\": \"<string>\",\n    \"preferredDateTime\": \"<dateTime>\",\n    \"currentPriority\": \"<string>\",\n    \"currentNeed\": \"<integer>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/VolunteerOpportunity"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"dbabf899-0b78-4f8d-a4ed-a4f776c45225"},{"name":"Update a Volunteer Opportunity","id":"2df40846-ed7b-4cfd-8067-5b4d98cbe36e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"startDateTime\": \"<dateTime>\",\n    \"endDateTime\": \"<dateTime>\",\n    \"timeZone\": \"<string>\",\n    \"preferredNumberOfHours\": \"<double>\",\n    \"projectId\": \"<integer>\",\n    \"locationName\": \"<string>\",\n    \"description\": \"<string>\",\n    \"isActive\": \"<boolean>\",\n    \"isLocalOnly\": \"<boolean>\",\n    \"address1\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"postal\": \"<string>\",\n    \"country\": \"<string>\",\n    \"preferredDateTime\": \"<dateTime>\",\n    \"currentPriority\": \"<string>\",\n    \"currentNeed\": \"<integer>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","VolunteerOpportunity",":volunteerOpportunityId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The volunteer opportunity identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"volunteerOpportunityId"}]}},"response":[{"id":"c713a014-6991-4e26-9e7f-f31e45d8e06b","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"startDateTime\": \"<dateTime>\",\n    \"endDateTime\": \"<dateTime>\",\n    \"timeZone\": \"<string>\",\n    \"preferredNumberOfHours\": \"<double>\",\n    \"projectId\": \"<integer>\",\n    \"locationName\": \"<string>\",\n    \"description\": \"<string>\",\n    \"isActive\": \"<boolean>\",\n    \"isLocalOnly\": \"<boolean>\",\n    \"address1\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"postal\": \"<string>\",\n    \"country\": \"<string>\",\n    \"preferredDateTime\": \"<dateTime>\",\n    \"currentPriority\": \"<string>\",\n    \"currentNeed\": \"<integer>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId"],"variable":[{"key":"volunteerOpportunityId","value":"<integer>","description":"(Required) The volunteer opportunity identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"volunteerOpportunityUrl\": \"<string>\",\n\t\"name\": \"<string>\",\n\t\"locationName\": \"<string>\",\n\t\"displayAddress\": \"<string>\",\n\t\"startDateTime\": \"<string>\",\n\t\"endDateTime\": \"<string>\",\n\t\"preferredDateTime\": \"<string>\",\n\t\"timeZone\": \"<string>\",\n\t\"description\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"isActive\": \"<boolean>\",\n\t\"isLocalOnly\": \"<boolean>\",\n\t\"preferredNumberOfHours\": \"<double>\",\n\t\"projectId\": \"<integer>\",\n\t\"totalVolunteers\": \"<integer>\",\n\t\"totalVolunteerHours\": \"<double>\",\n\t\"volunteerOrganizers\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"volunteerOrganizerUrl\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"displayName\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\"primaryPhone\": \"<string>\",\n\t\t\t\"primaryEmail\": \"<string>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"volunteerOpportunityUrl\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"volunteerOrganizerUrl\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"displayName\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\"primaryPhone\": \"<string>\",\n\t\t\t\"primaryEmail\": \"<string>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"volunteerOpportunityUrl\": \"<string>\"\n\t\t}\n\t],\n\t\"currentNeed\": \"<integer>\",\n\t\"currentPriority\": \"<string>\",\n\t\"currentPriorityName\": \"<string>\",\n\t\"currentNeedFilledPercentage\": \"<double>\",\n\t\"hoursFilledPercentage\": \"<double>\",\n\t\"volunteerOrganizersUrl\": \"<string>\",\n\t\"volunteersUrl\": \"<string>\",\n\t\"customFields\": [\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"value\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\"\n\t\t}\n\t]\n}"},{"id":"ea95e9d1-0658-490a-911b-4af0b4c111b7","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"startDateTime\": \"<dateTime>\",\n    \"endDateTime\": \"<dateTime>\",\n    \"timeZone\": \"<string>\",\n    \"preferredNumberOfHours\": \"<double>\",\n    \"projectId\": \"<integer>\",\n    \"locationName\": \"<string>\",\n    \"description\": \"<string>\",\n    \"isActive\": \"<boolean>\",\n    \"isLocalOnly\": \"<boolean>\",\n    \"address1\": \"<string>\",\n    \"address2\": \"<string>\",\n    \"city\": \"<string>\",\n    \"state\": \"<string>\",\n    \"postal\": \"<string>\",\n    \"country\": \"<string>\",\n    \"preferredDateTime\": \"<dateTime>\",\n    \"currentPriority\": \"<string>\",\n    \"currentNeed\": \"<integer>\",\n    \"customFields\": [\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        },\n        {\n            \"name\": \"<string>\",\n            \"value\": \"<string>\",\n            \"displayName\": \"<string>\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId"],"variable":[{"key":"volunteerOpportunityId","value":"<integer>","description":"(Required) The volunteer opportunity identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"2df40846-ed7b-4cfd-8067-5b4d98cbe36e"},{"name":"Delete a Volunteer Opportunity","id":"d6686f73-57e9-4a4d-9496-77221f6da68b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId","description":"<p>Once an Opportunity has any Organizers or Volunteers, the Opportunity can no longer be deleted, only archived.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","VolunteerOpportunity",":volunteerOpportunityId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The volunteer opportunity identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"volunteerOpportunityId"}]}},"response":[{"id":"bd3f9810-8887-4dbd-8552-fb61905fcd62","name":"OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId"],"variable":[{"key":"volunteerOpportunityId","value":"<integer>","description":"(Required) The volunteer opportunity identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"a5c75c79-c2df-4e59-a93a-214028c5a004","name":"BadRequest","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId"],"variable":[{"key":"volunteerOpportunityId","value":"<integer>","description":"(Required) The volunteer opportunity identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d6686f73-57e9-4a4d-9496-77221f6da68b"},{"name":"Get Custom Fields Available","id":"cf8125da-6d7f-4f80-a9f6-86b981e09f22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/CustomFields","description":"<p>Will return all enabled custom fields available for the volunteer opportunities object.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","VolunteerOpportunity","CustomFields"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"f3464aee-1387-4f05-8e04-3de778a5b08d","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/CustomFields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"dataType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"displayName\": \"<string>\",\n\t\t\"options\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t},\n\t{\n\t\t\"dataType\": \"<string>\",\n\t\t\"name\": \"<string>\",\n\t\t\"displayName\": \"<string>\",\n\t\t\"options\": [\n\t\t\t\"<string>\",\n\t\t\t\"<string>\"\n\t\t],\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t}\n]"}],"_postman_id":"cf8125da-6d7f-4f80-a9f6-86b981e09f22"},{"name":"Get Query Options","id":"98130d97-7f0b-4e6d-8d4e-3d514517971d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/QueryOptions","description":"<p>Available starting 3/29/2022</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","VolunteerOpportunity","QueryOptions"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"7ae9394f-9526-487e-b735-da94aa7069ae","name":"Ok","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/QueryOptions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"1567","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Date","value":"Wed, 23 Mar 2022 23:00:06 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/10.0","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Request-Context","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-RateLimit-Limit","value":"1500","enabled":true},{"key":"X-RateLimit-Remaining","value":"1499","enabled":true},{"key":"X-RateLimit-Reset","value":"1648079993","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"Request-Context","value":"appId=cid-v1:d5256cef-83ae-4057-8380-1ed09cd521cb","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"options\": [\n        {\n            \"parameter\": \"Volunteer Opportunity Id\",\n            \"type\": \"Int\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"Is\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"LessThan\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"LessThanOrEqual\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"GreaterThan\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"GreaterThanOrEqual\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Between\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                }\n            ],\n            \"valueOptions\": []\n        },\n        {\n            \"parameter\": \"Name\",\n            \"type\": \"String\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"Is\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Contains\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"StartsWith\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"EndsWith\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                }\n            ],\n            \"valueOptions\": []\n        },\n        {\n            \"parameter\": \"Description\",\n            \"type\": \"String\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"Is\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Contains\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"StartsWith\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"EndsWith\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                }\n            ],\n            \"valueOptions\": []\n        },\n        {\n            \"parameter\": \"Create Date\",\n            \"type\": \"Date\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"Is\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"LessThan\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"LessThanOrEqual\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Before\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"OnOrBefore\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"GreaterThan\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"GreaterThanOrEqual\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"After\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"OnOrAfter\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Between\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                }\n            ],\n            \"valueOptions\": [\n                \"180 Days Ago\",\n                \"270 Days Ago\",\n                \"30 Days Ago\",\n                \"60 Days Ago\",\n                \"90 Days Ago\",\n                \"Last Sunday\",\n                \"One week from now\",\n                \"One Year Ago\",\n                \"Start Of This Month\",\n                \"This Calendar Year\",\n                \"Today\",\n                \"Tomorrow\",\n                \"Two Years Ago\",\n                \"Yesterday\"\n            ]\n        },\n        {\n            \"parameter\": \"Last Modified Date\",\n            \"type\": \"Date\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"Is\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"LessThan\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"LessThanOrEqual\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Before\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"OnOrBefore\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"GreaterThan\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"GreaterThanOrEqual\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"After\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"OnOrAfter\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Between\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                }\n            ],\n            \"valueOptions\": [\n                \"180 Days Ago\",\n                \"270 Days Ago\",\n                \"30 Days Ago\",\n                \"60 Days Ago\",\n                \"90 Days Ago\",\n                \"Last Sunday\",\n                \"One week from now\",\n                \"One Year Ago\",\n                \"Start Of This Month\",\n                \"This Calendar Year\",\n                \"Today\",\n                \"Tomorrow\",\n                \"Two Years Ago\",\n                \"Yesterday\"\n            ]\n        },\n        {\n            \"parameter\": \"Start Date\",\n            \"type\": \"Date\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"Is\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"IsKnown\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": false\n                },\n                {\n                    \"operator\": \"IsNotKnown\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": false\n                },\n                {\n                    \"operator\": \"LessThan\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"LessThanOrEqual\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Before\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"OnOrBefore\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"GreaterThan\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"GreaterThanOrEqual\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"After\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"OnOrAfter\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Between\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                }\n            ],\n            \"valueOptions\": [\n                \"180 Days Ago\",\n                \"270 Days Ago\",\n                \"30 Days Ago\",\n                \"60 Days Ago\",\n                \"90 Days Ago\",\n                \"Last Sunday\",\n                \"One week from now\",\n                \"One Year Ago\",\n                \"Start Of This Month\",\n                \"This Calendar Year\",\n                \"Today\",\n                \"Tomorrow\",\n                \"Two Years Ago\",\n                \"Yesterday\"\n            ]\n        },\n        {\n            \"parameter\": \"End Date\",\n            \"type\": \"Date\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"Is\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"IsKnown\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": false\n                },\n                {\n                    \"operator\": \"IsNotKnown\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": false\n                },\n                {\n                    \"operator\": \"LessThan\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"LessThanOrEqual\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Before\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"OnOrBefore\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"GreaterThan\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"GreaterThanOrEqual\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"After\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"OnOrAfter\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Between\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                }\n            ],\n            \"valueOptions\": [\n                \"180 Days Ago\",\n                \"270 Days Ago\",\n                \"30 Days Ago\",\n                \"60 Days Ago\",\n                \"90 Days Ago\",\n                \"Last Sunday\",\n                \"One week from now\",\n                \"One Year Ago\",\n                \"Start Of This Month\",\n                \"This Calendar Year\",\n                \"Today\",\n                \"Tomorrow\",\n                \"Two Years Ago\",\n                \"Yesterday\"\n            ]\n        },\n        {\n            \"parameter\": \"Anytime\",\n            \"type\": \"Boolean\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"IsTrue\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": false\n                },\n                {\n                    \"operator\": \"IsFalse\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": false\n                }\n            ],\n            \"valueOptions\": []\n        },\n        {\n            \"parameter\": \"Active\",\n            \"type\": \"Boolean\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"IsTrue\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": false\n                },\n                {\n                    \"operator\": \"IsFalse\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": false\n                }\n            ],\n            \"valueOptions\": []\n        },\n        {\n            \"parameter\": \"Local Only\",\n            \"type\": \"Boolean\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"IsTrue\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": false\n                },\n                {\n                    \"operator\": \"IsFalse\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": false\n                }\n            ],\n            \"valueOptions\": []\n        },\n        {\n            \"parameter\": \"Current Priority\",\n            \"type\": \"List\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"Is\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"IsNot\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                }\n            ],\n            \"valueOptions\": [\n                \"High\",\n                \"Low\",\n                \"Medium\"\n            ]\n        },\n        {\n            \"parameter\": \"Current Need\",\n            \"type\": \"Int\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"Is\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"LessThan\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"LessThanOrEqual\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"GreaterThan\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"GreaterThanOrEqual\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Between\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                }\n            ],\n            \"valueOptions\": []\n        },\n        {\n            \"parameter\": \"Preferred Number of Hours\",\n            \"type\": \"Decimal\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"Is\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"LessThan\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"LessThanOrEqual\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"GreaterThan\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"GreaterThanOrEqual\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Between\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                }\n            ],\n            \"valueOptions\": []\n        },\n        {\n            \"parameter\": \"Location\",\n            \"type\": \"String\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"Is\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Contains\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"StartsWith\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"EndsWith\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                }\n            ],\n            \"valueOptions\": []\n        },\n        {\n            \"parameter\": \"City\",\n            \"type\": \"String\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"Is\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Contains\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"StartsWith\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"EndsWith\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                }\n            ],\n            \"valueOptions\": []\n        },\n        {\n            \"parameter\": \"State\",\n            \"type\": \"String\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"Is\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"IsNot\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"IsKnown\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": false\n                },\n                {\n                    \"operator\": \"IsNotKnown\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": false\n                },\n                {\n                    \"operator\": \"In\",\n                    \"multipleValuesAllowed\": true,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"NotIn\",\n                    \"multipleValuesAllowed\": true,\n                    \"valueRequired\": true\n                }\n            ],\n            \"valueOptions\": []\n        },\n        {\n            \"parameter\": \"Anywhere\",\n            \"type\": \"Boolean\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"IsTrue\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": false\n                },\n                {\n                    \"operator\": \"IsFalse\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": false\n                }\n            ],\n            \"valueOptions\": []\n        }\n    ],\n    \"operatorOptions\": [\n        {\n            \"operator\": \"Is\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"IsNot\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"IsKnown\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": false\n        },\n        {\n            \"operator\": \"IsNotKnown\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": false\n        },\n        {\n            \"operator\": \"LessThan\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"LessThanOrEqual\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"GreaterThan\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"GreaterThanOrEqual\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"Contains\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"StartsWith\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"EndsWith\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"IsTrue\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": false\n        },\n        {\n            \"operator\": \"IsFalse\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": false\n        },\n        {\n            \"operator\": \"IsSet\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": false\n        },\n        {\n            \"operator\": \"IsNotSet\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": false\n        },\n        {\n            \"operator\": \"In\",\n            \"multipleValuesAllowed\": true,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"NotIn\",\n            \"multipleValuesAllowed\": true,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"Between\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"Before\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"After\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"IsAnyOf\",\n            \"multipleValuesAllowed\": true,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"IsNoneOf\",\n            \"multipleValuesAllowed\": true,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"Matches\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"OnOrBefore\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"OnOrAfter\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        }\n    ]\n}"}],"_postman_id":"98130d97-7f0b-4e6d-8d4e-3d514517971d"},{"name":"Queries Volunteer Opportunities","id":"36021e2a-a418-4031-b5ab-2d586e244e91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"groups\": [\r\n    {\r\n      \"conditions\": [\r\n        {\r\n          \"parameter\": \"string\",\r\n          \"operator\": \"string\",\r\n          \"value\": \"string\",\r\n          \"secondaryValue\": \"string\",\r\n          \"values\": [\r\n            \"string\"\r\n          ]\r\n        }\r\n      ]\r\n    }\r\n  ],\r\n  \"sortBy\": \"string\",\r\n  \"descending\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/Query","description":"<p>Available starting 3/29/2022</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","VolunteerOpportunity","Query"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"ef190833-51de-49f3-b78d-d8cf66aacc42","name":"Ok","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"groups\": [\r\n    {\r\n      \"conditions\": [\r\n        {\r\n          \"parameter\": \"string\",\r\n          \"operator\": \"Is\",\r\n          \"value\": \"string\",\r\n          \"secondaryValue\": \"string\",\r\n          \"values\": [\r\n            \"string\"\r\n          ]\r\n        }\r\n      ]\r\n    }\r\n  ],\r\n  \"sortBy\": \"string\",\r\n  \"descending\": true\r\n}"},"url":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/Query"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"list\": [\n        {\n            \"id\": 1,\n            \"name\": \"Sunday Soup Kitchen\",\n            \"url\": \"https://soupkitchen.org/sunday\",\n            \"description\": \"Come on out to our soup kitchen and pitch in!\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n            \"anytime\": false,\n            \"startDateTime\": \"3/27/2022 12:00 PM\",\n            \"endDateTime\": \"3/27/2022 6:00 PM\",\n            \"timeZone\": \"US/Arizona\",\n            \"isActive\": true,\n            \"isLocalOnly\": true,\n            \"currentPriority\": \"Medium\",\n            \"currentNeed\": 20,\n            \"preferredNumberOfHours\": 20,\n            \"anywhere\": false,\n            \"locationName\": \"Downtown Soup Kitchen\",\n            \"address1\": \"123 Nowhere Ave\",\n            \"address2\": \"Suite 200\",\n            \"city\": \"Phoenix\",\n            \"state\": \"AZ\",\n            \"postal\": \"85004\",\n            \"country\": \"US\",\n            \"totalVolunteers\": 0,\n            \"totalVolunteerHours\": 0,\n            \"currentNeedFilledPercentage\": 0,\n            \"hoursFilledPercentage\": 0,\n            \"volunteerOrganizers\": [\n                {\n                    \"id\": 1,\n                    \"contactId\": 122,\n                    \"contactIndividualId\": 134,\n                    \"displayName\": \"Bob Loblaw\",\n                    \"firstName\": \"Bob\",\n                    \"avatarUrl\": null,\n                    \"primaryPhone\": \"555-555-5555\",\n                    \"primaryEmail\": \"bob@loblaw.org\",\n                    \"contactUrl\": \"https://api.virtuoussoftware.com/api/Contact/122\",\n                    \"volunteerOrganizerUrl\": \"https://api.virtuoussoftware.com/api/VolunteerOpportunity/1/Organizers/1\",\n                    \"volunteerOpportunityUrl\": \"https://api.virtuoussoftware.com/api/VolunteerOpportunity/1\"\n                }\n            ],\n            \"volunteerOpportunityUrl\": \"https://api.virtuoussoftware.com/api/VolunteerOpportunity/1\",\n            \"volunteerOrganizersUrl\": \"https://api.virtuoussoftware.com/api/VolunteerOpportunity/1/Organizers/1\",\n            \"volunteersUrl\": \"https://api.virtuoussoftware.com/api/VolunteerOpportunity/1/Volunteers\",\n            \"customFields\": [\n                {\n                    \"name\": \"Meal Options\",\n                    \"value\": \"Soup and Salad for Lunch, Pizza for Dinner\",\n                    \"displayName\": \"What meal options will be available?\"\n                }\n            ]\n        }\n    ],\n    \"total\": 1\n}"}],"_postman_id":"36021e2a-a418-4031-b5ab-2d586e244e91"}],"id":"c9bb13ee-4609-4780-a6ea-eda21dbaa332","_postman_id":"c9bb13ee-4609-4780-a6ea-eda21dbaa332","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Volunteer","item":[{"name":"Get Volunteers for a Volunteer Opportunity","id":"14d81ccf-3a19-4c45-a81f-823f342da2c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Volunteers?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Volunteers"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip.  Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take.  Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) The volunteer opportunity identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"volunteerOpportunityId"}]}},"response":[{"id":"070eea06-14c0-4581-bb61-ada9fae1317d","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Volunteers?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Volunteers"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}],"variable":[{"key":"volunteerOpportunityId","value":"<integer>","description":"(Required) The volunteer opportunity identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"volunteerUrl\": \"<string>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\"primaryPhone\": \"<string>\",\n\t\t\t\"primaryEmail\": \"<string>\",\n\t\t\t\"totalHours\": \"<double>\",\n\t\t\t\"timesVolunteered\": \"<integer>\",\n\t\t\t\"volunteerAttendanceUrl\": \"<string>\",\n\t\t\t\"volunteerOpportunityId\": \"<integer>\",\n\t\t\t\"volunteerOpportunityUrl\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"volunteerUrl\": \"<string>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactUrl\": \"<string>\",\n\t\t\t\"displayName\": \"<string>\",\n\t\t\t\"firstName\": \"<string>\",\n\t\t\t\"avatarUrl\": \"<string>\",\n\t\t\t\"primaryPhone\": \"<string>\",\n\t\t\t\"primaryEmail\": \"<string>\",\n\t\t\t\"totalHours\": \"<double>\",\n\t\t\t\"timesVolunteered\": \"<integer>\",\n\t\t\t\"volunteerAttendanceUrl\": \"<string>\",\n\t\t\t\"volunteerOpportunityId\": \"<integer>\",\n\t\t\t\"volunteerOpportunityUrl\": \"<string>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"14d81ccf-3a19-4c45-a81f-823f342da2c3"},{"name":"Get Volunteer","id":"5f1edce3-3c0a-4dea-8226-d991dd4d98cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Volunteers/:volunteerId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Volunteers",":volunteerId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The volunteer identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"volunteerId"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"volunteerOpportunityId"}]}},"response":[{"id":"a502ed38-e01a-42dd-9fa0-d50a9ae15c84","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Volunteers/:volunteerId","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Volunteers",":volunteerId"],"variable":[{"key":"volunteerOpportunityId","value":"<string>","description":"(Required) "},{"key":"volunteerId","value":"<integer>","description":"(Required) The volunteer identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"volunteerUrl\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactUrl\": \"<string>\",\n\t\"displayName\": \"<string>\",\n\t\"firstName\": \"<string>\",\n\t\"avatarUrl\": \"<string>\",\n\t\"primaryPhone\": \"<string>\",\n\t\"primaryEmail\": \"<string>\",\n\t\"totalHours\": \"<double>\",\n\t\"timesVolunteered\": \"<integer>\",\n\t\"volunteerAttendanceUrl\": \"<string>\",\n\t\"volunteerOpportunityId\": \"<integer>\",\n\t\"volunteerOpportunityUrl\": \"<string>\"\n}"},{"id":"e720ce87-f120-4ed7-8a72-bf0d1d57f8ad","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Volunteers/:volunteerId","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Volunteers",":volunteerId"],"variable":[{"key":"volunteerId","value":"<integer>","description":"(Required) The volunteer identifier."},{"key":"volunteerOpportunityId","value":"<string>","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"5f1edce3-3c0a-4dea-8226-d991dd4d98cc"},{"name":"Search for Volunteers","id":"4994c81a-52ee-4e0e-8e0b-5cc775d03457","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Volunteer/Search?volunteerOpportunityId=<integer>&volunteerId=<integer>&contactId=<integer>&contactIndividualId=<integer>&emailAddress=<string>&skip=<integer>&take=<integer>","description":"<p>Available starting 3/29/2022</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Volunteer","Search"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The volunteer opportunity identifier.</p>\n","type":"text/plain"},"key":"volunteerOpportunityId","value":"<integer>"},{"description":{"content":"<p>The volunteer identifier.</p>\n","type":"text/plain"},"key":"volunteerId","value":"<integer>"},{"description":{"content":"<p>The contact identifier.</p>\n","type":"text/plain"},"key":"contactId","value":"<integer>"},{"description":{"content":"<p>The contact individual identifier.</p>\n","type":"text/plain"},"key":"contactIndividualId","value":"<integer>"},{"description":{"content":"<p>The email address of the volunteer.</p>\n","type":"text/plain"},"key":"emailAddress","value":"<string>"},{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"914b945e-168b-41c5-8921-0abccb6eb5bc","name":"Ok","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Volunteer/Search?volunteerOpportunityId=<integer>&volunteerId=<integer>&contactId=<integer>&contactIndividualId=<integer>&emailAddress=<string>&skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Volunteer","Search"],"query":[{"key":"volunteerOpportunityId","value":"<integer>","description":"The volunteer opportunity identifier."},{"key":"volunteerId","value":"<integer>","description":"The volunteer identifier."},{"key":"contactId","value":"<integer>","description":"The contact identifier."},{"key":"contactIndividualId","value":"<integer>","description":"The contact individual identifier."},{"key":"emailAddress","value":"<string>","description":"The email address."},{"key":"skip","value":"<integer>","description":"The number of records to skip. Default = 0."},{"key":"take","value":"<integer>","description":"The number of records to skip. Default = 0."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"list\": [\n        {\n            \"id\": 0,\n            \"volunteerUrl\": \"string\",\n            \"createDateTimeUtc\": \"dateTime\",\n            \"createdByUser\": \"string\",\n            \"modifiedDateTimeUtc\": \"dateTime\",\n            \"modifiedByUser\": \"string\",\n            \"contactId\": 0,\n            \"contactIndividualId\": 0,\n            \"contactUrl\": \"string\",\n            \"displayName\": \"string\",\n            \"firstName\": \"string\",\n            \"avatarUrl\": \"string\",\n            \"primaryPhone\": \"string\",\n            \"primaryEmail\": \"string\",\n            \"totalHours\": 0,\n            \"timesVolunteered\": 0,\n            \"volunteerAttendanceUrl\": \"string\",\n            \"volunteerOpportunityId\": 0,\n            \"volunteerOpportunityUrl\": \"string\"\n        }\n    ],\n    \"total\": 0\n}"}],"_postman_id":"4994c81a-52ee-4e0e-8e0b-5cc775d03457"},{"name":"Create a Volunteer","id":"c9f8ddf8-0117-4945-a744-1b498e772a3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"contactIndividualId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Volunteers","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Volunteers"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The volunteer opportunity identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"volunteerOpportunityId"}]}},"response":[{"id":"0175f552-36bc-4032-9041-6dfa52021d23","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactIndividualId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Volunteers","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Volunteers"],"variable":[{"key":"volunteerOpportunityId","value":"<integer>","description":"(Required) The volunteer opportunity identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"volunteerUrl\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactUrl\": \"<string>\",\n\t\"displayName\": \"<string>\",\n\t\"firstName\": \"<string>\",\n\t\"avatarUrl\": \"<string>\",\n\t\"primaryPhone\": \"<string>\",\n\t\"primaryEmail\": \"<string>\",\n\t\"totalHours\": \"<double>\",\n\t\"timesVolunteered\": \"<integer>\",\n\t\"volunteerAttendanceUrl\": \"<string>\",\n\t\"volunteerOpportunityId\": \"<integer>\",\n\t\"volunteerOpportunityUrl\": \"<string>\"\n}"},{"id":"f348e555-91bd-449a-9f51-d686f93c5ebe","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactIndividualId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Volunteers","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Volunteers"],"variable":[{"key":"volunteerOpportunityId","value":"<integer>","description":"(Required) The volunteer opportunity identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c9f8ddf8-0117-4945-a744-1b498e772a3d"},{"name":"Delete a Volunteer","id":"35000635-0259-4d8f-95cd-f9d0dc41a97b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Volunteers/:volunteerId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Volunteers",":volunteerId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The volunteer identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"volunteerId"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"volunteerOpportunityId"}]}},"response":[{"id":"bd549ad9-9b14-4b80-8698-d9e41afeee87","name":"OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Volunteers/:volunteerId","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Volunteers",":volunteerId"],"variable":[{"key":"volunteerId","value":"<integer>","description":"(Required) The volunteer identifier."},{"key":"volunteerOpportunityId","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"99467881-503f-4dc0-bb49-eb1fa076a08b","name":"BadRequest","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Volunteers/:volunteerId","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Volunteers",":volunteerId"],"variable":[{"key":"volunteerId","value":"<integer>","description":"(Required) The volunteer identifier."},{"key":"volunteerOpportunityId","value":"<string>","description":"(Required) "}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"35000635-0259-4d8f-95cd-f9d0dc41a97b"},{"name":"Get Query Options","id":"87f1dc67-141e-4ca3-8732-cac59e93a432","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Volunteer/QueryOptions","description":"<p>Available starting 3/29/2022</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Volunteer","QueryOptions"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"b1095247-4d49-40db-a0b9-3f33dd2f8352","name":"Ok","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Volunteer/QueryOptions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"1335","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Date","value":"Wed, 23 Mar 2022 23:07:45 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/10.0","enabled":true},{"key":"Access-Control-Expose-Headers","value":"Request-Context","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Vary","value":"Accept-Encoding","enabled":true},{"key":"X-RateLimit-Limit","value":"1500","enabled":true},{"key":"X-RateLimit-Remaining","value":"1499","enabled":true},{"key":"X-RateLimit-Reset","value":"1648080453","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"Request-Context","value":"appId=cid-v1:d5256cef-83ae-4057-8380-1ed09cd521cb","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"options\": [\n        {\n            \"parameter\": \"Volunteer Opportunity Id\",\n            \"type\": \"Int\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"Is\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"LessThan\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"LessThanOrEqual\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"GreaterThan\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"GreaterThanOrEqual\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Between\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                }\n            ],\n            \"valueOptions\": []\n        },\n        {\n            \"parameter\": \"Volunteer Opportunity Name\",\n            \"type\": \"String\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"Is\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Contains\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"StartsWith\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"EndsWith\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                }\n            ],\n            \"valueOptions\": []\n        },\n        {\n            \"parameter\": \"Volunteer Opportunity Description\",\n            \"type\": \"String\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"Is\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Contains\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"StartsWith\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"EndsWith\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                }\n            ],\n            \"valueOptions\": []\n        },\n        {\n            \"parameter\": \"Volunteer Opportunity Start Date\",\n            \"type\": \"Date\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"Is\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"IsKnown\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": false\n                },\n                {\n                    \"operator\": \"IsNotKnown\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": false\n                },\n                {\n                    \"operator\": \"LessThan\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"LessThanOrEqual\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Before\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"OnOrBefore\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"GreaterThan\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"GreaterThanOrEqual\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"After\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"OnOrAfter\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Between\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                }\n            ],\n            \"valueOptions\": [\n                \"180 Days Ago\",\n                \"270 Days Ago\",\n                \"30 Days Ago\",\n                \"60 Days Ago\",\n                \"90 Days Ago\",\n                \"Last Sunday\",\n                \"One week from now\",\n                \"One Year Ago\",\n                \"Start Of This Month\",\n                \"This Calendar Year\",\n                \"Today\",\n                \"Tomorrow\",\n                \"Two Years Ago\",\n                \"Yesterday\"\n            ]\n        },\n        {\n            \"parameter\": \"Volunteer Opportunity End Date\",\n            \"type\": \"Date\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"Is\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"IsKnown\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": false\n                },\n                {\n                    \"operator\": \"IsNotKnown\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": false\n                },\n                {\n                    \"operator\": \"LessThan\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"LessThanOrEqual\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Before\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"OnOrBefore\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"GreaterThan\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"GreaterThanOrEqual\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"After\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"OnOrAfter\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Between\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                }\n            ],\n            \"valueOptions\": [\n                \"180 Days Ago\",\n                \"270 Days Ago\",\n                \"30 Days Ago\",\n                \"60 Days Ago\",\n                \"90 Days Ago\",\n                \"Last Sunday\",\n                \"One week from now\",\n                \"One Year Ago\",\n                \"Start Of This Month\",\n                \"This Calendar Year\",\n                \"Today\",\n                \"Tomorrow\",\n                \"Two Years Ago\",\n                \"Yesterday\"\n            ]\n        },\n        {\n            \"parameter\": \"Volunteer Opportunity Location\",\n            \"type\": \"String\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"Is\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Contains\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"StartsWith\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"EndsWith\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                }\n            ],\n            \"valueOptions\": []\n        },\n        {\n            \"parameter\": \"Volunteer Opportunity City\",\n            \"type\": \"String\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"Is\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Contains\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"StartsWith\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"EndsWith\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                }\n            ],\n            \"valueOptions\": []\n        },\n        {\n            \"parameter\": \"Volunteer Opportunity State\",\n            \"type\": \"String\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"Is\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"IsNot\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"IsKnown\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": false\n                },\n                {\n                    \"operator\": \"IsNotKnown\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": false\n                },\n                {\n                    \"operator\": \"In\",\n                    \"multipleValuesAllowed\": true,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"NotIn\",\n                    \"multipleValuesAllowed\": true,\n                    \"valueRequired\": true\n                }\n            ],\n            \"valueOptions\": []\n        },\n        {\n            \"parameter\": \"Title\",\n            \"type\": \"String\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"Is\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Contains\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"StartsWith\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"EndsWith\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                }\n            ],\n            \"valueOptions\": []\n        },\n        {\n            \"parameter\": \"First Name\",\n            \"type\": \"String\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"Is\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Contains\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"StartsWith\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"EndsWith\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                }\n            ],\n            \"valueOptions\": []\n        },\n        {\n            \"parameter\": \"Last Name\",\n            \"type\": \"String\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"Is\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Contains\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"StartsWith\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"EndsWith\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                }\n            ],\n            \"valueOptions\": []\n        },\n        {\n            \"parameter\": \"Middle Name\",\n            \"type\": \"String\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"Is\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Contains\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"StartsWith\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"EndsWith\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                }\n            ],\n            \"valueOptions\": []\n        },\n        {\n            \"parameter\": \"Suffix\",\n            \"type\": \"String\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"Is\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Contains\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"StartsWith\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"EndsWith\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                }\n            ],\n            \"valueOptions\": []\n        },\n        {\n            \"parameter\": \"Gender\",\n            \"type\": \"Lookup\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"Is\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"IsKnown\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": false\n                },\n                {\n                    \"operator\": \"IsNotKnown\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": false\n                },\n                {\n                    \"operator\": \"Contains\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"StartsWith\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"EndsWith\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                }\n            ],\n            \"valueOptions\": []\n        },\n        {\n            \"parameter\": \"Total Hours\",\n            \"type\": \"Decimal\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"Is\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"LessThan\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"LessThanOrEqual\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"GreaterThan\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"GreaterThanOrEqual\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Between\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                }\n            ],\n            \"valueOptions\": []\n        },\n        {\n            \"parameter\": \"Times Volunteered\",\n            \"type\": \"Int\",\n            \"operatorOptions\": [\n                {\n                    \"operator\": \"Is\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"LessThan\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"LessThanOrEqual\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"GreaterThan\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"GreaterThanOrEqual\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                },\n                {\n                    \"operator\": \"Between\",\n                    \"multipleValuesAllowed\": false,\n                    \"valueRequired\": true\n                }\n            ],\n            \"valueOptions\": []\n        }\n    ],\n    \"operatorOptions\": [\n        {\n            \"operator\": \"Is\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"IsNot\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"IsKnown\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": false\n        },\n        {\n            \"operator\": \"IsNotKnown\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": false\n        },\n        {\n            \"operator\": \"LessThan\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"LessThanOrEqual\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"GreaterThan\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"GreaterThanOrEqual\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"Contains\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"StartsWith\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"EndsWith\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"IsTrue\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": false\n        },\n        {\n            \"operator\": \"IsFalse\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": false\n        },\n        {\n            \"operator\": \"IsSet\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": false\n        },\n        {\n            \"operator\": \"IsNotSet\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": false\n        },\n        {\n            \"operator\": \"In\",\n            \"multipleValuesAllowed\": true,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"NotIn\",\n            \"multipleValuesAllowed\": true,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"Between\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"Before\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"After\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"IsAnyOf\",\n            \"multipleValuesAllowed\": true,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"IsNoneOf\",\n            \"multipleValuesAllowed\": true,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"Matches\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"OnOrBefore\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        },\n        {\n            \"operator\": \"OnOrAfter\",\n            \"multipleValuesAllowed\": false,\n            \"valueRequired\": true\n        }\n    ]\n}"}],"_postman_id":"87f1dc67-141e-4ca3-8732-cac59e93a432"},{"name":"Query Volunteers","id":"2a14fe35-5055-4cb7-9024-f88d39be994f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.virtuoussoftware.com/api/Volunteer/Query","description":"<p>Available starting 3/29/2022</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Volunteer","Query"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"c8bfc260-07ee-494c-91f4-e8813c6c952d","name":"Ok","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"groups\": [\r\n    {\r\n      \"conditions\": [\r\n        {\r\n          \"parameter\": \"string\",\r\n          \"operator\": \"Is\",\r\n          \"value\": \"string\",\r\n          \"secondaryValue\": \"string\",\r\n          \"values\": [\r\n            \"string\"\r\n          ]\r\n        }\r\n      ]\r\n    }\r\n  ],\r\n  \"sortBy\": \"string\",\r\n  \"descending\": true\r\n}"},"url":"https://api.virtuoussoftware.com/api/Volunteer/Query"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"list\": [\n        {\n            \"id\": 0,\n            \"volunteerUrl\": \"string\",\n            \"createDateTimeUtc\": \"dateTime\",\n            \"createdByUser\": \"string\",\n            \"modifiedDateTimeUtc\": \"dateTime\",\n            \"modifiedByUser\": \"string\",\n            \"contactId\": 0,\n            \"contactIndividualId\": 0,\n            \"contactUrl\": \"string\",\n            \"displayName\": \"string\",\n            \"firstName\": \"string\",\n            \"avatarUrl\": \"string\",\n            \"primaryPhone\": \"string\",\n            \"primaryEmail\": \"string\",\n            \"totalHours\": 0,\n            \"timesVolunteered\": 0,\n            \"volunteerAttendanceUrl\": \"string\",\n            \"volunteerOpportunityId\": 0,\n            \"volunteerOpportunityUrl\": \"string\"\n        }\n    ],\n    \"total\": 0\n}"}],"_postman_id":"2a14fe35-5055-4cb7-9024-f88d39be994f"}],"id":"505e00ec-c0b5-49dd-8809-b6351dcd2461","_postman_id":"505e00ec-c0b5-49dd-8809-b6351dcd2461","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Volunteer Attendance","item":[{"name":"Get Volunteer Attendance for a Volunteer","id":"d2f76728-173a-428e-be07-cf388d9f7a21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Volunteers/:volunteerId/Attendance","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Volunteers",":volunteerId","Attendance"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The volunteer identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"volunteerId"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"volunteerOpportunityId"}]}},"response":[{"id":"21e9ffc8-a5a9-4d3d-b3e6-00f5db832f19","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Volunteers/:volunteerId/Attendance","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Volunteers",":volunteerId","Attendance"],"variable":[{"key":"volunteerOpportunityId","value":"<string>","description":"(Required) "},{"key":"volunteerId","value":"<integer>","description":"(Required) The volunteer identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"id\": \"<integer>\",\n\t\t\"volunteerAttendanceUrl\": \"<string>\",\n\t\t\"volunteerId\": \"<integer>\",\n\t\t\"volunteerUrl\": \"<string>\",\n\t\t\"volunteerOpportunityId\": \"<integer>\",\n\t\t\"volunteerOpportunityUrl\": \"<string>\",\n\t\t\"hours\": \"<double>\",\n\t\t\"startDateTimeUtc\": \"<dateTime>\",\n\t\t\"startDateTime\": \"<dateTime>\",\n\t\t\"endDateTimeUtc\": \"<dateTime>\",\n\t\t\"endDateTime\": \"<dateTime>\",\n\t\t\"timeZone\": \"<string>\",\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t},\n\t{\n\t\t\"id\": \"<integer>\",\n\t\t\"volunteerAttendanceUrl\": \"<string>\",\n\t\t\"volunteerId\": \"<integer>\",\n\t\t\"volunteerUrl\": \"<string>\",\n\t\t\"volunteerOpportunityId\": \"<integer>\",\n\t\t\"volunteerOpportunityUrl\": \"<string>\",\n\t\t\"hours\": \"<double>\",\n\t\t\"startDateTimeUtc\": \"<dateTime>\",\n\t\t\"startDateTime\": \"<dateTime>\",\n\t\t\"endDateTimeUtc\": \"<dateTime>\",\n\t\t\"endDateTime\": \"<dateTime>\",\n\t\t\"timeZone\": \"<string>\",\n        \"createDateTimeUtc\": \"<dateTime>\",\n        \"createdByUser\": \"<string>\",\n        \"modifiedDateTimeUtc\": \"<dateTime>\",\n        \"modifiedByUser\": \"<string>\"\n\t}\n]"},{"id":"b1d24b44-0f21-47dd-bab9-1835f4b15248","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Volunteers/:volunteerId/Attendance","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Volunteers",":volunteerId","Attendance"],"variable":[{"key":"volunteerId","value":"<integer>","description":"(Required) The volunteer identifier."},{"key":"volunteerOpportunityId","value":"<string>","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d2f76728-173a-428e-be07-cf388d9f7a21"},{"name":"Get Volunteer Attendance","id":"780abb6d-712a-487d-a3a3-cb0d6100a2fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Attendance/:volunteerAttendanceId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Attendance",":volunteerAttendanceId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The volunteer attendance identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"volunteerAttendanceId"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"volunteerOpportunityId"}]}},"response":[{"id":"6b172ae0-b227-4780-a581-9c2332d43062","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Attendance/:volunteerAttendanceId","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Attendance",":volunteerAttendanceId"],"variable":[{"key":"volunteerOpportunityId","value":"<string>","description":"(Required) "},{"key":"volunteerAttendanceId","value":"<integer>","description":"(Required) The volunteer attendance identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"volunteerAttendanceUrl\": \"<string>\",\n\t\"volunteerId\": \"<integer>\",\n\t\"volunteerUrl\": \"<string>\",\n\t\"volunteerOpportunityId\": \"<integer>\",\n\t\"volunteerOpportunityUrl\": \"<string>\",\n\t\"hours\": \"<double>\",\n\t\"startDateTimeUtc\": \"<dateTime>\",\n\t\"startDateTime\": \"<dateTime>\",\n\t\"endDateTimeUtc\": \"<dateTime>\",\n\t\"endDateTime\": \"<dateTime>\",\n\t\"timeZone\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\"\n}"},{"id":"95ae7262-5d4c-4a44-b107-78e71f9f1987","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Attendance/:volunteerAttendanceId","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Attendance",":volunteerAttendanceId"],"variable":[{"key":"volunteerAttendanceId","value":"<integer>","description":"(Required) The volunteer attendance identifier."},{"key":"volunteerOpportunityId","value":"<string>","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"780abb6d-712a-487d-a3a3-cb0d6100a2fd"},{"name":"Create a Volunteer Attendance","id":"100df729-3cbc-49d1-8035-2c699f2fb89c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"timeZone\": \"<string>\",\n    \"hours\": \"<double>\",\n    \"startDateTimeUtc\": \"<dateTime>\",\n    \"endDateTimeUtc\": \"<dateTime>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Volunteers/:volunteerId/Attendance","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Volunteers",":volunteerId","Attendance"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The volunteer opportunity identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"volunteerOpportunityId"},{"description":{"content":"<p>(Required) The volunteer identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"volunteerId"}]}},"response":[{"id":"7ada420a-d003-4199-8605-c26250a3f49d","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"timeZone\": \"<string>\",\n    \"hours\": \"<double>\",\n    \"startDateTimeUtc\": \"<dateTime>\",\n    \"endDateTimeUtc\": \"<dateTime>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Volunteers/:volunteerId/Attendance","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Volunteers",":volunteerId","Attendance"],"variable":[{"key":"volunteerOpportunityId","value":"<integer>","description":"(Required) The volunteer opportunity identifier."},{"key":"volunteerId","value":"<integer>","description":"(Required) The volunteer identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"volunteerAttendanceUrl\": \"<string>\",\n\t\"volunteerId\": \"<integer>\",\n\t\"volunteerUrl\": \"<string>\",\n\t\"volunteerOpportunityId\": \"<integer>\",\n\t\"volunteerOpportunityUrl\": \"<string>\",\n\t\"hours\": \"<double>\",\n\t\"startDateTimeUtc\": \"<dateTime>\",\n\t\"startDateTime\": \"<dateTime>\",\n\t\"endDateTimeUtc\": \"<dateTime>\",\n\t\"endDateTime\": \"<dateTime>\",\n\t\"timeZone\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\"\n}"},{"id":"633df9dc-228a-40c8-89a4-911ca15612a6","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"timeZone\": \"<string>\",\n    \"hours\": \"<double>\",\n    \"startDateTimeUtc\": \"<dateTime>\",\n    \"endDateTimeUtc\": \"<dateTime>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Volunteers/:volunteerId/Attendance","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Volunteers",":volunteerId","Attendance"],"variable":[{"key":"volunteerOpportunityId","value":"<integer>","description":"(Required) The volunteer opportunity identifier."},{"key":"volunteerId","value":"<integer>","description":"(Required) The volunteer identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"100df729-3cbc-49d1-8035-2c699f2fb89c"},{"name":"Update a Volunteer Attendance","id":"2dce06e8-d03e-45e5-95fd-5e0c6b8ba032","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"timeZone\": \"<string>\",\n    \"hours\": \"<double>\",\n    \"startDateTimeUtc\": \"<dateTime>\",\n    \"endDateTimeUtc\": \"<dateTime>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Attendance/:volunteerAttendanceId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Attendance",":volunteerAttendanceId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The volunteer attendance identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"volunteerAttendanceId"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"volunteerOpportunityId"}]}},"response":[{"id":"ff86c104-9fb2-4fb1-ba51-0a0eed5062ff","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"timeZone\": \"<string>\",\n    \"hours\": \"<double>\",\n    \"startDateTimeUtc\": \"<dateTime>\",\n    \"endDateTimeUtc\": \"<dateTime>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Attendance/:volunteerAttendanceId","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Attendance",":volunteerAttendanceId"],"variable":[{"key":"volunteerOpportunityId","value":"<string>","description":"(Required) "},{"key":"volunteerAttendanceId","value":"<integer>","description":"(Required) The volunteer attendance identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"volunteerAttendanceUrl\": \"<string>\",\n\t\"volunteerId\": \"<integer>\",\n\t\"volunteerUrl\": \"<string>\",\n\t\"volunteerOpportunityId\": \"<integer>\",\n\t\"volunteerOpportunityUrl\": \"<string>\",\n\t\"hours\": \"<double>\",\n\t\"startDateTimeUtc\": \"<dateTime>\",\n\t\"startDateTime\": \"<dateTime>\",\n\t\"endDateTimeUtc\": \"<dateTime>\",\n\t\"endDateTime\": \"<dateTime>\",\n\t\"timeZone\": \"<string>\",\n    \"createDateTimeUtc\": \"<dateTime>\",\n    \"createdByUser\": \"<string>\",\n    \"modifiedDateTimeUtc\": \"<dateTime>\",\n    \"modifiedByUser\": \"<string>\"\n}"},{"id":"4b993ebf-6ebf-4333-bf92-b617b348f297","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"timeZone\": \"<string>\",\n    \"hours\": \"<double>\",\n    \"startDateTimeUtc\": \"<dateTime>\",\n    \"endDateTimeUtc\": \"<dateTime>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Attendance/:volunteerAttendanceId","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Attendance",":volunteerAttendanceId"],"variable":[{"key":"volunteerAttendanceId","value":"<integer>","description":"(Required) The volunteer attendance identifier."},{"key":"volunteerOpportunityId","value":"<string>","description":"(Required) "}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"c9465e07-c414-48f9-ae2c-2bc2e38c68e6","name":"NotFound","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"timeZone\": \"<string>\",\n    \"hours\": \"<double>\",\n    \"startDateTimeUtc\": \"<dateTime>\",\n    \"endDateTimeUtc\": \"<dateTime>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Attendance/:volunteerAttendanceId","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Attendance",":volunteerAttendanceId"],"variable":[{"key":"volunteerAttendanceId","value":"<integer>","description":"(Required) The volunteer attendance identifier."},{"key":"volunteerOpportunityId","value":"<string>","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"2dce06e8-d03e-45e5-95fd-5e0c6b8ba032"},{"name":"Delete a Volunteer Attendance","id":"65acbf88-1690-4702-9f32-0499c9f33c8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Attendance/:volunteerAttendanceId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Attendance",":volunteerAttendanceId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The volunteer attendance identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"volunteerAttendanceId"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"volunteerOpportunityId"}]}},"response":[{"id":"e41bc934-5072-456d-bb46-85faf9613a9d","name":"OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Attendance/:volunteerAttendanceId","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Attendance",":volunteerAttendanceId"],"variable":[{"key":"volunteerAttendanceId","value":"<integer>","description":"(Required) The volunteer attendance identifier."},{"key":"volunteerOpportunityId","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"b60b2d47-2299-44de-840a-b92b747ab976","name":"BadRequest","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Attendance/:volunteerAttendanceId","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Attendance",":volunteerAttendanceId"],"variable":[{"key":"volunteerAttendanceId","value":"<integer>","description":"(Required) The volunteer attendance identifier."},{"key":"volunteerOpportunityId","value":"<string>","description":"(Required) "}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"65acbf88-1690-4702-9f32-0499c9f33c8e"}],"id":"339e20e2-0035-46b7-a383-a568650b47cc","_postman_id":"339e20e2-0035-46b7-a383-a568650b47cc","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Volunteer Organizer","item":[{"name":"Get Volunteer Organizers","id":"1fe17c8d-bcf5-48d0-bbc0-9aa794a3fa9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Organizers","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Organizers"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The volunteer opportunity identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"volunteerOpportunityId"}]}},"response":[{"id":"d5fad9f2-470e-4f66-b6f3-481e45f71167","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Organizers","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Organizers"],"variable":[{"key":"volunteerOpportunityId","value":"<integer>","description":"(Required) The volunteer opportunity identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"1fe17c8d-bcf5-48d0-bbc0-9aa794a3fa9c"},{"name":"Get Volunteer Organizer","id":"6ce58c0b-280c-4d3a-a322-fa3697aa27ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Organizers/:volunteerOrganizerId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Organizers",":volunteerOrganizerId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The volunteer organizer identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"volunteerOrganizerId"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"volunteerOpportunityId"}]}},"response":[{"id":"976d5962-a753-4f74-a427-5a3dc46ef930","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Organizers/:volunteerOrganizerId","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Organizers",":volunteerOrganizerId"],"variable":[{"key":"volunteerOrganizerId","value":"<integer>","description":"(Required) The volunteer organizer identifier."},{"key":"volunteerOpportunityId","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"volunteerOrganizerUrl\": \"<string>\",\n\t\"contactId\": \"<integer>\",\n\t\"displayName\": \"<string>\",\n\t\"firstName\": \"<string>\",\n\t\"avatarUrl\": \"<string>\",\n\t\"primaryPhone\": \"<string>\",\n\t\"primaryEmail\": \"<string>\",\n\t\"contactUrl\": \"<string>\",\n\t\"volunteerOpportunityUrl\": \"<string>\"\n}"},{"id":"2d9260d7-bd18-4cde-a41b-585ef600bb2e","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Organizers/:volunteerOrganizerId","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Organizers",":volunteerOrganizerId"],"variable":[{"key":"volunteerOrganizerId","value":"<integer>","description":"(Required) The volunteer organizer identifier."},{"key":"volunteerOpportunityId","value":"<string>","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"6ce58c0b-280c-4d3a-a322-fa3697aa27ba"},{"name":"Create a Volunteer Organizer","id":"c3024e97-53e7-4077-a838-a9bcd38ab480","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"contactIndividualId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Organizers","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Organizers"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The volunteer opportunity identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"volunteerOpportunityId"}]}},"response":[{"id":"b33d2dcc-a1be-4ff2-9622-26f2d32a4709","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactIndividualId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Organizers","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Organizers"],"variable":[{"key":"volunteerOpportunityId","value":"<integer>","description":"(Required) The volunteer opportunity identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"volunteerOrganizerUrl\": \"<string>\",\n\t\"contactId\": \"<integer>\",\n\t\"displayName\": \"<string>\",\n\t\"firstName\": \"<string>\",\n\t\"avatarUrl\": \"<string>\",\n\t\"primaryPhone\": \"<string>\",\n\t\"primaryEmail\": \"<string>\",\n\t\"contactUrl\": \"<string>\",\n\t\"volunteerOpportunityUrl\": \"<string>\"\n}"},{"id":"bfbbebca-5cac-4637-9a59-ef5a248596f6","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"contactIndividualId\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Organizers","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Organizers"],"variable":[{"key":"volunteerOpportunityId","value":"<integer>","description":"(Required) The volunteer opportunity identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c3024e97-53e7-4077-a838-a9bcd38ab480"},{"name":"Delete a Volunteer Organizer","id":"b751a18f-26e9-4c9f-bf83-5c3fee8c2ac6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Organizers/:volunteerOrganizerId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Organizers",":volunteerOrganizerId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The volunteer organizer identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"volunteerOrganizerId"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"volunteerOpportunityId"}]}},"response":[{"id":"a0912583-bce0-4f92-81fe-c07750f5529a","name":"OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Organizers/:volunteerOrganizerId","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Organizers",":volunteerOrganizerId"],"variable":[{"key":"volunteerOrganizerId","value":"<integer>","description":"(Required) The volunteer organizer identifier."},{"key":"volunteerOpportunityId","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"5dc744da-ae3e-4f6d-88e6-49e2687a0a75","name":"BadRequest","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/VolunteerOpportunity/:volunteerOpportunityId/Organizers/:volunteerOrganizerId","host":["https://api.virtuoussoftware.com"],"path":["api","VolunteerOpportunity",":volunteerOpportunityId","Organizers",":volunteerOrganizerId"],"variable":[{"key":"volunteerOrganizerId","value":"<integer>","description":"(Required) The volunteer organizer identifier."},{"key":"volunteerOpportunityId","value":"<string>","description":"(Required) "}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"b751a18f-26e9-4c9f-bf83-5c3fee8c2ac6"}],"id":"11ff59fc-29cd-4521-84d4-adcc743e9edf","_postman_id":"11ff59fc-29cd-4521-84d4-adcc743e9edf","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}}],"id":"bfcb7369-9957-474d-b1dc-9eff7dbe0d67","_postman_id":"bfcb7369-9957-474d-b1dc-9eff7dbe0d67","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Emails","item":[{"name":"Email","item":[{"name":"Get Emails","id":"3ba9aeda-8fb4-4f30-8d4a-b4b78aa81ed8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"search\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Email/Search?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Email","Search"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"5460e082-f30f-4f62-99a1-6a1729841651","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Email/Search?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Email","Search"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"subject\": \"<string>\",\n\t\t\t\"fromName\": \"<string>\",\n\t\t\t\"fromEmail\": \"<string>\",\n\t\t\t\"html\": \"<string>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"subject\": \"<string>\",\n\t\t\t\"fromName\": \"<string>\",\n\t\t\t\"fromEmail\": \"<string>\",\n\t\t\t\"html\": \"<string>\",\n            \"createDateTimeUtc\": \"<dateTime>\",\n            \"createdByUser\": \"<string>\",\n            \"modifiedDateTimeUtc\": \"<dateTime>\",\n            \"modifiedByUser\": \"<string>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"3ba9aeda-8fb4-4f30-8d4a-b4b78aa81ed8"},{"name":"Send an Email to a list of Contacts","id":"b1cf0016-8800-49b4-aba5-317ea47aa93d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"emailId\": \"<integer>\",\n    \"contactIds\": [\n        \"<integer>\",\n        \"<integer>\"\n    ],\n    \"personalizations\": [\n        {\n            \"contactId\": \"<integer>\",\n            \"mergeFields\": \"<object>\"\n        },\n        {\n            \"contactId\": \"<integer>\",\n            \"mergeFields\": \"<object>\"\n        }\n    ],\n    \"sections\": \"<object>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Email/Send","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Email","Send"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"1040ab44-cd7f-4dcd-97d8-718a9f77b6a5","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"emailId\": \"<integer>\",\n    \"contactIds\": [\n        \"<integer>\",\n        \"<integer>\"\n    ],\n    \"personalizations\": [\n        {\n            \"contactId\": \"<integer>\",\n            \"mergeFields\": \"<object>\"\n        },\n        {\n            \"contactId\": \"<integer>\",\n            \"mergeFields\": \"<object>\"\n        }\n    ],\n    \"sections\": \"<object>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Email/Send"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"\"<object>\""}],"_postman_id":"b1cf0016-8800-49b4-aba5-317ea47aa93d"}],"id":"907050c7-bf62-47d0-ae9d-dbefe4312f70","_postman_id":"907050c7-bf62-47d0-ae9d-dbefe4312f70","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Email List","item":[{"name":"Search for an Email List","id":"f750634b-e2be-4d49-a472-3e92f51fc382","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"search\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/EmailList/Search?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","EmailList","Search"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"1bdae521-c386-46e5-912a-535e19bb622c","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"search\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/EmailList/Search?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","EmailList","Search"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"emailListId\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"total\": \"<integer>\",\n\t\t\t\"totalUnsubscribes\": \"<integer>\"\n\t\t},\n\t\t{\n\t\t\t\"emailListId\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"total\": \"<integer>\",\n\t\t\t\"totalUnsubscribes\": \"<integer>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"f750634b-e2be-4d49-a472-3e92f51fc382"},{"name":"Add Individuals to an Email List","id":"afe46206-15b4-4f20-914e-1cae07d83246","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"emailListIds\": [\n        \"<integer>\",\n        \"<integer>\"\n    ],\n    \"contactIndividualIds\": [\n        \"<integer>\",\n        \"<integer>\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/EmailList","description":"<p>This endpoint places a message on a queue and will return an Accepted response. \nThe message will then be picked up by the queue and process adding individuals to a list.\nNote that this could take up to 4 hours to be completed. Do not use this endpoint to add a single individual to a list, wait and do them in bulk instead. \nDoing a single individual at a time will block up the organizations queue and will increase processing time.\nTo retrieve individual id's, use the api/ContactIndividual/Query.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","EmailList"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"dbcc711e-ae16-494c-987e-ba99dfa91193","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"emailListIds\": [\n        \"<integer>\",\n        \"<integer>\"\n    ],\n    \"contactIndividualIds\": [\n        \"<integer>\",\n        \"<integer>\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/EmailList"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"\"<object>\""},{"id":"4208a13e-92ae-4c01-a367-36ac1b67e31f","name":"Accepted","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"emailListIds\": [\n        \"<integer>\",\n        \"<integer>\"\n    ],\n    \"contactIndividualIds\": [\n        \"<integer>\",\n        \"<integer>\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/EmailList"},"status":"Accepted","code":202,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"afe46206-15b4-4f20-914e-1cae07d83246"}],"id":"0fa0320f-0734-4f66-a8c0-1f4514687d33","_postman_id":"0fa0320f-0734-4f66-a8c0-1f4514687d33","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}}],"id":"01164245-80c1-42e5-9c79-df41ba228f8e","_postman_id":"01164245-80c1-42e5-9c79-df41ba228f8e","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Reminders (Deprecated)","item":[{"name":"Get Active Reminders (for current user)","id":"94a0908c-5b54-4e5c-a846-f55458d348b5","request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Reminder/Active?skip=<integer>&take=<integer>&search.search=<string>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Reminder","Active"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of active reminders to skip.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of active reminders to take.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"},{"description":{"content":"<p>The search criteria.</p>\n","type":"text/plain"},"key":"search.search","value":"<string>"}],"variable":[]}},"response":[{"id":"4d481c81-220d-4534-95c2-bb5407da3b3d","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Reminder/Active?skip=<integer>&take=<integer>&search.search=<string>","host":["https://api.virtuoussoftware.com"],"path":["api","Reminder","Active"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"},{"key":"search.search","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"message\": \"<string>\",\n\t\t\t\"targetDate\": \"<string>\",\n\t\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactViewUrl\": \"<string>\",\n\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\t\"reminderType\": \"<string>\",\n\t\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\t\"taskStatus\": \"<string>\",\n\t\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\t\"completeUrl\": \"<string>\",\n\t\t\t\"dismissUrl\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"hasContact\": \"<boolean>\",\n\t\t\t\"isPastDue\": \"<boolean>\",\n\t\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\t\"canComplete\": \"<boolean>\",\n\t\t\t\"completeActionName\": \"<string>\",\n\t\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\t\"owner\": \"<string>\",\n\t\t\t\"ownerAvatarUrl\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"message\": \"<string>\",\n\t\t\t\"targetDate\": \"<string>\",\n\t\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactViewUrl\": \"<string>\",\n\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\t\"reminderType\": \"<string>\",\n\t\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\t\"taskStatus\": \"<string>\",\n\t\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\t\"completeUrl\": \"<string>\",\n\t\t\t\"dismissUrl\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"hasContact\": \"<boolean>\",\n\t\t\t\"isPastDue\": \"<boolean>\",\n\t\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\t\"canComplete\": \"<boolean>\",\n\t\t\t\"completeActionName\": \"<string>\",\n\t\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\t\"owner\": \"<string>\",\n\t\t\t\"ownerAvatarUrl\": \"<string>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"94a0908c-5b54-4e5c-a846-f55458d348b5"},{"name":"Get Saved Reminders (for current user)","id":"4a3eaf81-cc94-41ca-a57b-510e7014dfa6","request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Reminder/Saved?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Reminder","Saved"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"9d234aed-4524-4acd-89a7-3c18ea0c76c2","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Reminder/Saved?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Reminder","Saved"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"reminderSourceType\": \"<string>\",\n\t\t\t\"reminderSourceTypeDisplayName\": \"<string>\",\n\t\t\t\"reminders\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"message\": \"<string>\",\n\t\t\t\t\t\"targetDate\": \"<string>\",\n\t\t\t\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\"contactViewUrl\": \"<string>\",\n\t\t\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\t\t\t\"reminderType\": \"<string>\",\n\t\t\t\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\t\t\t\"taskStatus\": \"<string>\",\n\t\t\t\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\t\t\t\"completeUrl\": \"<string>\",\n\t\t\t\t\t\"dismissUrl\": \"<string>\",\n\t\t\t\t\t\"description\": \"<string>\",\n\t\t\t\t\t\"hasContact\": \"<boolean>\",\n\t\t\t\t\t\"isPastDue\": \"<boolean>\",\n\t\t\t\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\t\t\t\"canComplete\": \"<boolean>\",\n\t\t\t\t\t\"completeActionName\": \"<string>\",\n\t\t\t\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\t\t\t\"owner\": \"<string>\",\n\t\t\t\t\t\"ownerAvatarUrl\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"message\": \"<string>\",\n\t\t\t\t\t\"targetDate\": \"<string>\",\n\t\t\t\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\"contactViewUrl\": \"<string>\",\n\t\t\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\t\t\t\"reminderType\": \"<string>\",\n\t\t\t\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\t\t\t\"taskStatus\": \"<string>\",\n\t\t\t\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\t\t\t\"completeUrl\": \"<string>\",\n\t\t\t\t\t\"dismissUrl\": \"<string>\",\n\t\t\t\t\t\"description\": \"<string>\",\n\t\t\t\t\t\"hasContact\": \"<boolean>\",\n\t\t\t\t\t\"isPastDue\": \"<boolean>\",\n\t\t\t\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\t\t\t\"canComplete\": \"<boolean>\",\n\t\t\t\t\t\"completeActionName\": \"<string>\",\n\t\t\t\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\t\t\t\"owner\": \"<string>\",\n\t\t\t\t\t\"ownerAvatarUrl\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"message\": \"<string>\",\n\t\t\t\"dueDate\": \"<dateTime>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\"reminderFrequency\": \"<string>\",\n\t\t\t\"reminderFrequencyDisplayName\": \"<string>\",\n\t\t\t\"milestoneType\": \"<string>\",\n\t\t\t\"milestoneTypeDisplayName\": \"<string>\",\n\t\t\t\"threshold\": \"<integer>\",\n\t\t\t\"description\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"name\": \"<string>\",\n\t\t\t\"reminderSourceType\": \"<string>\",\n\t\t\t\"reminderSourceTypeDisplayName\": \"<string>\",\n\t\t\t\"reminders\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"message\": \"<string>\",\n\t\t\t\t\t\"targetDate\": \"<string>\",\n\t\t\t\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\"contactViewUrl\": \"<string>\",\n\t\t\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\t\t\t\"reminderType\": \"<string>\",\n\t\t\t\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\t\t\t\"taskStatus\": \"<string>\",\n\t\t\t\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\t\t\t\"completeUrl\": \"<string>\",\n\t\t\t\t\t\"dismissUrl\": \"<string>\",\n\t\t\t\t\t\"description\": \"<string>\",\n\t\t\t\t\t\"hasContact\": \"<boolean>\",\n\t\t\t\t\t\"isPastDue\": \"<boolean>\",\n\t\t\t\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\t\t\t\"canComplete\": \"<boolean>\",\n\t\t\t\t\t\"completeActionName\": \"<string>\",\n\t\t\t\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\t\t\t\"owner\": \"<string>\",\n\t\t\t\t\t\"ownerAvatarUrl\": \"<string>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"<integer>\",\n\t\t\t\t\t\"message\": \"<string>\",\n\t\t\t\t\t\"targetDate\": \"<string>\",\n\t\t\t\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\t\t\"contactViewUrl\": \"<string>\",\n\t\t\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\t\t\t\"reminderType\": \"<string>\",\n\t\t\t\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\t\t\t\"taskStatus\": \"<string>\",\n\t\t\t\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\t\t\t\"completeUrl\": \"<string>\",\n\t\t\t\t\t\"dismissUrl\": \"<string>\",\n\t\t\t\t\t\"description\": \"<string>\",\n\t\t\t\t\t\"hasContact\": \"<boolean>\",\n\t\t\t\t\t\"isPastDue\": \"<boolean>\",\n\t\t\t\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\t\t\t\"canComplete\": \"<boolean>\",\n\t\t\t\t\t\"completeActionName\": \"<string>\",\n\t\t\t\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\t\t\t\"owner\": \"<string>\",\n\t\t\t\t\t\"ownerAvatarUrl\": \"<string>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"message\": \"<string>\",\n\t\t\t\"dueDate\": \"<dateTime>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\"reminderFrequency\": \"<string>\",\n\t\t\t\"reminderFrequencyDisplayName\": \"<string>\",\n\t\t\t\"milestoneType\": \"<string>\",\n\t\t\t\"milestoneTypeDisplayName\": \"<string>\",\n\t\t\t\"threshold\": \"<integer>\",\n\t\t\t\"description\": \"<string>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"4a3eaf81-cc94-41ca-a57b-510e7014dfa6"},{"name":"Get Active Manual Reminders by Contact","id":"12ecfb41-1f6d-4d54-8dd4-3da1a0485cdb","request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Reminder/ByContact/:contactId/Active?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Reminder","ByContact",":contactId","Active"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) The contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactId"}]}},"response":[{"id":"ccc041d7-2d98-46e2-aae5-1de43988a9a4","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Reminder/ByContact/:contactId/Active?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Reminder","ByContact",":contactId","Active"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"message\": \"<string>\",\n\t\t\t\"targetDate\": \"<string>\",\n\t\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactViewUrl\": \"<string>\",\n\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\t\"reminderType\": \"<string>\",\n\t\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\t\"taskStatus\": \"<string>\",\n\t\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\t\"completeUrl\": \"<string>\",\n\t\t\t\"dismissUrl\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"hasContact\": \"<boolean>\",\n\t\t\t\"isPastDue\": \"<boolean>\",\n\t\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\t\"canComplete\": \"<boolean>\",\n\t\t\t\"completeActionName\": \"<string>\",\n\t\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\t\"owner\": \"<string>\",\n\t\t\t\"ownerAvatarUrl\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"message\": \"<string>\",\n\t\t\t\"targetDate\": \"<string>\",\n\t\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactViewUrl\": \"<string>\",\n\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\t\"reminderType\": \"<string>\",\n\t\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\t\"taskStatus\": \"<string>\",\n\t\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\t\"completeUrl\": \"<string>\",\n\t\t\t\"dismissUrl\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"hasContact\": \"<boolean>\",\n\t\t\t\"isPastDue\": \"<boolean>\",\n\t\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\t\"canComplete\": \"<boolean>\",\n\t\t\t\"completeActionName\": \"<string>\",\n\t\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\t\"owner\": \"<string>\",\n\t\t\t\"ownerAvatarUrl\": \"<string>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"12ecfb41-1f6d-4d54-8dd4-3da1a0485cdb"},{"name":"Get Inactive Manual Reminders by Contact","id":"929a72d0-d614-40f2-89b2-6f751bd6700e","request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Reminder/ByContact/:contactId/Inactive?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Reminder","ByContact",":contactId","Inactive"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) The contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactId"}]}},"response":[{"id":"b4be9df6-d004-448f-91f6-a517ffff6ee0","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Reminder/ByContact/:contactId/Inactive?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Reminder","ByContact",":contactId","Inactive"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"message\": \"<string>\",\n\t\t\t\"targetDate\": \"<string>\",\n\t\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactViewUrl\": \"<string>\",\n\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\t\"reminderType\": \"<string>\",\n\t\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\t\"taskStatus\": \"<string>\",\n\t\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\t\"completeUrl\": \"<string>\",\n\t\t\t\"dismissUrl\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"hasContact\": \"<boolean>\",\n\t\t\t\"isPastDue\": \"<boolean>\",\n\t\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\t\"canComplete\": \"<boolean>\",\n\t\t\t\"completeActionName\": \"<string>\",\n\t\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\t\"owner\": \"<string>\",\n\t\t\t\"ownerAvatarUrl\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"message\": \"<string>\",\n\t\t\t\"targetDate\": \"<string>\",\n\t\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactViewUrl\": \"<string>\",\n\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\t\"reminderType\": \"<string>\",\n\t\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\t\"taskStatus\": \"<string>\",\n\t\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\t\"completeUrl\": \"<string>\",\n\t\t\t\"dismissUrl\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"hasContact\": \"<boolean>\",\n\t\t\t\"isPastDue\": \"<boolean>\",\n\t\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\t\"canComplete\": \"<boolean>\",\n\t\t\t\"completeActionName\": \"<string>\",\n\t\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\t\"owner\": \"<string>\",\n\t\t\t\"ownerAvatarUrl\": \"<string>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"929a72d0-d614-40f2-89b2-6f751bd6700e"},{"name":"Get Unresolved Manual Reminders by Contact","id":"8d81aa36-2374-4606-8666-fd929b14ad27","request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Reminder/ByContact/:contactId?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Reminder","ByContact",":contactId"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[{"description":{"content":"<p>(Required) The contact identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"contactId"}]}},"response":[{"id":"38fc30ee-f07a-428d-9a0c-18b3f0318f51","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Reminder/ByContact/:contactId?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Reminder","ByContact",":contactId"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}],"variable":[{"key":"contactId","value":"<integer>","description":"(Required) The contact identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"list\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"message\": \"<string>\",\n\t\t\t\"targetDate\": \"<string>\",\n\t\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactViewUrl\": \"<string>\",\n\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\t\"reminderType\": \"<string>\",\n\t\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\t\"taskStatus\": \"<string>\",\n\t\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\t\"completeUrl\": \"<string>\",\n\t\t\t\"dismissUrl\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"hasContact\": \"<boolean>\",\n\t\t\t\"isPastDue\": \"<boolean>\",\n\t\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\t\"canComplete\": \"<boolean>\",\n\t\t\t\"completeActionName\": \"<string>\",\n\t\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\t\"owner\": \"<string>\",\n\t\t\t\"ownerAvatarUrl\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"message\": \"<string>\",\n\t\t\t\"targetDate\": \"<string>\",\n\t\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactViewUrl\": \"<string>\",\n\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\t\"reminderType\": \"<string>\",\n\t\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\t\"taskStatus\": \"<string>\",\n\t\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\t\"completeUrl\": \"<string>\",\n\t\t\t\"dismissUrl\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"hasContact\": \"<boolean>\",\n\t\t\t\"isPastDue\": \"<boolean>\",\n\t\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\t\"canComplete\": \"<boolean>\",\n\t\t\t\"completeActionName\": \"<string>\",\n\t\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\t\"owner\": \"<string>\",\n\t\t\t\"ownerAvatarUrl\": \"<string>\"\n\t\t}\n\t],\n\t\"total\": \"<integer>\"\n}"}],"_postman_id":"8d81aa36-2374-4606-8666-fd929b14ad27"},{"name":"Create Manual Reminder","id":"864ed7fe-320e-4efe-a592-d72892b544c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"taskType\": \"<string>\",\n    \"message\": \"<string>\",\n    \"dueDate\": \"<dateTime>\",\n    \"contactId\": \"<integer>\",\n    \"ownerEmail\": \"<string>\",\n    \"description\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Reminder","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Reminder"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"26d314cc-ce2f-49ed-8600-1e297e22e87a","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"taskType\": \"<string>\",\n    \"message\": \"<string>\",\n    \"dueDate\": \"<dateTime>\",\n    \"contactId\": \"<integer>\",\n    \"ownerEmail\": \"<string>\",\n    \"description\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Reminder"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"message\": \"<string>\",\n\t\"targetDate\": \"<string>\",\n\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactViewUrl\": \"<string>\",\n\t\"contactDisplayName\": \"<string>\",\n\t\"contactAvatarUrl\": \"<string>\",\n\t\"reminderType\": \"<string>\",\n\t\"reminderTypeDisplayName\": \"<string>\",\n\t\"taskStatus\": \"<string>\",\n\t\"taskStatusDisplayName\": \"<string>\",\n\t\"completeUrl\": \"<string>\",\n\t\"dismissUrl\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"hasContact\": \"<boolean>\",\n\t\"isPastDue\": \"<boolean>\",\n\t\"isUnresolved\": \"<boolean>\",\n\t\"canComplete\": \"<boolean>\",\n\t\"completeActionName\": \"<string>\",\n\t\"canCompleteWithNote\": \"<boolean>\",\n\t\"owner\": \"<string>\",\n\t\"ownerAvatarUrl\": \"<string>\"\n}"},{"id":"5ce65f9b-a6d5-4e08-9632-4e3cc4727428","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"taskType\": \"<string>\",\n    \"message\": \"<string>\",\n    \"dueDate\": \"<dateTime>\",\n    \"contactId\": \"<integer>\",\n    \"ownerEmail\": \"<string>\",\n    \"description\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Reminder"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"864ed7fe-320e-4efe-a592-d72892b544c0"},{"name":"Create Recurring Reminder","id":"ed2632fe-cdf6-441c-a5fb-fd3a55f5cc5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"taskType\": \"<string>\",\n    \"message\": \"<string>\",\n    \"name\": \"<string>\",\n    \"dueDate\": \"<dateTime>\",\n    \"contactId\": \"<integer>\",\n    \"reminderFrequency\": \"<string>\",\n    \"ownerEmail\": \"<string>\",\n    \"description\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Reminder/Saved/Recurring","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Reminder","Saved","Recurring"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"cae6b64a-191a-46f2-bf9b-f6c9ebf600f3","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"taskType\": \"<string>\",\n    \"message\": \"<string>\",\n    \"name\": \"<string>\",\n    \"dueDate\": \"<dateTime>\",\n    \"contactId\": \"<integer>\",\n    \"reminderFrequency\": \"<string>\",\n    \"ownerEmail\": \"<string>\",\n    \"description\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Reminder/Saved/Recurring"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"name\": \"<string>\",\n\t\"reminderSourceType\": \"<string>\",\n\t\"reminderSourceTypeDisplayName\": \"<string>\",\n\t\"reminders\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"message\": \"<string>\",\n\t\t\t\"targetDate\": \"<string>\",\n\t\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactViewUrl\": \"<string>\",\n\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\t\"reminderType\": \"<string>\",\n\t\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\t\"taskStatus\": \"<string>\",\n\t\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\t\"completeUrl\": \"<string>\",\n\t\t\t\"dismissUrl\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"hasContact\": \"<boolean>\",\n\t\t\t\"isPastDue\": \"<boolean>\",\n\t\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\t\"canComplete\": \"<boolean>\",\n\t\t\t\"completeActionName\": \"<string>\",\n\t\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\t\"owner\": \"<string>\",\n\t\t\t\"ownerAvatarUrl\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"message\": \"<string>\",\n\t\t\t\"targetDate\": \"<string>\",\n\t\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactViewUrl\": \"<string>\",\n\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\t\"reminderType\": \"<string>\",\n\t\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\t\"taskStatus\": \"<string>\",\n\t\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\t\"completeUrl\": \"<string>\",\n\t\t\t\"dismissUrl\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"hasContact\": \"<boolean>\",\n\t\t\t\"isPastDue\": \"<boolean>\",\n\t\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\t\"canComplete\": \"<boolean>\",\n\t\t\t\"completeActionName\": \"<string>\",\n\t\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\t\"owner\": \"<string>\",\n\t\t\t\"ownerAvatarUrl\": \"<string>\"\n\t\t}\n\t],\n\t\"message\": \"<string>\",\n\t\"dueDate\": \"<dateTime>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactDisplayName\": \"<string>\",\n\t\"reminderFrequency\": \"<string>\",\n\t\"reminderFrequencyDisplayName\": \"<string>\",\n\t\"milestoneType\": \"<string>\",\n\t\"milestoneTypeDisplayName\": \"<string>\",\n\t\"threshold\": \"<integer>\",\n\t\"description\": \"<string>\"\n}"},{"id":"e85d5f00-758a-41e3-ae79-7362937f8c9d","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"taskType\": \"<string>\",\n    \"message\": \"<string>\",\n    \"name\": \"<string>\",\n    \"dueDate\": \"<dateTime>\",\n    \"contactId\": \"<integer>\",\n    \"reminderFrequency\": \"<string>\",\n    \"ownerEmail\": \"<string>\",\n    \"description\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Reminder/Saved/Recurring"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ed2632fe-cdf6-441c-a5fb-fd3a55f5cc5e"},{"name":"Create Milestone Reminder","id":"e4f4636c-6c99-4090-aec9-44cfc35551c2","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"<string>\",\n    \"milestoneType\": \"<string>\",\n    \"threshold\": \"<integer>\",\n    \"ownerEmail\": \"<string>\",\n    \"description\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Reminder/Saved/Milestone","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Reminder","Saved","Milestone"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"1983e354-03d0-4431-b788-c242393b65bd","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"taskType\": \"<string>\",\n    \"name\": \"<string>\",\n    \"milestoneType\": \"<string>\",\n    \"threshold\": \"<integer>\",\n    \"ownerEmail\": \"<string>\",\n    \"description\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Reminder/Saved/Milestone"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"name\": \"<string>\",\n\t\"reminderSourceType\": \"<string>\",\n\t\"reminderSourceTypeDisplayName\": \"<string>\",\n\t\"reminders\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"message\": \"<string>\",\n\t\t\t\"targetDate\": \"<string>\",\n\t\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactViewUrl\": \"<string>\",\n\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\t\"reminderType\": \"<string>\",\n\t\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\t\"taskStatus\": \"<string>\",\n\t\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\t\"completeUrl\": \"<string>\",\n\t\t\t\"dismissUrl\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"hasContact\": \"<boolean>\",\n\t\t\t\"isPastDue\": \"<boolean>\",\n\t\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\t\"canComplete\": \"<boolean>\",\n\t\t\t\"completeActionName\": \"<string>\",\n\t\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\t\"owner\": \"<string>\",\n\t\t\t\"ownerAvatarUrl\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"message\": \"<string>\",\n\t\t\t\"targetDate\": \"<string>\",\n\t\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactViewUrl\": \"<string>\",\n\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\t\"reminderType\": \"<string>\",\n\t\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\t\"taskStatus\": \"<string>\",\n\t\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\t\"completeUrl\": \"<string>\",\n\t\t\t\"dismissUrl\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"hasContact\": \"<boolean>\",\n\t\t\t\"isPastDue\": \"<boolean>\",\n\t\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\t\"canComplete\": \"<boolean>\",\n\t\t\t\"completeActionName\": \"<string>\",\n\t\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\t\"owner\": \"<string>\",\n\t\t\t\"ownerAvatarUrl\": \"<string>\"\n\t\t}\n\t],\n\t\"message\": \"<string>\",\n\t\"dueDate\": \"<dateTime>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactDisplayName\": \"<string>\",\n\t\"reminderFrequency\": \"<string>\",\n\t\"reminderFrequencyDisplayName\": \"<string>\",\n\t\"milestoneType\": \"<string>\",\n\t\"milestoneTypeDisplayName\": \"<string>\",\n\t\"threshold\": \"<integer>\",\n\t\"description\": \"<string>\"\n}"},{"id":"5d3a85ea-aa4d-42ac-ae68-83256b08301f","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"taskType\": \"<string>\",\n    \"name\": \"<string>\",\n    \"milestoneType\": \"<string>\",\n    \"threshold\": \"<integer>\",\n    \"ownerEmail\": \"<string>\",\n    \"description\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Reminder/Saved/Milestone"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e4f4636c-6c99-4090-aec9-44cfc35551c2"},{"name":"Update Recurring Reminder","id":"315c91f6-1cb1-4b93-bc0c-53e7c191ffd8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"<integer>\",\n    \"taskType\": \"<string>\",\n    \"message\": \"<string>\",\n    \"name\": \"<string>\",\n    \"dueDate\": \"<dateTime>\",\n    \"contactId\": \"<integer>\",\n    \"reminderFrequency\": \"<string>\",\n    \"description\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Reminder/Saved/Recurring/:id","description":"<p>Similar to other update methods in the API, excluding a property will remove it's value from the object. \nIf you're only updating a single property, the entire model is still required.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Reminder","Saved","Recurring",":id"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"id"}]}},"response":[{"id":"933d55e9-ccd0-4cab-b363-737097fa61f5","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"id\": \"<integer>\",\n    \"taskType\": \"<string>\",\n    \"message\": \"<string>\",\n    \"name\": \"<string>\",\n    \"dueDate\": \"<dateTime>\",\n    \"contactId\": \"<integer>\",\n    \"reminderFrequency\": \"<string>\",\n    \"description\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Reminder/Saved/Recurring/:id","host":["https://api.virtuoussoftware.com"],"path":["api","Reminder","Saved","Recurring",":id"],"variable":[{"key":"id","value":"<integer>","description":"(Required) The identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"name\": \"<string>\",\n\t\"reminderSourceType\": \"<string>\",\n\t\"reminderSourceTypeDisplayName\": \"<string>\",\n\t\"reminders\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"message\": \"<string>\",\n\t\t\t\"targetDate\": \"<string>\",\n\t\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactViewUrl\": \"<string>\",\n\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\t\"reminderType\": \"<string>\",\n\t\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\t\"taskStatus\": \"<string>\",\n\t\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\t\"completeUrl\": \"<string>\",\n\t\t\t\"dismissUrl\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"hasContact\": \"<boolean>\",\n\t\t\t\"isPastDue\": \"<boolean>\",\n\t\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\t\"canComplete\": \"<boolean>\",\n\t\t\t\"completeActionName\": \"<string>\",\n\t\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\t\"owner\": \"<string>\",\n\t\t\t\"ownerAvatarUrl\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"message\": \"<string>\",\n\t\t\t\"targetDate\": \"<string>\",\n\t\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactViewUrl\": \"<string>\",\n\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\t\"reminderType\": \"<string>\",\n\t\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\t\"taskStatus\": \"<string>\",\n\t\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\t\"completeUrl\": \"<string>\",\n\t\t\t\"dismissUrl\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"hasContact\": \"<boolean>\",\n\t\t\t\"isPastDue\": \"<boolean>\",\n\t\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\t\"canComplete\": \"<boolean>\",\n\t\t\t\"completeActionName\": \"<string>\",\n\t\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\t\"owner\": \"<string>\",\n\t\t\t\"ownerAvatarUrl\": \"<string>\"\n\t\t}\n\t],\n\t\"message\": \"<string>\",\n\t\"dueDate\": \"<dateTime>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactDisplayName\": \"<string>\",\n\t\"reminderFrequency\": \"<string>\",\n\t\"reminderFrequencyDisplayName\": \"<string>\",\n\t\"milestoneType\": \"<string>\",\n\t\"milestoneTypeDisplayName\": \"<string>\",\n\t\"threshold\": \"<integer>\",\n\t\"description\": \"<string>\"\n}"},{"id":"5ac440aa-b772-47c7-987b-007116676dd9","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"id\": \"<integer>\",\n    \"taskType\": \"<string>\",\n    \"message\": \"<string>\",\n    \"name\": \"<string>\",\n    \"dueDate\": \"<dateTime>\",\n    \"contactId\": \"<integer>\",\n    \"reminderFrequency\": \"<string>\",\n    \"description\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Reminder/Saved/Recurring/:id","host":["https://api.virtuoussoftware.com"],"path":["api","Reminder","Saved","Recurring",":id"],"variable":[{"key":"id","value":"<integer>","description":"(Required) The identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"69db3395-f773-4745-a885-266343e96563","name":"NotFound","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"id\": \"<integer>\",\n    \"taskType\": \"<string>\",\n    \"message\": \"<string>\",\n    \"name\": \"<string>\",\n    \"dueDate\": \"<dateTime>\",\n    \"contactId\": \"<integer>\",\n    \"reminderFrequency\": \"<string>\",\n    \"description\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Reminder/Saved/Recurring/:id","host":["https://api.virtuoussoftware.com"],"path":["api","Reminder","Saved","Recurring",":id"],"variable":[{"key":"id","value":"<integer>","description":"(Required) The identifier."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"315c91f6-1cb1-4b93-bc0c-53e7c191ffd8"},{"name":"Update Milestone Reminder.","id":"7021a93d-d2e2-459f-adb2-5b7318d8afe0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"taskType\": \"<string>\",\n    \"name\": \"<string>\",\n    \"threshold\": \"<integer>\",\n    \"isFollowedContactsOnly\": \"<boolean>\",\n    \"description\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Reminder/Saved/Milestone/:id","description":"<p>Similar to other update methods in the API, excluding a property will remove it's value from the object. \nIf you're only updating a single property, the entire model is still required.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Reminder","Saved","Milestone",":id"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"id"}]}},"response":[{"id":"cd675d49-dfef-4361-a9e7-b5c777d7917b","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"taskType\": \"<string>\",\n    \"name\": \"<string>\",\n    \"threshold\": \"<integer>\",\n    \"isFollowedContactsOnly\": \"<boolean>\",\n    \"description\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Reminder/Saved/Milestone/:id","host":["https://api.virtuoussoftware.com"],"path":["api","Reminder","Saved","Milestone",":id"],"variable":[{"key":"id","value":"<integer>","description":"(Required) The identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"name\": \"<string>\",\n\t\"reminderSourceType\": \"<string>\",\n\t\"reminderSourceTypeDisplayName\": \"<string>\",\n\t\"reminders\": [\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"message\": \"<string>\",\n\t\t\t\"targetDate\": \"<string>\",\n\t\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactViewUrl\": \"<string>\",\n\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\t\"reminderType\": \"<string>\",\n\t\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\t\"taskStatus\": \"<string>\",\n\t\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\t\"completeUrl\": \"<string>\",\n\t\t\t\"dismissUrl\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"hasContact\": \"<boolean>\",\n\t\t\t\"isPastDue\": \"<boolean>\",\n\t\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\t\"canComplete\": \"<boolean>\",\n\t\t\t\"completeActionName\": \"<string>\",\n\t\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\t\"owner\": \"<string>\",\n\t\t\t\"ownerAvatarUrl\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"<integer>\",\n\t\t\t\"message\": \"<string>\",\n\t\t\t\"targetDate\": \"<string>\",\n\t\t\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\t\t\"contactId\": \"<integer>\",\n\t\t\t\"contactViewUrl\": \"<string>\",\n\t\t\t\"contactDisplayName\": \"<string>\",\n\t\t\t\"contactAvatarUrl\": \"<string>\",\n\t\t\t\"reminderType\": \"<string>\",\n\t\t\t\"reminderTypeDisplayName\": \"<string>\",\n\t\t\t\"taskStatus\": \"<string>\",\n\t\t\t\"taskStatusDisplayName\": \"<string>\",\n\t\t\t\"completeUrl\": \"<string>\",\n\t\t\t\"dismissUrl\": \"<string>\",\n\t\t\t\"description\": \"<string>\",\n\t\t\t\"hasContact\": \"<boolean>\",\n\t\t\t\"isPastDue\": \"<boolean>\",\n\t\t\t\"isUnresolved\": \"<boolean>\",\n\t\t\t\"canComplete\": \"<boolean>\",\n\t\t\t\"completeActionName\": \"<string>\",\n\t\t\t\"canCompleteWithNote\": \"<boolean>\",\n\t\t\t\"owner\": \"<string>\",\n\t\t\t\"ownerAvatarUrl\": \"<string>\"\n\t\t}\n\t],\n\t\"message\": \"<string>\",\n\t\"dueDate\": \"<dateTime>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactDisplayName\": \"<string>\",\n\t\"reminderFrequency\": \"<string>\",\n\t\"reminderFrequencyDisplayName\": \"<string>\",\n\t\"milestoneType\": \"<string>\",\n\t\"milestoneTypeDisplayName\": \"<string>\",\n\t\"threshold\": \"<integer>\",\n\t\"description\": \"<string>\"\n}"},{"id":"c49a6c3b-dcdb-4869-9614-078da5c78310","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"taskType\": \"<string>\",\n    \"name\": \"<string>\",\n    \"threshold\": \"<integer>\",\n    \"isFollowedContactsOnly\": \"<boolean>\",\n    \"description\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Reminder/Saved/Milestone/:id","host":["https://api.virtuoussoftware.com"],"path":["api","Reminder","Saved","Milestone",":id"],"variable":[{"key":"id","value":"<integer>","description":"(Required) The identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""},{"id":"ec128056-d892-4267-8c6d-9798f95924bf","name":"NotFound","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"taskType\": \"<string>\",\n    \"name\": \"<string>\",\n    \"threshold\": \"<integer>\",\n    \"isFollowedContactsOnly\": \"<boolean>\",\n    \"description\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Reminder/Saved/Milestone/:id","host":["https://api.virtuoussoftware.com"],"path":["api","Reminder","Saved","Milestone",":id"],"variable":[{"key":"id","value":"<integer>","description":"(Required) The identifier."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"7021a93d-d2e2-459f-adb2-5b7318d8afe0"},{"name":"Complete Reminder","id":"987a1620-9501-4e07-8c3c-d88b9ba7a864","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"noteTypeName\": \"<string>\",\n    \"note\": \"<string>\",\n    \"timeSpent\": \"<integer>\",\n    \"isImportant\": \"<boolean>\",\n    \"isPrivate\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Reminder/Completed/:id","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Reminder","Completed",":id"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The reminder identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"id"}]}},"response":[{"id":"92e8b360-3e21-468a-b073-bac3e42b4021","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"noteType\": \"<string>\",\n    \"note\": \"<string>\",\n    \"timeSpent\": \"<integer>\",\n    \"isImportant\": \"<boolean>\",\n    \"isPrivate\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Reminder/Completed/:id","host":["https://api.virtuoussoftware.com"],"path":["api","Reminder","Completed",":id"],"variable":[{"key":"id","value":"<integer>","description":"(Required) The reminder identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"message\": \"<string>\",\n\t\"targetDate\": \"<string>\",\n\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactViewUrl\": \"<string>\",\n\t\"contactDisplayName\": \"<string>\",\n\t\"contactAvatarUrl\": \"<string>\",\n\t\"reminderType\": \"<string>\",\n\t\"reminderTypeDisplayName\": \"<string>\",\n\t\"taskStatus\": \"<string>\",\n\t\"taskStatusDisplayName\": \"<string>\",\n\t\"completeUrl\": \"<string>\",\n\t\"dismissUrl\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"hasContact\": \"<boolean>\",\n\t\"isPastDue\": \"<boolean>\",\n\t\"isUnresolved\": \"<boolean>\",\n\t\"canComplete\": \"<boolean>\",\n\t\"completeActionName\": \"<string>\",\n\t\"canCompleteWithNote\": \"<boolean>\",\n\t\"owner\": \"<string>\",\n\t\"ownerAvatarUrl\": \"<string>\"\n}"},{"id":"7e5827c1-bec6-4aa7-a92c-668ad33f87b9","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"noteTypeName\": \"<string>\",\n    \"note\": \"<string>\",\n    \"timeSpent\": \"<integer>\",\n    \"isImportant\": \"<boolean>\",\n    \"isPrivate\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Reminder/Completed/:id","host":["https://api.virtuoussoftware.com"],"path":["api","Reminder","Completed",":id"],"variable":[{"key":"id","value":"<integer>","description":"(Required) The reminder identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"987a1620-9501-4e07-8c3c-d88b9ba7a864"},{"name":"Dismiss Reminder","id":"f07f13bf-d670-4845-800b-a6fa280fd656","request":{"method":"PUT","header":[],"url":"https://api.virtuoussoftware.com/api/Reminder/Dismissed/:id","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Reminder","Dismissed",":id"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"id"}]}},"response":[{"id":"9017001b-4ce5-4495-bb68-1b7f202768eb","name":"OK","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Reminder/Dismissed/:id","host":["https://api.virtuoussoftware.com"],"path":["api","Reminder","Dismissed",":id"],"variable":[{"key":"id","value":"<integer>","description":"(Required) The identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"message\": \"<string>\",\n\t\"targetDate\": \"<string>\",\n\t\"targetResolutionDateUtc\": \"<dateTime>\",\n\t\"contactId\": \"<integer>\",\n\t\"contactViewUrl\": \"<string>\",\n\t\"contactDisplayName\": \"<string>\",\n\t\"contactAvatarUrl\": \"<string>\",\n\t\"reminderType\": \"<string>\",\n\t\"reminderTypeDisplayName\": \"<string>\",\n\t\"taskStatus\": \"<string>\",\n\t\"taskStatusDisplayName\": \"<string>\",\n\t\"completeUrl\": \"<string>\",\n\t\"dismissUrl\": \"<string>\",\n\t\"description\": \"<string>\",\n\t\"hasContact\": \"<boolean>\",\n\t\"isPastDue\": \"<boolean>\",\n\t\"isUnresolved\": \"<boolean>\",\n\t\"canComplete\": \"<boolean>\",\n\t\"completeActionName\": \"<string>\",\n\t\"canCompleteWithNote\": \"<boolean>\",\n\t\"owner\": \"<string>\",\n\t\"ownerAvatarUrl\": \"<string>\"\n}"},{"id":"d58fc1a8-9f99-445b-974e-eb3ab7e27782","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Reminder/Dismissed/:id","host":["https://api.virtuoussoftware.com"],"path":["api","Reminder","Dismissed",":id"],"variable":[{"key":"id","value":"<integer>","description":"(Required) The identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"f07f13bf-d670-4845-800b-a6fa280fd656"},{"name":"Get Reminder Types","id":"b0f658d8-940c-4893-abca-90600d769176","request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Reminder/Type/Reminder","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Reminder","Type","Reminder"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"3faf97b5-87d7-463e-982b-5d56f0f93242","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Reminder/Type/Reminder"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"\"<object>\""}],"_postman_id":"b0f658d8-940c-4893-abca-90600d769176"},{"name":"Get Reminder Source Types","id":"d4ac01a6-92c0-4b7f-ada5-2ede0f0ca656","request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Reminder/Type/ReminderSource","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Reminder","Type","ReminderSource"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"1a4b5154-a8be-4530-ab59-f4737fd105cd","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Reminder/Type/ReminderSource"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"\"<object>\""}],"_postman_id":"d4ac01a6-92c0-4b7f-ada5-2ede0f0ca656"},{"name":"Gets Milestone Types","id":"58627acc-aba9-4c8c-b1f9-79d3695fb448","request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Reminder/Type/Milestone","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Reminder","Type","Milestone"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"96111e5f-8606-4cce-a0f9-bcd2dba9e6d0","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Reminder/Type/Milestone"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"\"<object>\""}],"_postman_id":"58627acc-aba9-4c8c-b1f9-79d3695fb448"},{"name":"Gets Reminder Frequency Types","id":"f09f1fa8-644e-4e8d-b844-3ef9878ad30f","request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Reminder/Type/ReminderFrequency","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Reminder","Type","ReminderFrequency"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"c6406cf4-24de-4cde-85ba-069cb040cd9d","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Reminder/Type/ReminderFrequency"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"\"<object>\""}],"_postman_id":"f09f1fa8-644e-4e8d-b844-3ef9878ad30f"}],"id":"de09de43-8f91-4ec3-8b8a-42de6e0daf90","description":"<p>Reminders are small records meant to keep track of some Task you have in mind. They can also be used to automatically generate based on some condition or recurring every so often. Reminders will be replaced by Tasks in the near future.</p>\n","_postman_id":"de09de43-8f91-4ec3-8b8a-42de6e0daf90","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Search","item":[{"name":"Search for Contacts, Individuals or Entities","id":"b1c7f34b-fa4b-4b51-8656-d86cabe150d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"query\": \"<string>\",\n    \"filterTypes\": [\"Contact\",\"Individual\",\"Campaign\",\"Project\",\"Segment\",\"Tag\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Search?skip=<integer>&take=<integer>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Search"],"host":["https://api.virtuoussoftware.com"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"df47d402-fbc7-4435-ac06-dcf776b945d8","name":"Search for Contacts","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"query\": \"Ronald\",\n    \"filterTypes\": [\"Contact\"]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Search?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Search"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"contacts\": {\r\n    \"hits\": [\r\n      {\r\n        \"document\": {\r\n          \"contactId\": 4332,\r\n          \"contactType\": \"Organization\",\r\n          \"contactSubtype\": null,\r\n          \"contactName\": \"Ronald McDonald House Charities\",\r\n          \"informalName\": \"\",\r\n          \"formalName\": \"\",\r\n          \"alternateName\": \"\",\r\n          \"individualId\": 4334,\r\n          \"individualName\": \"John Doe\",\r\n          \"isPrimary\": true,\r\n          \"address\": \"131 S Dearborn, 6th Floor | Chicago, IL 60603 | US\",\r\n          \"email\": \"info@rmhc.org\",\r\n          \"phoneNumber\": null,\r\n          \"isArchived\": false\r\n        },\r\n        \"highlights\": [\r\n          {\r\n            \"field\": \"contactName\",\r\n            \"snippet\": \"<mark>Ronald</mark> McDonald House Charities\"\r\n          }\r\n        ]\r\n      }\r\n    ],\r\n    \"total\": 1\r\n  },\r\n  \"individuals\": {\r\n    \"hits\": [],\r\n    \"total\": 0\r\n  },\r\n  \"entities\": {\r\n    \"hits\": [],\r\n    \"total\": 0\r\n  }\r\n}"},{"id":"135fcdc7-c8d0-46ee-95eb-bf63371b487a","name":"Search for Individuals","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"query\": \"Bob Loblaw\",\n    \"filterTypes\": [\"Individual\"]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Search?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Search"],"query":[{"key":"skip","value":"<integer>"},{"key":"take","value":"<integer>"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"contacts\": {\r\n    \"hits\": [],\r\n    \"total\": 0\r\n  },\r\n  \"individuals\": {\r\n    \"hits\": [\r\n      {\r\n        \"document\": {\r\n          \"contactId\": 23445,\r\n          \"contactType\": \"Household\",\r\n          \"contactSubtype\": null,\r\n          \"contactName\": \"Bob Loblaw\",\r\n          \"informalName\": \"Bob\",\r\n          \"formalName\": \"Robert Loblaw\",\r\n          \"alternateName\": \"\",\r\n          \"individualId\": 23445,\r\n          \"individualName\": \"Bob Loblaw\",\r\n          \"isPrimary\": true,\r\n          \"address\": \"1404 Test st. | Irving, TX 75039 | US\",\r\n          \"email\": \"bobloblaw@loblawlaw.com\",\r\n          \"phoneNumber\": null,\r\n          \"isArchived\": false\r\n        },\r\n        \"highlights\": [\r\n          {\r\n            \"field\": \"contactName\",\r\n            \"snippet\": \"<mark>Bob</mark> <mark>Loblaw</mark>\"\r\n          },\r\n          {\r\n            \"field\": \"informalName\",\r\n            \"snippet\": \"<mark>Bob</mark>\"\r\n          },\r\n          {\r\n            \"field\": \"informalName\",\r\n            \"snippet\": \"Robert <mark>Loblaw</mark>\"\r\n          },\r\n          {\r\n            \"field\": \"individualName\",\r\n            \"snippet\": \"<mark>Bob</mark> <mark>Loblaw</mark>\"\r\n          }\r\n        ]\r\n      }\r\n    ],\r\n    \"total\": 1\r\n  },\r\n  \"entities\": {\r\n    \"hits\": [],\r\n    \"total\": 0\r\n  }\r\n}"},{"id":"d92271c3-cfa6-480d-901c-8272af3250b9","name":"Search for Tags","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"query\": \"Major\",\n    \"filterTypes\": [\"Tag\"]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Search?skip=0&take=10","host":["https://api.virtuoussoftware.com"],"path":["api","Search"],"query":[{"key":"skip","value":"0"},{"key":"take","value":"10"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n  \"contacts\": {\r\n    \"hits\": [],\r\n    \"total\": 0\r\n  },\r\n  \"individuals\": {\r\n    \"hits\": [],\r\n    \"total\": 0\r\n  },\r\n  \"entities\": {\r\n    \"hits\": [\r\n      {\r\n        \"document\": {\r\n          \"entityId\": 123,\r\n          \"entityType\": \"Tag\",\r\n          \"title\": \"Major Donor\",\r\n          \"code\": null,\r\n          \"description\": \"Major Donor\",\r\n          \"metadata\": \"Contacts\",\r\n          \"total\": 0\r\n        },\r\n        \"highlights\": [\r\n          {\r\n            \"field\": \"title\",\r\n            \"snippet\": \"<mark>Major</mark> Donor\"\r\n          }\r\n        ]\r\n      }\r\n    ],\r\n    \"total\": 1\r\n  }\r\n}"}],"_postman_id":"b1c7f34b-fa4b-4b51-8656-d86cabe150d8"}],"id":"72e2b9f8-6684-4b00-858d-d8c0fc108633","description":"<p>(New as of 10/3/2025) Looking for something in Virtuous? Use this endpoint to give us a string and get back the thing that most resembles it. Currenlty supports:</p>\n<ul>\n<li><p>Contacts</p>\n</li>\n<li><p>Individuals</p>\n</li>\n<li><p>Campaigns</p>\n</li>\n<li><p>Projects</p>\n</li>\n<li><p>Segments</p>\n</li>\n<li><p>Tags</p>\n</li>\n</ul>\n","_postman_id":"72e2b9f8-6684-4b00-858d-d8c0fc108633","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Tasks","item":[{"name":"Create a Task","id":"92a9f52b-b399-485b-a538-353b38b39cb5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.virtuoussoftware.com/api/Task","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Task"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"a4ef69fc-1686-4016-bea6-15d4d27903c2","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"taskType\": \"General\",\r\n  \"task\": \"Remind me to call mom\",\r\n  \"description\": \"Tell her the caserole was great!\",\r\n  \"dueDateTime\": \"2022-02-10 00:00\",\r\n  \"ownerEmail\": \"bobloblaw@loblaw.org\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Task"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n\t\"id\": 5,\r\n\t\"taskType\": \"General\",\r\n\t\"task\": \"Remind me to call mom\",\r\n\t\"description\": \"Tell her the caserole was great!\",\r\n\t\"dueDateTime\": \"2022-02-10T15:00:00\",\r\n\t\"contactId\": 10,\r\n\t\"contact\": \"Mom\",\r\n\t\"contactUrl\": \"https://api.virtuoussoftware.com/api/Contact/10\"\r\n}"}],"_postman_id":"92a9f52b-b399-485b-a538-353b38b39cb5"},{"name":"Get Task Types","id":"d1e0880d-9e9a-41b7-a424-4b2db747c07c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Task/Types","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Task","Types"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"79163052-31ea-4113-9081-de8ce9b49128","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Task/Types"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\r\n\t\"General\",\r\n\t\"Call\",\r\n\t\"Meeting\"\r\n]"}],"_postman_id":"d1e0880d-9e9a-41b7-a424-4b2db747c07c"},{"name":"Query Tasks","id":"c3765875-59ac-44c8-8925-a12b35884817","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"groups\": [\r\n        {\r\n            \"conditions\": [\r\n                {\r\n                    \"parameter\": \"<string>\",\r\n                    \"operator\": \"<string>\",\r\n                    \"value\": \"<string>\",\r\n                    \"secondaryValue\": \"<string>\",\r\n                    \"values\": [\r\n                        \"<string>\",\r\n                        \"<string>\"\r\n                    ]\r\n                },\r\n                {\r\n                    \"parameter\": \"<string>\",\r\n                    \"operator\": \"<string>\",\r\n                    \"value\": \"<string>\",\r\n                    \"secondaryValue\": \"<string>\",\r\n                    \"values\": [\r\n                        \"<string>\",\r\n                        \"<string>\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"conditions\": [\r\n                {\r\n                    \"parameter\": \"<string>\",\r\n                    \"operator\": \"<string>\",\r\n                    \"value\": \"<string>\",\r\n                    \"secondaryValue\": \"<string>\",\r\n                    \"values\": [\r\n                        \"<string>\",\r\n                        \"<string>\"\r\n                    ]\r\n                },\r\n                {\r\n                    \"parameter\": \"<string>\",\r\n                    \"operator\": \"<string>\",\r\n                    \"value\": \"<string>\",\r\n                    \"secondaryValue\": \"<string>\",\r\n                    \"values\": [\r\n                        \"<string>\",\r\n                        \"<string>\"\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ],\r\n    \"sortBy\": \"<string>\",\r\n    \"descending\": \"<boolean>\"\r\n}"},"url":"https://api.virtuoussoftware.com/api/Task/Query?skip=<integer>&take=<integer>","description":"<p>To see which options can be sent, use the Get Task Query Options endpoint.<br />If requests are timing out, you may be asking for too many items at once. The max take is 1,000.</p>\n","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Task","Query"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>The number of records to skip. Default = 0.</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>The number of records to take. Default = 10. Max is 1000.</p>\n","type":"text/plain"},"key":"take","value":"<integer>"}],"variable":[]}},"response":[{"id":"a848804a-e804-4ff6-95eb-aee08f6085e0","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"groups\": [\r\n        {\r\n            \"conditions\": [\r\n                {\r\n                    \"parameter\": \"<string>\",\r\n                    \"operator\": \"<string>\",\r\n                    \"value\": \"<string>\",\r\n                    \"secondaryValue\": \"<string>\",\r\n                    \"values\": [\r\n                        \"<string>\",\r\n                        \"<string>\"\r\n                    ]\r\n                },\r\n                {\r\n                    \"parameter\": \"<string>\",\r\n                    \"operator\": \"<string>\",\r\n                    \"value\": \"<string>\",\r\n                    \"secondaryValue\": \"<string>\",\r\n                    \"values\": [\r\n                        \"<string>\",\r\n                        \"<string>\"\r\n                    ]\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"conditions\": [\r\n                {\r\n                    \"parameter\": \"<string>\",\r\n                    \"operator\": \"<string>\",\r\n                    \"value\": \"<string>\",\r\n                    \"secondaryValue\": \"<string>\",\r\n                    \"values\": [\r\n                        \"<string>\",\r\n                        \"<string>\"\r\n                    ]\r\n                },\r\n                {\r\n                    \"parameter\": \"<string>\",\r\n                    \"operator\": \"<string>\",\r\n                    \"value\": \"<string>\",\r\n                    \"secondaryValue\": \"<string>\",\r\n                    \"values\": [\r\n                        \"<string>\",\r\n                        \"<string>\"\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ],\r\n    \"sortBy\": \"<string>\",\r\n    \"descending\": \"<boolean>\"\r\n}"},"url":{"raw":"https://api.virtuoussoftware.com/api/Task/Query?skip=<integer>&take=<integer>","host":["https://api.virtuoussoftware.com"],"path":["api","Task","Query"],"query":[{"key":"skip","value":"<integer>","description":"The number of records to skip. Default = 0."},{"key":"take","value":"<integer>","description":"The number of records to take. Default = 10. Max is 1000."}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\r\n\t\"list\": [\r\n        {\r\n            \"id\": \"<integer>\",\r\n            \"taskType\": \"<string>\",\r\n            \"task\": \"<string>\",\r\n            \"description\": \"<string>\",\r\n            \"dueDateTime\": \"<dateTime>\",\r\n            \"contactId\": \"<integer>\",\r\n            \"contact\": \"<string>\",\r\n            \"contactUrl\": \"<string>\"\r\n        },\r\n\t\t{\r\n            \"id\": \"<integer>\",\r\n            \"taskType\": \"<string>\",\r\n            \"task\": \"<string>\",\r\n            \"description\": \"<string>\",\r\n            \"dueDateTime\": \"<dateTime>\",\r\n            \"contactId\": \"<integer>\",\r\n            \"contact\": \"<string>\",\r\n            \"contactUrl\": \"<string>\"\r\n        }\r\n\t],\r\n\t\"total\": \"<integer>\"\r\n}"}],"_postman_id":"c3765875-59ac-44c8-8925-a12b35884817"},{"name":"Get Task Query Options","id":"bf5703dc-93d5-4527-a61c-803ea9518e2b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Task/QueryOptions","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Task","QueryOptions"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"afc032e6-5236-4e48-8a68-4302361f904a","name":"OK","originalRequest":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Task/QueryOptions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"options\": [\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\t\"parameter\": \"<string>\",\n\t\t\t\"type\": \"<string>\",\n\t\t\t\"operatorOptions\": [\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"operator\": \"<string>\",\n\t\t\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"valueOptions\": [\n\t\t\t\t\"<string>\",\n\t\t\t\t\"<string>\"\n\t\t\t]\n\t\t}\n\t],\n\t\"operatorOptions\": [\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t},\n\t\t{\n\t\t\t\"operator\": \"<string>\",\n\t\t\t\"multipleValuesAllowed\": \"<boolean>\",\n\t\t\t\"valueRequired\": \"<boolean>\"\n\t\t}\n\t]\n}"}],"_postman_id":"bf5703dc-93d5-4527-a61c-803ea9518e2b"}],"id":"24b0b978-3bdc-4449-ac26-a111d63dc84d","description":"<p>Tasks replaces the Reminders API. With each new subsequent release we will introduce more APIs that follow the new naming convention. Initially we will only have the base Task functionality but over time the entire Reminder API will be replaced.</p>\n","_postman_id":"24b0b978-3bdc-4449-ac26-a111d63dc84d","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"Webhooks","item":[{"name":"Get a Webhook","id":"89cebbe6-2ffa-4775-a021-41aa0cd5c435","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.virtuoussoftware.com/api/Webhook/:webhookId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Webhook",":webhookId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The webhook identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"webhookId"}]}},"response":[{"id":"1ecd16e5-ef15-489e-aecd-a91389d2006e","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Webhook/:webhookId","host":["https://api.virtuoussoftware.com"],"path":["api","Webhook",":webhookId"],"variable":[{"key":"webhookId","value":"<integer>","description":"(Required) The webhook identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"payloadUrl\": \"<string>\",\n\t\"secret\": \"<string>\",\n\t\"contactCreate\": \"<boolean>\",\n\t\"contactUpdate\": \"<boolean>\",\n\t\"giftCreate\": \"<boolean>\",\n\t\"giftUpdate\": \"<boolean>\",\n\t\"giftDelete\": \"<boolean>\",\n\t\"projectCreate\": \"<boolean>\",\n\t\"projectUpdate\": \"<boolean>\",\n\t\"projectDelete\": \"<boolean>\",\n\t\"formSubmission\": \"<boolean>\",\n\t\"contactNoteCreate\": \"<boolean>\",\n\t\"contactNoteUpdate\": \"<boolean>\",\n\t\"contactNoteDelete\": \"<boolean>\",\n\t\"eventCreate\": \"<boolean>\",\n\t\"eventUpdate\": \"<boolean>\",\n\t\"eventDelete\": \"<boolean>\",\n\t\"active\": \"<boolean>\"\n}"},{"id":"07a058e9-2564-455d-b0a1-ede655606e02","name":"NotFound","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Webhook/:webhookId","host":["https://api.virtuoussoftware.com"],"path":["api","Webhook",":webhookId"],"variable":[{"key":"webhookId","value":"<integer>","description":"(Required) The webhook identifier."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"89cebbe6-2ffa-4775-a021-41aa0cd5c435"},{"name":"Create a Webhook","id":"04dc3569-e386-46fc-b6c9-136452d4851f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"payloadUrl\": \"<string>\",\n    \"secret\": \"<string>\",\n    \"contactCreate\": \"<boolean>\",\n    \"contactUpdate\": \"<boolean>\",\n    \"giftCreate\": \"<boolean>\",\n    \"giftUpdate\": \"<boolean>\",\n    \"giftDelete\": \"<boolean>\",\n    \"projectCreate\": \"<boolean>\",\n    \"projectUpdate\": \"<boolean>\",\n    \"projectDelete\": \"<boolean>\",\n    \"formSubmission\": \"<boolean>\",\n    \"contactNoteCreate\": \"<boolean>\",\n    \"contactNoteUpdate\": \"<boolean>\",\n    \"contactNoteDelete\": \"<boolean>\",\n    \"eventCreate\": \"<boolean>\",\n    \"eventUpdate\": \"<boolean>\",\n    \"eventDelete\": \"<boolean>\",\n    \"active\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Webhook","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Webhook"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[]}},"response":[{"id":"6f66ecae-85bb-499f-86df-9c7cb8995004","name":"OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"payloadUrl\": \"<string>\",\n    \"secret\": \"<string>\",\n    \"contactCreate\": \"<boolean>\",\n    \"contactUpdate\": \"<boolean>\",\n    \"giftCreate\": \"<boolean>\",\n    \"giftUpdate\": \"<boolean>\",\n    \"giftDelete\": \"<boolean>\",\n    \"projectCreate\": \"<boolean>\",\n    \"projectUpdate\": \"<boolean>\",\n    \"projectDelete\": \"<boolean>\",\n    \"formSubmission\": \"<boolean>\",\n    \"contactNoteCreate\": \"<boolean>\",\n    \"contactNoteUpdate\": \"<boolean>\",\n    \"contactNoteDelete\": \"<boolean>\",\n    \"eventCreate\": \"<boolean>\",\n    \"eventUpdate\": \"<boolean>\",\n    \"eventDelete\": \"<boolean>\",\n    \"active\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Webhook"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"payloadUrl\": \"<string>\",\n\t\"secret\": \"<string>\",\n\t\"contactCreate\": \"<boolean>\",\n\t\"contactUpdate\": \"<boolean>\",\n\t\"giftCreate\": \"<boolean>\",\n\t\"giftUpdate\": \"<boolean>\",\n\t\"giftDelete\": \"<boolean>\",\n\t\"projectCreate\": \"<boolean>\",\n\t\"projectUpdate\": \"<boolean>\",\n\t\"projectDelete\": \"<boolean>\",\n\t\"formSubmission\": \"<boolean>\",\n\t\"contactNoteCreate\": \"<boolean>\",\n\t\"contactNoteUpdate\": \"<boolean>\",\n\t\"contactNoteDelete\": \"<boolean>\",\n\t\"eventCreate\": \"<boolean>\",\n\t\"eventUpdate\": \"<boolean>\",\n\t\"eventDelete\": \"<boolean>\",\n\t\"active\": \"<boolean>\"\n}"},{"id":"10fb7f84-355c-4e58-a383-92a2c4fccd44","name":"BadRequest","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"payloadUrl\": \"<string>\",\n    \"secret\": \"<string>\",\n    \"contactCreate\": \"<boolean>\",\n    \"contactUpdate\": \"<boolean>\",\n    \"giftCreate\": \"<boolean>\",\n    \"giftUpdate\": \"<boolean>\",\n    \"giftDelete\": \"<boolean>\",\n    \"projectCreate\": \"<boolean>\",\n    \"projectUpdate\": \"<boolean>\",\n    \"projectDelete\": \"<boolean>\",\n    \"formSubmission\": \"<boolean>\",\n    \"contactNoteCreate\": \"<boolean>\",\n    \"contactNoteUpdate\": \"<boolean>\",\n    \"contactNoteDelete\": \"<boolean>\",\n    \"eventCreate\": \"<boolean>\",\n    \"eventUpdate\": \"<boolean>\",\n    \"eventDelete\": \"<boolean>\",\n    \"active\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Webhook"},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"04dc3569-e386-46fc-b6c9-136452d4851f"},{"name":"Update a Webhook","id":"9a56ffb2-cd97-4b52-99b3-067c0fe0842e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"payloadUrl\": \"<string>\",\n    \"secret\": \"<string>\",\n    \"contactCreate\": \"<boolean>\",\n    \"contactUpdate\": \"<boolean>\",\n    \"giftCreate\": \"<boolean>\",\n    \"giftUpdate\": \"<boolean>\",\n    \"giftDelete\": \"<boolean>\",\n    \"projectCreate\": \"<boolean>\",\n    \"projectUpdate\": \"<boolean>\",\n    \"projectDelete\": \"<boolean>\",\n    \"formSubmission\": \"<boolean>\",\n    \"contactNoteCreate\": \"<boolean>\",\n    \"contactNoteUpdate\": \"<boolean>\",\n    \"contactNoteDelete\": \"<boolean>\",\n    \"eventCreate\": \"<boolean>\",\n    \"eventUpdate\": \"<boolean>\",\n    \"eventDelete\": \"<boolean>\",\n    \"active\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.com/api/Webhook/:webhookId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Webhook",":webhookId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The webhook identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"webhookId"}]}},"response":[{"id":"d4d22765-ec28-4bd2-b24c-d55bdf78dfea","name":"OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"payloadUrl\": \"<string>\",\n    \"secret\": \"<string>\",\n    \"contactCreate\": \"<boolean>\",\n    \"contactUpdate\": \"<boolean>\",\n    \"giftCreate\": \"<boolean>\",\n    \"giftUpdate\": \"<boolean>\",\n    \"giftDelete\": \"<boolean>\",\n    \"projectCreate\": \"<boolean>\",\n    \"projectUpdate\": \"<boolean>\",\n    \"projectDelete\": \"<boolean>\",\n    \"formSubmission\": \"<boolean>\",\n    \"contactNoteCreate\": \"<boolean>\",\n    \"contactNoteUpdate\": \"<boolean>\",\n    \"contactNoteDelete\": \"<boolean>\",\n    \"eventCreate\": \"<boolean>\",\n    \"eventUpdate\": \"<boolean>\",\n    \"eventDelete\": \"<boolean>\",\n    \"active\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Webhook/:webhookId","host":["https://api.virtuoussoftware.com"],"path":["api","Webhook",":webhookId"],"variable":[{"key":"webhookId","value":"<integer>","description":"(Required) The webhook identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"payloadUrl\": \"<string>\",\n\t\"secret\": \"<string>\",\n\t\"contactCreate\": \"<boolean>\",\n\t\"contactUpdate\": \"<boolean>\",\n\t\"giftCreate\": \"<boolean>\",\n\t\"giftUpdate\": \"<boolean>\",\n\t\"giftDelete\": \"<boolean>\",\n\t\"projectCreate\": \"<boolean>\",\n\t\"projectUpdate\": \"<boolean>\",\n\t\"projectDelete\": \"<boolean>\",\n\t\"formSubmission\": \"<boolean>\",\n\t\"contactNoteCreate\": \"<boolean>\",\n\t\"contactNoteUpdate\": \"<boolean>\",\n\t\"contactNoteDelete\": \"<boolean>\",\n\t\"eventCreate\": \"<boolean>\",\n\t\"eventUpdate\": \"<boolean>\",\n\t\"eventDelete\": \"<boolean>\",\n\t\"active\": \"<boolean>\"\n}"},{"id":"5cd51b7a-d359-4d3d-9c0d-964deb8aad92","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"payloadUrl\": \"<string>\",\n    \"secret\": \"<string>\",\n    \"contactCreate\": \"<boolean>\",\n    \"contactUpdate\": \"<boolean>\",\n    \"giftCreate\": \"<boolean>\",\n    \"giftUpdate\": \"<boolean>\",\n    \"giftDelete\": \"<boolean>\",\n    \"projectCreate\": \"<boolean>\",\n    \"projectUpdate\": \"<boolean>\",\n    \"projectDelete\": \"<boolean>\",\n    \"formSubmission\": \"<boolean>\",\n    \"contactNoteCreate\": \"<boolean>\",\n    \"contactNoteUpdate\": \"<boolean>\",\n    \"contactNoteDelete\": \"<boolean>\",\n    \"eventCreate\": \"<boolean>\",\n    \"eventUpdate\": \"<boolean>\",\n    \"eventDelete\": \"<boolean>\",\n    \"active\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.virtuoussoftware.com/api/Webhook/:webhookId","host":["https://api.virtuoussoftware.com"],"path":["api","Webhook",":webhookId"],"variable":[{"key":"webhookId","value":"<integer>","description":"(Required) The webhook identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9a56ffb2-cd97-4b52-99b3-067c0fe0842e"},{"name":"Set the active state of a Webhook","id":"2ee75c65-99ae-4fa4-b599-d3b2dbd6fb4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://api.virtuoussoftware.com/api/Webhook/:webhookId/Active?active=<boolean>","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Webhook",":webhookId","Active"],"host":["https://api.virtuoussoftware.com"],"query":[{"description":{"content":"<p>(Required) The active value.</p>\n","type":"text/plain"},"key":"active","value":"<boolean>"}],"variable":[{"description":{"content":"<p>(Required) The webhook identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"webhookId"}]}},"response":[{"id":"de0d4c88-f7a8-42ec-94b9-1c8f915a2c79","name":"OK","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Webhook/:webhookId/Active?active=<boolean>","host":["https://api.virtuoussoftware.com"],"path":["api","Webhook",":webhookId","Active"],"query":[{"key":"active","value":"<boolean>"}],"variable":[{"key":"webhookId","value":"<integer>","description":"(Required) The webhook identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"id\": \"<integer>\",\n\t\"payloadUrl\": \"<string>\",\n\t\"secret\": \"<string>\",\n\t\"contactCreate\": \"<boolean>\",\n\t\"contactUpdate\": \"<boolean>\",\n\t\"giftCreate\": \"<boolean>\",\n\t\"giftUpdate\": \"<boolean>\",\n\t\"giftDelete\": \"<boolean>\",\n\t\"projectCreate\": \"<boolean>\",\n\t\"projectUpdate\": \"<boolean>\",\n\t\"projectDelete\": \"<boolean>\",\n\t\"formSubmission\": \"<boolean>\",\n\t\"contactNoteCreate\": \"<boolean>\",\n\t\"contactNoteUpdate\": \"<boolean>\",\n\t\"contactNoteDelete\": \"<boolean>\",\n\t\"eventCreate\": \"<boolean>\",\n\t\"eventUpdate\": \"<boolean>\",\n\t\"eventDelete\": \"<boolean>\",\n\t\"active\": \"<boolean>\"\n}"},{"id":"570b993a-4d72-4e13-a9fe-9f872ce9ef7b","name":"BadRequest","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Webhook/:webhookId/Active?active=<boolean>","host":["https://api.virtuoussoftware.com"],"path":["api","Webhook",":webhookId","Active"],"query":[{"key":"active","value":"<boolean>"}],"variable":[{"key":"webhookId","value":"<integer>","description":"(Required) The webhook identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"2ee75c65-99ae-4fa4-b599-d3b2dbd6fb4a"},{"name":"Delete a Webhook","id":"d3d82fae-0865-4893-aa59-5ca64273ddd5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.virtuoussoftware.com/api/Webhook/:webhookId","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}},"urlObject":{"path":["api","Webhook",":webhookId"],"host":["https://api.virtuoussoftware.com"],"query":[],"variable":[{"description":{"content":"<p>(Required) The webhook identifier.</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"webhookId"}]}},"response":[{"id":"3de6e264-7fa8-4006-acf1-f828ac6019c2","name":"OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Webhook/:webhookId","host":["https://api.virtuoussoftware.com"],"path":["api","Webhook",":webhookId"],"variable":[{"key":"webhookId","value":"<integer>","description":"(Required) The webhook identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true}],"cookie":[],"responseTime":null,"body":"\"<object>\""},{"id":"00e5555e-9d99-4178-99e3-2275a8990f99","name":"BadRequest","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.virtuoussoftware.com/api/Webhook/:webhookId","host":["https://api.virtuoussoftware.com"],"path":["api","Webhook",":webhookId"],"variable":[{"key":"webhookId","value":"<integer>","description":"(Required) The webhook identifier."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain","enabled":true}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d3d82fae-0865-4893-aa59-5ca64273ddd5"}],"id":"8c4a9ca5-2915-4d70-bef2-45821933d98b","description":"<p>Webhooks allow external services to be notified when certain events happen like an update to a Contact or a new Gift has been created.</p>\n","_postman_id":"8c4a9ca5-2915-4d70-bef2-45821933d98b","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}},{"name":"PenTest","item":[{"name":"MIME Type Sniffing","item":[{"name":"Campaign by ID","event":[{"listen":"test","script":{"id":"e3958b54-ee81-402a-ae1e-1b819b2ee44c","exec":["pm.test(\"X-Content-Type-Options header is present\", function () {\r","    pm.response.to.have.header(\"X-Content-Type-Options\");\r","});\r","\r","pm.test(\"X-Content-Type-Options header value is 'nosniff'\", function () {\r","    const header = pm.response.headers.get(\"X-Content-Type-Options\");\r","    pm.expect(header).to.equal(\"nosniff\");\r","});\r","\r","pm.test(\"Response status code is successful\", function () {\r","    pm.response.to.be.success;\r","});\r","\r","// Log all headers for debugging\r","console.log(\"Response Headers:\");\r","pm.response.headers.each(header => {\r","    console.log(`${header.key}: ${header.value}`);\r","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"d47eb230-6f09-46f8-a70e-35d06298463b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[],"url":"https://api.virtuoussoftware.comapi/Campaign/2","urlObject":{"path":["Campaign","2"],"host":["https://api.virtuoussoftware.comapi"],"query":[],"variable":[]}},"response":[],"_postman_id":"d47eb230-6f09-46f8-a70e-35d06298463b"},{"name":"Campaign Query","event":[{"listen":"test","script":{"id":"8f02412a-a96f-4fd1-964e-d545550ec804","exec":["pm.test(\"X-Content-Type-Options header is present\", function () {\r","    pm.response.to.have.header(\"X-Content-Type-Options\");\r","});\r","\r","pm.test(\"X-Content-Type-Options header value is 'nosniff'\", function () {\r","    const header = pm.response.headers.get(\"X-Content-Type-Options\");\r","    pm.expect(header).to.equal(\"nosniff\");\r","});\r","\r","pm.test(\"Response status code is successful\", function () {\r","    pm.response.to.be.success;\r","});\r","\r","// Log all headers for debugging\r","console.log(\"Response Headers:\");\r","pm.response.headers.each(header => {\r","    console.log(`${header.key}: ${header.value}`);\r","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"7103a780-0b54-49ee-a970-66be2cf26e87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{ \"skip\": 0, \"take\": 1 }","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.comapi/Campaign/Query","urlObject":{"path":["Campaign","Query"],"host":["https://api.virtuoussoftware.comapi"],"query":[],"variable":[]}},"response":[],"_postman_id":"7103a780-0b54-49ee-a970-66be2cf26e87"},{"name":"CustomField Search","event":[{"listen":"test","script":{"id":"8f02412a-a96f-4fd1-964e-d545550ec804","exec":["pm.test(\"X-Content-Type-Options header is present\", function () {\r","    pm.response.to.have.header(\"X-Content-Type-Options\");\r","});\r","\r","pm.test(\"X-Content-Type-Options header value is 'nosniff'\", function () {\r","    const header = pm.response.headers.get(\"X-Content-Type-Options\");\r","    pm.expect(header).to.equal(\"nosniff\");\r","});\r","\r","pm.test(\"Response status code is successful\", function () {\r","    pm.response.to.be.success;\r","});\r","\r","// Log all headers for debugging\r","console.log(\"Response Headers:\");\r","pm.response.headers.each(header => {\r","    console.log(`${header.key}: ${header.value}`);\r","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"2612299a-840f-45e0-b3f6-1cf6157f4be4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"search\": \"a\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.virtuoussoftware.comapi/CustomField/Search","urlObject":{"path":["CustomField","Search"],"host":["https://api.virtuoussoftware.comapi"],"query":[],"variable":[]}},"response":[],"_postman_id":"2612299a-840f-45e0-b3f6-1cf6157f4be4"},{"name":"Gift By Reference","event":[{"listen":"test","script":{"id":"8f02412a-a96f-4fd1-964e-d545550ec804","exec":["pm.test(\"X-Content-Type-Options header is present\", function () {\r","    pm.response.to.have.header(\"X-Content-Type-Options\");\r","});\r","\r","pm.test(\"X-Content-Type-Options header value is 'nosniff'\", function () {\r","    const header = pm.response.headers.get(\"X-Content-Type-Options\");\r","    pm.expect(header).to.equal(\"nosniff\");\r","});\r","\r","pm.test(\"Response status code is successful\", function () {\r","    pm.response.to.be.success;\r","});\r","\r","// Log all headers for debugging\r","console.log(\"Response Headers:\");\r","pm.response.headers.each(header => {\r","    console.log(`${header.key}: ${header.value}`);\r","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"77a192e5-81cc-4cd3-86b1-3a769b2925a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"GET","header":[],"url":"https://api.virtuoussoftware.comapi/Gift/ByReference/1","urlObject":{"path":["Gift","ByReference","1"],"host":["https://api.virtuoussoftware.comapi"],"query":[],"variable":[]}},"response":[],"_postman_id":"77a192e5-81cc-4cd3-86b1-3a769b2925a7"},{"name":"Contact Transaction","event":[{"listen":"test","script":{"id":"35eef9f2-e1d1-4921-8ba3-fe620a31bb84","exec":["pm.test(\"X-Content-Type-Options header is present\", function () {\r","    pm.response.to.have.header(\"X-Content-Type-Options\");\r","});\r","\r","pm.test(\"X-Content-Type-Options header value is 'nosniff'\", function () {\r","    const header = pm.response.headers.get(\"X-Content-Type-Options\");\r","    pm.expect(header).to.equal(\"nosniff\");\r","});\r","\r","pm.test(\"Response status code is successful\", function () {\r","    pm.response.to.be.success;\r","});\r","\r","// Log all headers for debugging\r","console.log(\"Response Headers:\");\r","pm.response.headers.each(header => {\r","    console.log(`${header.key}: ${header.value}`);\r","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"7de5d461-ea36-4e32-b7dc-2aaa1520e1c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json-patch+json","type":"text"}],"url":"https://api.virtuoussoftware.comapi/Contact/Transaction","urlObject":{"path":["Contact","Transaction"],"host":["https://api.virtuoussoftware.comapi"],"query":[],"variable":[]}},"response":[],"_postman_id":"7de5d461-ea36-4e32-b7dc-2aaa1520e1c0"},{"name":"Organization Switch","event":[{"listen":"test","script":{"id":"35eef9f2-e1d1-4921-8ba3-fe620a31bb84","exec":["pm.test(\"X-Content-Type-Options header is present\", function () {\r","    pm.response.to.have.header(\"X-Content-Type-Options\");\r","});\r","\r","pm.test(\"X-Content-Type-Options header value is 'nosniff'\", function () {\r","    const header = pm.response.headers.get(\"X-Content-Type-Options\");\r","    pm.expect(header).to.equal(\"nosniff\");\r","});\r","\r","// Log all headers for debugging\r","console.log(\"Response Headers:\");\r","pm.response.headers.each(header => {\r","    console.log(`${header.key}: ${header.value}`);\r","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"e9a02ae5-0698-431e-a0e2-6befa5db6fed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{token}}"},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json-patch+json","type":"text"}],"url":"https://api.virtuoussoftware.comapi/Organization/Switch","urlObject":{"path":["Organization","Switch"],"host":["https://api.virtuoussoftware.comapi"],"query":[],"variable":[]}},"response":[],"_postman_id":"e9a02ae5-0698-431e-a0e2-6befa5db6fed"}],"id":"e1a71933-3dc1-4dc4-9473-8a8212eb9bea","_postman_id":"e1a71933-3dc1-4dc4-9473-8a8212eb9bea","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}}],"id":"23697d56-9075-44d6-b578-5624a2cabaa0","_postman_id":"23697d56-9075-44d6-b578-5624a2cabaa0","description":"","auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":true,"source":{"_postman_id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","id":"aa0c66a4-0e87-428e-b56c-40e803949ed7","name":"Reference","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"token":"<token>"}},"event":[{"listen":"prerequest","script":{"id":"2bb41de6-e89b-4939-8681-305b91302f82","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"14659070-a04d-4329-9a41-7838d3a07213","type":"text/javascript","exec":[""]}}],"variable":[{"key":"baseUrl","value":"https://api.virtuoussoftware.com"}]}