> For the complete documentation index, see [llms.txt](https://docs.proofofposition.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.proofofposition.xyz/reference/employee-access-card.md).

# Employee Access Card

The following assumes you have installed the required interface package and imported the working contract into your codebase.

### addToMyEmployer

This `external` function allows verified employers to onboard new employees by granting the their pre-configured `ERC-1155` Access Card.

```solidity
uint256 _tokenId = employerSft.addToMyEmployer(_employee);
```

### removeFromMyEmployer

A verified employer can, at any time, off-board an employee in their organisation. This will subsequently burn the `ERC-1155`, thus revoking ownership.

```solidity
employerSft.removeFromMyEmployer(_newEmployerWallet);
```
