Last active
November 21, 2017 03:21
-
-
Save beaucharman/c63f478eca70b2d890fca693eae75de5 to your computer and use it in GitHub Desktop.
This file contains 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
// Portal_Teams.addTeamMember.request.js | |
{ | |
... | |
data: { | |
ClassName: 'Platform_Teams', | |
MethodName: 'addTeamMember', | |
Parameter: { | |
name: 'Name', | |
practitionerId: '0050k000000FtmGAAS', | |
clients: [ // Group and all it's entities | |
{ | |
id: '001N000000WeikW', | |
isAdmin: 'true', | |
role: 'engagementLead' | |
}, | |
{ | |
... | |
} | |
] | |
} | |
} | |
} | |
// Portal_Teams.addTeamMember.response.js | |
{ | |
... | |
result: { | |
isSuccess: true, | |
errors:[], | |
name: 'Name', | |
practitionerId: '0050k000000FtmGAAS', | |
clients: [ // Group and all it's entities | |
{ | |
id: '001N000000WeikW', | |
isAdmin: 'true', | |
role: 'engagementLead' | |
}, | |
{ | |
... | |
} | |
] | |
} | |
} |
This file contains 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
// Portal_Teams.updateTeamMember.request.js | |
{ | |
... | |
data: { | |
ClassName: 'Platform_Teams', | |
MethodName: 'updateTeamMember', | |
Parameter: { | |
name: 'Name', | |
practitionerId: '0050k000000FtmGAAS', | |
clients: [ // Group and all it's entities | |
{ | |
id: '001N000000WeikW', | |
isAdmin: 'true', | |
role: 'engagementLead' | |
}, | |
{ | |
... | |
} | |
] | |
} | |
} | |
} | |
// Portal_Teams.updateTeamMember.response.js | |
{ | |
... | |
result: { | |
isSuccess: true, | |
errors:[], | |
name: 'Name', | |
practitionerId: '0050k000000FtmGAAS', | |
clients: [ // Group and all it's entities | |
{ | |
id: '001N000000WeikW', | |
isAdmin: 'true', | |
role: 'engagementLead' | |
}, | |
{ | |
... | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment