Last active
March 14, 2016 14:42
-
-
Save danlopez/ddd7883ab16896fcc3c1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
POST /organizations/<AtiOrgId>/sub-organizations | |
*/ | |
// Headers | |
Authentication: Bearer <accessToken> // Required for all OAuth Requests | |
// Request Params | |
{ | |
"isActive": true, | |
"name": "Duke University", // String | |
"allowMembershipViaIntegration": true | |
} | |
// Response | |
{ | |
"id": 1234, // Numeric | |
"isActive": true, | |
"name": "Duke University", | |
"description": "", | |
"logoImage": null, | |
"whiteListedEmailDomains": [], | |
"allowSubOrganizations": false, | |
"allowMembershipViaIntegration": true, | |
"allowedUploaders": ["MOBILE_RECORDER", "DESKTOP_RECORDER", "FILE_UPLOADER"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment