# @vulog/aima-promocode

```bash
npm i @vulog/aima-client @vulog/aima-promocode
```

```javascript
import { getClient } from '@vulog/aima-client';
import { getPromoCodeById } from '@vulog/aima-promocode';

const client = getClient({
    apiKey: '...',
    baseUrl: '...',
    clientId: '...',
    clientSecret: '...',
    fleetId: '...',
});

const response = await getPromoCodeById(client, 25);

```
