GetInvitedUserById
Retrieve a single pending user record through its Id. A pending user is a user that has not yet accepted invitation. Requires permissions: Access User Management Api and Access Users.
Execute
Sample EXECUTE GetInvitedUserById UserId='[email protected]'
Input
Name | Type | Required | Description |
UserId | String | True | The user id in the form of an email address. |
Result Set Columns
Name | Type | Description |
UserId | String | The user id in the form of an email address. |
Id | Integer | The user identifier. |
EmailAddress | String | The user's email address. |
FirstName | String | The user's first name. |
LastName | String | The user's last name. |
SubscriptionId | String | The subscription id. |
Status | String | The user status. |
CreatedAt | Datetime | The date and time when the user login was created. |
UpdatedAt | Datetime | The date and time when the user login was last updated. |
ExpiresAt | Datetime | The date and time when the user login expires. |
Success | Boolean | Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details. |
Details | String | Details of execution failure. NULL if success=true. |