(self, requestString)
| 88 | return AdvancedDataDirectory(self, dataUrl) |
| 89 | |
| 90 | def create_user(self, requestString): |
| 91 | url = "/v1/users" |
| 92 | response = self.postJsonHelper(url, input_object=requestString) |
| 93 | return response |
| 94 | |
| 95 | def get_org_types(self): |
| 96 | url = "/v1/organization/types" |