# @vulog/aima-booking

```bash
npm i @vulog/aima-client @vulog/aima-core @vulog/aima-event
```

```javascript
import { getClient } from '@vulog/aima-client';
import { geteventbyType } from '@vulog/aima-event';

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

const response = await geteventbyType(client, 'USER_BOOKING_REQUEST');

```
