@ovh-api-us/new-account

Add typing to to ovh api new-account

Usage no npm install needed!

<script type="module">
  import ovhApiUsNewAccount from 'https://cdn.skypack.dev/@ovh-api-us/new-account';
</script>

README

OVHCloud API client for new-account region USA

This module contains all typing needed to use OvhCloud new-account APIs, with hi-level IntelliSense / Code Completion

NPM Version

Setup

With npm:

npm install --save @ovh-api/api
npm install --save @ovh-api-us/me
npm install --save @ovh-api-us/new-account
... Add all APIs you needs

Usage

import OvhEngine from '@ovh-api/api';
import apiMe from '@ovh-api-us/me';
import apiNewAccount from '@ovh-api-us/new-account';

const ovhEngine = new OvhEngine({ 
    certCache: './cert-cache.json', // optional cache certificat on disk.
    accessRules: 'GET /newAccount, GET /newAccount/*, GET /me', // optional limit the requested privileges.
});

const api = {
    me: apiMe(ovhEngine),
    newAccount: apiNewAccount(ovhEngine),
}

const test = async () => {
    const { nichandle } = await api.me.$get();
    const data = await api.newAccount.$get();
    console.log(`${nichandle} have the following services:`);
    console.log(data);
}