InvitationManagement Class Reference
Inherits from | DefaultConfiguration : NSObject |
---|---|
Declared in | InvitationManagement.h |
– getListOfInvitation
Get a list of invitations send to specific user.
- (CloudResponse *)getListOfInvitation
Return Value
For async model, return CloudResponse which wraps true if the request of REST call is valid; otherwise false. The actual result from the REST call is return asynchronously as part HttpResponseDelegatee of DefaultConfiguration. For synch model, return CloudResponse which wraps HTTP return code and response.
Declared In
InvitationManagement.h
– getInvitationListSendToSpecificUser:
Get the details about invitations send to specific user.
- (CloudResponse *)getInvitationListSendToSpecificUser:(NSString *)emailId
Parameters
emailId |
The email that identifies the user |
---|
Return Value
For async model, return CloudResponse which wraps true if the request of REST call is valid; otherwise false. The actual result from the REST call is return asynchronously as part HttpResponseDelegatee of DefaultConfiguration. For synch model, return CloudResponse which wraps HTTP return code and response.
Declared In
InvitationManagement.h
– deleteInvitationsTo:
Delete invitations to an account for a specific user
- (CloudResponse *)deleteInvitationsTo:(NSString *)emailId
Parameters
emailId |
identifier for the user |
---|
Return Value
For async model, return CloudResponse which wraps true if the request of REST call is valid; otherwise false. The actual result from the REST call is return asynchronously as part HttpResponseDelegatee of DefaultConfiguration. For synch model, return CloudResponse which wraps HTTP return code and response. @throws JSONException
Declared In
InvitationManagement.h
– createInvitationTo:
Create an invitation to send out to the user
- (CloudResponse *)createInvitationTo:(NSString *)emailId
Parameters
emailId |
The email of the user to be invited |
---|
Return Value
For async model, return CloudResponse which wraps true if the request of REST call is valid; otherwise false. The actual result from the REST call is return asynchronously as part HttpResponseDelegatee of DefaultConfiguration. For synch model, return CloudResponse which wraps HTTP return code and response. @throws JSONException
Declared In
InvitationManagement.h