> For the complete documentation index, see [llms.txt](https://help.sdocs.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.sdocs.com/sdocs/administration/user-management/dynamically-assign-an-s-docs-license-to-the-current-user.md).

# Dynamically Assign an S-Docs License to the Current User

Use Case: This is useful in an org that has a ton of users. You can create a custom VF page (name it something like `SDGetLicense`) that a user can visit and click a button on to be assigned an S-Docs License. This self-service option eliminates the need for admins to manually assign a ton of licenses to specific users.

{% code title="SDAssignLicenseController.cls" %}

```apex
public class SDAssignLicenseController {
   public String statusMsg {get;set;}
   public void assignLicense() {
       Id sdocPkgId = [SELECT Id FROM PackageLicense WHERE NameSpacePrefix='SDOC' AND Status='Active'].Id;
       String userId = UserInfo.getUserId();
       List<UserPackageLicense> existingUPL = [SELECT Id FROM UserPackageLicense WHERE PackageLicenseId=:sdocPkgId AND UserId=:userId];
       if (!existingUPL.isEmpty()) {
           statusMsg = 'User already has an S-Docs license.';
           return;
       }
       insert new UserPackageLicense(PackageLicenseId=sdocPkgId, UserId=userId);
       statusMsg = 'Successfully assigned user S-Docs license.';
   }
}
```

{% endcode %}

{% code title="SDGetLicense.page (Visualforce)" %}

```html
<apex:page controller="SDAssignLicenseController">
   <apex:form id="form">
       <apex:commandButton value="Get S-Docs License" action="{!assignLicense}" rendered="{!statusMsg == null}" reRender="form" />
       {!statusMsg}
   </apex:form>
</apex:page>
```

{% endcode %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://help.sdocs.com/sdocs/administration/user-management/dynamically-assign-an-s-docs-license-to-the-current-user.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
