AgentUserAuthorizations
Returns the user authorizations for which the user specified by userId is the agent user.
The cmdlet will use the DocuSign API to process WHERE clause conditions built with the following column and operator. The rest of the filter is executed client side within the cmdlet.
- Permission supports the '=' operator.
- Email supports the '=' operator.
- Name supports the '=' operator.
- UserId supports the '=' operator.
- ActiveOnly supports the '=' operator.
- IncludeClosedUsers supports the '=' operator.
For example, the following queries are processed server side:
SELECT * FROM AgentUserAuthorizations WHERE UserId = 'b3367191-5269-458b-bb21-c177a10b6d25'
Columns
| Name | Type | References | Description |
| AuthorizationId [KEY] | String | The ID of the user authorization. | |
| Created | Datetime | The UTC DateTime when the workspace user authorization was created. | |
| CreatedBy | String | The name and email of the user who created the authorization. | |
| EndDate | Datetime | The UTC DateTime at which the authorization will expire. | |
| Modified | Datetime | The UTC DateTime when the workspace user authorization was last updated. | |
| ModifiedBy | String | The name and email of the user who created the authorization. | |
| Permission | String | The permission level to grant the agent. Valid values are : Send, Manage, Sign, Edit | |
| AccountId | String | The account ID. | |
| String | The email address of the authorization user. | ||
| Name | String | The name of the authorization user. | |
| UserId | String | The ID of the authorization user. | |
| StartDate | Datetime | The UTC DateTime at which the authorization will start. |
Pseudo-Columns
Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
| Name | Type | Description | |
| ActiveOnly | Boolean | When true, only active users are returned. The default value is false. | |
| IncludeClosedUsers | Boolean | When true, returns active and scheduled authorizations of closed users. The default value is true. This value is only applied when active_only is false. |