{"info":{"_postman_id":"125545ec-cd66-4e80-b9cf-3825ac786ed2","name":"RallyUp REST API v1","description":"<html><head></head><body><p>RallyUp's REST API version 1 provides two basic functionalities:</p>\n<ol>\n<li>Giving organizations easy access to their data in RallyUp to integrate with other data sources and data management software</li>\n<li>Giving partners the ability to integrate basic functionalities of RallyUp within their own software</li>\n</ol>\n<h1 id=\"authentication\">Authentication</h1>\n<p>API calls require an authorization token to be passed as a Bearer token in the header. These tokens expire in 7 days, and can be generated via a call to the /v1/token endpoint with your organizational API credentials. Organizational API credentials are issued to organizations on a case-by-case basis. Contact RallyUp staff at <a href=\"mailto:support@rallyup.com\">support@rallyup.com</a> with your organization's name and purpose for using the API to get started.</p>\n<h1 id=\"response\">Response</h1>\n<p>Responses contain four pieces of information: the <strong>Result</strong> object, an <strong>Ok</strong> status, <strong>Error</strong> information, and <strong>Metadata</strong>.</p>\n<p>The <strong>Result</strong> is the response object received from the API call.</p>\n<p><strong>Ok</strong> is a boolean that represents whether or not the call made was successfully processed.</p>\n<p><strong>Error</strong> gives the reason of the error if <strong>Ok</strong> is false.</p>\n<p><strong>Metadata</strong> will contain any warning or supplementary information about the API call.</p>\n<h1 id=\"pagination\">Pagination</h1>\n<p>Some of the endpoints below return paginated results. In this case, the results will contain a <strong>paginated object</strong>, containing the following information:\n<strong>Items</strong>, <strong>Count</strong>, <strong>PageIndex</strong>, <strong>PageSize</strong>, <strong>TotalCount</strong>, <strong>TotalPages</strong>, <strong>HasPreviousPage</strong>, <strong>HasNextPage</strong>.</p>\n<p><strong>Items</strong> is an array of objects returned with the API call.</p>\n<p><strong>Count</strong> is the number of results returned on the current page (i.e., the length of <strong>Items</strong>).</p>\n<p><strong>PageIndex</strong> is the page number of the current page.</p>\n<p><strong>PageSize</strong> is the maximum number of results per page.</p>\n<p><strong>TotalCount</strong> is the total number of results that match the request criteria (i.e., the sum of <strong>Count</strong> for all pages)</p>\n<p><strong>TotalPages</strong> is the total number of pages that contain results.</p>\n<p><strong>HasPreviousPage</strong>/<strong>HasNextPage</strong> are booleans that represents if there is a previous/next page.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication","slug":"authentication"},{"content":"Response","slug":"response"},{"content":"Pagination","slug":"pagination"}],"owner":"4028925","collectionId":"125545ec-cd66-4e80-b9cf-3825ac786ed2","publishedId":"RVu7ETje","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"22A8BF"},"publishDate":"2021-03-25T23:30:48.000Z"},"item":[{"name":"/v1/token","id":"0fa7c96c-63f7-4e5c-8e76-1bbef273dd5f","request":{"method":"POST","header":[{"key":"user-email","value":"{{RallyUp user's email}}","description":"<p>If specified, this user will be identified with the authorization token and set as the author of any API calls made with the token</p>\n"},{"key":"user-password","value":"{{RallyUp user's password}}","description":"<p>The password to the user's RallyUp account. Required if user-email is specified.</p>\n"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"password","description":"<p>Required grant_type for authorization</p>\n","type":"text"},{"key":"username","value":"{{Organization API Login}}","description":"<p>Your organization's login user name received from your organizational api credentials</p>\n","type":"text"},{"key":"password","value":"{{Organization API Secret}}","description":"<p>Your organization's api secret from your organizational api credentials. We recommend that this isn't hard-coded into your api calls when retrieving a new token.</p>\n","type":"text"}]},"url":"https://go.rallyup.com/v1/token","description":"<p>Retrieve an authorization token to be passed for authentication in other API calls</p>\n","urlObject":{"protocol":"https","path":["v1","token"],"host":["go","rallyup","com"],"query":[],"variable":[]}},"response":[{"id":"9b96060f-cd56-4b48-8f21-f14829668976","name":"Default","originalRequest":{"method":"POST","header":[{"key":"user-email","value":"USER_EMAIL"},{"key":"user-password","value":"USER_PASSWORD"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"password","description":"Required grant_type for authorization","type":"text"},{"key":"username","value":"XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX","description":"Your organization's login user name received from your organizational api credentials","type":"text"},{"key":"password","value":"XXXXXXXXXXXXXXXXXXXXXXXXXXXXX","type":"text"}]},"url":"https://go.rallyup.com/v1/token"},"code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":""}],"_postman_id":"0fa7c96c-63f7-4e5c-8e76-1bbef273dd5f"},{"name":"/v1/api/version","id":"2f1fb8f2-bac5-4a24-841f-7ceb5b471773","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://go.rallyup.com/v1/api/version","description":"<p>Check the authorization and version of the API</p>\n","urlObject":{"protocol":"https","path":["v1","api","version"],"host":["go","rallyup","com"],"query":[],"variable":[]}},"response":[{"id":"f7ae5a32-fd97-404c-8f5e-dc3f296f0e28","name":"Example","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authorization token}}","description":"Required valid authorization token"}],"body":{"mode":"raw","raw":""},"url":"https://go.rallyup.com/v1/api/version"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"Result\": {\n        \"Version\": \"1.0.0\",\n        \"ReleasedAt\": \"2018/03/13 00:00:00\",\n        \"IdentityType\": \"RallyUpIdentity\",\n        \"UserName\": \"ab4333e7-648b-4294-a45c-baf5fd24edf9\",\n        \"AuthenticationType\": \"ExternalBearer\",\n        \"IsAuthenticated\": true,\n        \"Name\": \"ab4333e7-648b-4294-a45c-baf5fd24edf9\",\n        \"Roles\": [\n            \"ApiUser\"\n        ]\n    },\n    \"Ok\": true,\n    \"Error\": null,\n    \"Metadata\": {}\n}"}],"_postman_id":"2f1fb8f2-bac5-4a24-841f-7ceb5b471773"},{"name":"/v1/api/finduser/{user_email}","id":"f03d6bd6-dd82-4441-a624-4941059ca4eb","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://go.rallyup.com/v1/api/finduser/{user_email}","description":"<p>Find and retrieve information on a RallyUp user by their email address</p>\n","urlObject":{"protocol":"https","path":["v1","api","finduser","{user_email}"],"host":["go","rallyup","com"],"query":[],"variable":[]}},"response":[{"id":"762dbfb8-f190-407b-ae51-d3bda32a6c84","name":"Example","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authorization token}}"}],"body":{"mode":"raw","raw":""},"url":"https://go.rallyup.com/v1/api/finduser/jimmy@rallyup.com"},"code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"Result\": {\n        \"Addresses\": null,\n        \"CreatedDate\": \"2017/08/08 17:47:33\",\n        \"UpdatedDate\": \"2018/03/19 21:23:46\",\n        \"IsInactive\": false,\n        \"HasPassword\": true,\n        \"UserId\": 4968,\n        \"Email\": \"jimmy@rallyup.com\",\n        \"FirstName\": \"Jimmy\",\n        \"LastName\": \"Yao\",\n        \"Phone\": null\n    },\n    \"Ok\": true,\n    \"Error\": null,\n    \"Metadata\": {}\n}"}],"_postman_id":"f03d6bd6-dd82-4441-a624-4941059ca4eb"},{"name":"/v1/api/createuser","id":"63cc6cb0-538b-4f13-a394-0ce25dd932d4","request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"Email","value":"{{User Email}}","description":"<p>The email used to login and identify the user. Must be formatted as a valid email address.</p>\n","type":"text"},{"key":"FirstName","value":"{{First Name}}","type":"text","description":"<p>The first name of the user. Cannot exceed 50 characters.</p>\n"},{"key":"LastName","value":"{{Last Name}}","type":"text","description":"<p>The last name of the user. Cannot exceed 50 characters.</p>\n"},{"key":"Password","value":"{{Password}}","type":"text","description":"<p>The password for the user. Must be at least 6 characters long.</p>\n"},{"key":"Phone","value":"{{Phone Number}}","type":"text","description":"<p>Optional. Must be a 10 character string containing only numerical digits.</p>\n"}]},"url":"https://go.rallyup.com/v1/api/createuser","description":"<p>Create a new user in RallyUp</p>\n","urlObject":{"protocol":"https","path":["v1","api","createuser"],"host":["go","rallyup","com"],"query":[],"variable":[]}},"response":[{"id":"aa601148-1c61-4a02-b306-c6588f37609c","name":"Example","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authorization token}}","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Email","value":"user@rallyup.com","type":"text"},{"key":"Phone","value":"5205555555","type":"text"},{"key":"FirstName","value":"UserFirstName","type":"text"},{"key":"LastName","value":"UserLastName","type":"text"},{"key":"Password","value":"password","type":"text"}]},"url":"https://go.rallyup.com/v1/api/createuser"},"code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"Result\": {\n        \"UserId\": 9703,\n        \"Email\": \"user@rallyup.com\",\n        \"FirstName\": \"UserFirstName\",\n        \"LastName\": \"UserLastName\",\n        \"Phone\": \"5205555555\"\n    },\n    \"Ok\": true,\n    \"Error\": null,\n    \"Metadata\": {}\n}"}],"_postman_id":"63cc6cb0-538b-4f13-a394-0ce25dd932d4"},{"name":"/v1/api/campaign/{campaignId}","id":"335cd971-6fec-43eb-80c2-0e3cd88e4be9","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://go.rallyup.com/v1/api/campaign/{campaignId}","description":"<p>Retreieve a campaign in RallyUp by its ID</p>\n","urlObject":{"protocol":"https","path":["v1","api","campaign","{campaignId}"],"host":["go","rallyup","com"],"query":[],"variable":[]}},"response":[{"id":"1e6bc187-5f1e-4b0f-ab3c-cbbb39383450","name":"Example","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authorization token}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://go.rallyup.com/v1/api/campaign/1144"},"code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"Result\": {\n        \"Id\": 1144,\n        \"Name\": \"Sale for API\",\n        \"Url\": \"https://go.rallyup.com/eae009\",\n        \"CampaignSetupUrl\": \"https://go.rallyup.com/Campaigns/Setup/eae009\",\n        \"CampaignStatus\": \"Started\",\n        \"StartDateUtc\": \"2018/03/27 17:07:44\",\n        \"EndDateUtc\": \"2018/09/28 07:59:00\",\n        \"AmountRaised\": 100,\n        \"AmountRaisedInPeriod\": 0,\n        \"AmountGoal\": 100,\n        \"GoalPeriod\": null,\n        \"TotalViews\": 1,\n        \"TotalSupporters\": 1\n    },\n    \"Ok\": true,\n    \"Error\": null,\n    \"Metadata\": {}\n}"}],"_postman_id":"335cd971-6fec-43eb-80c2-0e3cd88e4be9"},{"name":"/v1/api/listcampaigns","id":"c86ae57c-de71-47e6-b8fc-4c00253ab3b5","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://go.rallyup.com/v1/api/listcampaigns","description":"<p>Retrieve a list of all campaigns that your organization is running in RallyUp</p>\n","urlObject":{"protocol":"https","path":["v1","api","listcampaigns"],"host":["go","rallyup","com"],"query":[],"variable":[]}},"response":[{"id":"316c22ff-2e15-4a88-a1ec-eee49df3ec49","name":"Example","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authorization token}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://go.rallyup.com/v1/api/listcampaigns"},"code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"Result\": {\n        \"Items\": [\n            {\n                \"Id\": 1144,\n                \"Name\": \"Sale for API\",\n                \"Url\": \"https://go.rallyup.com/eae009\",\n                \"CampaignSetupUrl\": \"https://go.rallyup.com/Campaigns/Setup/eae009\",\n                \"CampaignStatus\": \"Started\",\n                \"StartDateUtc\": \"2018/03/27 17:07:44\",\n                \"EndDateUtc\": \"2018/09/28 07:59:00\",\n                \"AmountRaised\": 100,\n                \"AmountRaisedInPeriod\": 0,\n                \"AmountGoal\": 100,\n                \"GoalPeriod\": null,\n                \"TotalViews\": 1,\n                \"TotalSupporters\": 1\n            },\n            ...\n            ,\n            {\n                \"Id\": 1132,\n                \"Name\": \"Sweepstakes for API\",\n                \"Url\": \"https://go.rallyup.com/7ebd82\",\n                \"CampaignSetupUrl\": \"https://go.rallyup.com/7ebd82\",\n                \"CampaignStatus\": \"Started\",\n                \"StartDateUtc\": \"2018/03/21 18:29:15\",\n                \"EndDateUtc\": \"2018/09/27 07:59:00\",\n                \"AmountRaised\": 342,\n                \"AmountRaisedInPeriod\": 0,\n                \"AmountGoal\": 123123,\n                \"GoalPeriod\": null,\n                \"TotalViews\": 1,\n                \"TotalSupporters\": 1\n            }\n        ],\n        \"Count\": 8,\n        \"PageIndex\": 1,\n        \"PageSize\": 100,\n        \"TotalCount\": 8,\n        \"TotalPages\": 1,\n        \"HasPreviousPage\": false,\n        \"HasNextPage\": false\n    },\n    \"Ok\": true,\n    \"Error\": null,\n    \"Metadata\": {}\n}"}],"_postman_id":"c86ae57c-de71-47e6-b8fc-4c00253ab3b5"},{"name":"/v1/api/createcampaign","id":"e6325d4b-6862-4628-9cab-d38dca342887","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authorization token}}","description":"<p>The authorization token must have user-email and user-password set in order to be used to create a campaign (see /v1/token). The user set in the authorization token will be set as the organizer of the newly created campaign.</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://go.rallyup.com/v1/api/createcampaign","description":"<p>Create a campaign in RallyUp</p>\n","urlObject":{"protocol":"https","path":["v1","api","createcampaign"],"host":["go","rallyup","com"],"query":[],"variable":[]}},"response":[{"id":"a6bf31d0-1206-4157-b2e9-b2c1fab1bcef","name":"Example","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authorization token}}"}],"body":{"mode":"raw","raw":""},"url":"https://go.rallyup.com/v1/api/createcampaign"},"code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"Result\": {\n        \"Id\": 1145,\n        \"Name\": \"Untitled\",\n        \"Url\": \"https://go.rallyup.com/f745b4\",\n        \"CampaignSetupUrl\": \"https://go.rallyup.com/Campaigns/Setup/f745b4\",\n        \"CampaignStatus\": \"Draft\",\n        \"StartDateUtc\": null,\n        \"EndDateUtc\": null,\n        \"AmountRaised\": 0,\n        \"AmountRaisedInPeriod\": 0,\n        \"AmountGoal\": null,\n        \"GoalPeriod\": null,\n        \"TotalViews\": 0,\n        \"TotalSupporters\": 0\n    },\n    \"Ok\": true,\n    \"Error\": null,\n    \"Metadata\": {}\n}"}],"_postman_id":"e6325d4b-6862-4628-9cab-d38dca342887"},{"name":"/v1/api/listdonations","id":"87cc5d1e-d08e-4cee-a334-b6c82c2c83d0","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://go.rallyup.com/v1/api/listdonations?campaignid={{Campaign ID}}&startDate={{Start Date}}&endDate={{End Date}}","description":"<p>Retrieve a paginated list of all donations made to your organization</p>\n","urlObject":{"protocol":"https","path":["v1","api","listdonations"],"host":["go","rallyup","com"],"query":[{"description":{"content":"<p>The ID of the campaign to retrieve donations from</p>\n","type":"text/plain"},"key":"campaignid","value":"{{Campaign ID}}"},{"description":{"content":"<p>Optional. If a date is specified here, only donations made on or after this date will be returned. Format: \"YYYY-MM-DD\"</p>\n","type":"text/plain"},"key":"startDate","value":"{{Start Date}}"},{"description":{"content":"<p>Optional. If a date is specified here, only donations made on or before this date will be returned. Format: \"YYYY-MM-DD\"</p>\n","type":"text/plain"},"key":"endDate","value":"{{End Date}}"}],"variable":[]}},"response":[{"id":"a2e3c704-3c6b-4609-8f78-38d02ed48c6d","name":"Example","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{authorization token}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://go.rallyup.com/v1/api/listdonations?campaignid=1144&startDate=2017-03-01&endDate=2017-03-31","protocol":"https","host":["go","rallyup","com"],"path":["v1","api","listdonations"],"query":[{"key":"campaignid","value":"1144","description":"The ID of the campaign to retrieve donations from"},{"key":"startDate","value":"2017-03-01"},{"key":"endDate","value":"2017-03-31"}]}},"code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"Result\": {\n        \"Items\": [\n            {\n                \"CampaignId\": 1144,\n                \"IsRecurring\": false,\n                \"CampaignName\": \"Sale for API\",\n                \"CampaignType\": \"Sale\",\n                \"Status\": \"Paid\",\n                \"PaymentType\": \"CreditCard\",\n                \"CreditCardLast4\": \"4242\",\n                \"CreditCardType\": \"Visa\",\n                \"Source\": \"RallyUp\",\n                \"FundCode\": null,\n                \"AgreementInfo\": \"not provided\",\n                \"SpecialInstructions\": null,\n                \"Causes\": [],\n                \"CustomFields\": [],\n                \"Items\": [\n                    {\n                        \"ItemId\": 47,\n                        \"Name\": \"Item Number 1\",\n                        \"Quantity\": 4,\n                        \"Type\": \"SaleItem\",\n                        \"Price\": 15\n                    },\n                    {\n                        \"ItemId\": 48,\n                        \"Name\": \"Item Number 2\",\n                        \"Quantity\": 2,\n                        \"Type\": \"SaleItem\",\n                        \"Price\": 20\n                    }\n                ],\n                \"RecurrencePeriod\": null,\n                \"IsRefunded\": false,\n                \"RefundReason\": null,\n                \"RefundDate\": null,\n                \"RecurringEndDate\": null,\n                \"TransactionId\": 989,\n                \"TransactionCreatedDate\": \"2018/03/27 17:11:45\",\n                \"TransactionUpdatedDate\": \"2018/03/27 17:11:47\",\n                \"TransactionGrossAmount\": \"$101.00\",\n                \"TransactionNetAmount\": \"$93.77\",\n                \"MailingAddress\": {\n                    \"MailingFirstName\": \"Jimmy\",\n                    \"MailingLastName\": \"Yao\",\n                    \"Address1\": \"7650 E. Broadway Blvd\",\n                    \"Address2\": \"Suite 203\",\n                    \"City\": \"Tucson\",\n                    \"State\": \"AZ\",\n                    \"Country\": \"United States\",\n                    \"ZipCode\": \"85710\",\n                    \"Phone\": \"5205555555\"\n                },\n                \"Members\": [],\n                \"FeesPaidBySupporters\": null,\n                \"Comment\": null,\n                \"RecievedEmailCampaignUpdates\": true,\n                \"DonorId\": 3,\n                \"DonorEmail\": \"support@rallyup.com\",\n                \"DonorLastName\": \"Yao\",\n                \"DonorFirstName\": \"Jimmy\"\n            }\n        ],\n        \"Count\": 1,\n        \"PageIndex\": 1,\n        \"PageSize\": 100,\n        \"TotalCount\": 1,\n        \"TotalPages\": 1,\n        \"HasPreviousPage\": false,\n        \"HasNextPage\": false\n    },\n    \"Ok\": true,\n    \"Error\": null,\n    \"Metadata\": {}\n}"}],"_postman_id":"87cc5d1e-d08e-4cee-a334-b6c82c2c83d0"},{"name":"/v1/api/createorganization","id":"3f03a959-53aa-4458-8cb6-ddd5445886cb","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Email","value":"{{Email Address}}","type":"text","description":"<p>Email address of the user to be made an administrator and primary contact for this organization. If the email does not belong to a RallyUp user account, a user will be created with specified email address.</p>\n<p>Must be formatted as a valid email address.</p>\n"},{"key":"Name","value":"{{Organization Name}}","type":"text","description":"<p>The name of the organization. Cannot exceed 255 characters. </p>\n"},{"key":"isTaxExempt","value":"true/false","description":"<p>Set this to be true if the organization is a tax-exempt 501(c)(3) organization. Set this to be false otherwise.</p>\n","type":"text"},{"key":"Ein","value":"{{Employer Identification Number}}","type":"text","description":"<p>The Employer Idenficiation Number for the organization. If the organization is Tax-Exempt, then this is required for verification purposes. Must be a 9 character string containing only numerical digits. </p>\n"},{"key":"City","value":"{{City}}","type":"text","description":"<p>The city of the organization. Cannot exceed 255 characters.</p>\n"},{"key":"CountryCode","value":"{{2-Letter Country Code}}","type":"text","description":"<p>The two-letter country code for the organization (i.e., US, CA, etc). Must be a valid two-letter country code.</p>\n"},{"key":"Phone","value":"{{Phone Number}}","type":"text","description":"<p>The phone number for the organization. Must be a 10 character string containing only numerical digits.</p>\n"},{"key":"ZipCode","value":"{{Zip Code}}","type":"text","description":"<p>The zip-code for the organization. Cannot exceed 25 characters.</p>\n"},{"key":"StateCode","value":"{{2-Letter State/Regional Code}}","type":"text","description":"<p>The two-letter state/regional code for the organization. Only required for US and Canadian organizations.</p>\n"},{"key":"Address1","value":"{{Address Line 1}}","type":"text","description":"<p>The address of the organization. Cannot exceed 255 characters.</p>\n"},{"key":"Address2","value":"{{Address Line 2}}","type":"text","description":"<p>Optional. The second line for the address of the organization. Cannot exceed 255 characters.</p>\n"}]},"url":"https://go.rallyup.com/v1/api/createorganization","description":"<p>Create an organization in Rallyup</p>\n","urlObject":{"protocol":"https","path":["v1","api","createorganization"],"host":["go","rallyup","com"],"query":[],"variable":[]}},"response":[{"id":"2c4dd092-a911-43ee-8069-0ba9a665dbf6","name":"Example","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{authorization token}}"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"Email","value":"jimmy@rallyup.com","type":"text","description":"Email address of the user to be made an administrator and primary contact for this organization. If the email does not belong to a RallyUp user account, a user will be created with specified email address.\n\nMust be formatted as a valid email address."},{"key":"Name","value":"Example Organization","type":"text","description":"The name of the organization. Cannot exceed 255 characters. "},{"key":"isTaxExempt","value":"true","type":"text","description":"Set this to be true if the organization is a tax-exempt 501(c)(3) organization. Set this to be false otherwise."},{"key":"Ein","value":"123456780","type":"text","description":"The Employer Idenficiation Number for the organization. If the organization is Tax-Exempt, then this is required for verification purposes."},{"key":"City","value":"Tucson","type":"text","description":"The city of the organization. Cannot exceed 255 characters."},{"key":"CountryCode","value":"US","type":"text","description":"The two-letter country code for the organization (i.e., US, CA, etc). Must be a valid two-letter country code."},{"key":"Phone","value":"5555555555","type":"text","description":"The phone number for the organization. Must be a 10 character string containing only numerical digits."},{"key":"ZipCode","value":"85710","type":"text","description":"The zip-code for the organization. Cannot exceed 25 characters."},{"key":"StateCode","value":"AZ","type":"text","description":"The two-letter state/regional code for the organization. Only required for US and Canadian organizations."},{"key":"Address1","value":"7650 E. Broadway Blvd","type":"text","description":"The address of the organization. Cannot exceed 255 characters."},{"key":"Address2","value":"Suite 203","type":"text","description":"Optional. The second line for the address of the organization. Cannot exceed 255 characters."}]},"url":"https://go.rallyup.com/v1/api/createorganization"},"code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"Result\": {\n        \"Id\": 1051713,\n        \"Ein\": \"123456780\",\n        \"Name\": \"Example Organization\",\n        \"CommonName\": \"Example Organization\",\n        \"Email\": \"jimmy@rallyup.com\",\n        \"Url\": \"https://go.rallyupintegration.com/Organization/Home/75c32c\",\n        \"IsTaxExempt\": true,\n        \"Address\": {\n            \"AddressLine1\": \"7650 E. Broadway Blvd\",\n            \"AddressLine2\": \"Suite 203\",\n            \"City\": \"Tucson\",\n            \"State\": \"AZ\",\n            \"Country\": \"US\",\n            \"ZipCode\": \"85710\",\n            \"Phone\": \"5555555555\"\n        }\n    },\n    \"Ok\": true,\n    \"Error\": null,\n    \"Metadata\": {}\n}"}],"_postman_id":"3f03a959-53aa-4458-8cb6-ddd5445886cb"}]}