You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Details on the various actions that can be performed on the
Instance Org Invite resource, including the expected
parameters and the potential responses.
varparams={instanceId: myInstanceId,orgId: myOrgId,inviteId: myInviteId};// with callbacksclient.instanceOrgInvite.delete(params,function(err,result){if(err){returnconsole.error(err);}console.log(result);});// with promisesclient.instanceOrgInvite.delete(params).then(console.log).catch(console.error);
Authentication
The client must be configured with a valid api access token to call this
action. The token must include at least one of the following scopes:
all.Instance, all.User, instanceOrgInvite.*, or instanceOrgInvite.delete.
Error if instance, organization or invite was not found
Get
Returns an organization invite
varparams={instanceId: myInstanceId,orgId: myOrgId,inviteId: myInviteId};// with callbacksclient.instanceOrgInvite.get(params,function(err,result){if(err){returnconsole.error(err);}console.log(result);});// with promisesclient.instanceOrgInvite.get(params).then(console.log).catch(console.error);
Authentication
The client must be configured with a valid api access token to call this
action. The token must include at least one of the following scopes:
all.Instance, all.Instance.read, all.User, all.User.read, instanceOrgInvite.*, or instanceOrgInvite.get.
Error if instance, organization, or invite was not found
Resend Invite
Resend an organization invite with modified role info
varparams={instanceId: myInstanceId,orgId: myOrgId,inviteId: myInviteId,roleInfo: myRoleInfo};// with callbacksclient.instanceOrgInvite.resendInvite(params,function(err,result){if(err){returnconsole.error(err);}console.log(result);});// with promisesclient.instanceOrgInvite.resendInvite(params).then(console.log).catch(console.error);
Authentication
The client must be configured with a valid api access token to call this
action. The token must include at least one of the following scopes:
all.Instance, all.User, instanceOrgInvite.*, or instanceOrgInvite.resendInvite.