> ## Documentation Index
> Fetch the complete documentation index at: https://minestorev3-api.ci.batlify.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Staff

> Get store staff

## Example of usage

```ts theme={null}
import { staff } from '@batlify/mscms-api'

async function staffData(username: string) {
    await staff.get()
        .then((result) => {

            // Returns staff data (members, ...)
            console.log(result)
        })
        .catch((e) => {

            // Getting staff data failed
            console.log("Oops! Something went wrong :/", e)
        })
}
```
