Skip to content

Instantly share code, notes, and snippets.

@danlopez
Last active March 14, 2016 14:42
Show Gist options
  • Save danlopez/ddd7883ab16896fcc3c1 to your computer and use it in GitHub Desktop.
Save danlopez/ddd7883ab16896fcc3c1 to your computer and use it in GitHub Desktop.
/*
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