Getting Started
Getting Started
Welcome! To use our cloud services, you must first register an account. After registering and logging in, you can deploy and manage all your resources either via our web console or programmatically using our public API.
Account Registration
- Click on the following link to Sign Up: https://cliente.masterdaweb.com
- Complete the registration form with your personal or company details.
- Confirm your email address to activate your account.
Once registered, you’ll be able to access all features of our platform.
Main Functionalities
After logging in, you have access to:
- Virtual Private Cloud (VPC): Create, manage, and delete isolated networks for your workloads.
- Virtual Machines (VMs): Deploy, monitor, and control your Linux or Windows VMs, including start, stop, and redeploy actions.
- VPN Gateway: Deploy VPN gateways to securely connect your devices and teams to your VPCs.
- User Management for VPN: Add, edit, remove, and manage credentials for users who access your VPN.
- Datacenter Selection: Choose where your resources will be provisioned.
- Firewall Rules: Set and manage firewall rules for each VM.
- Notifications: Receive important updates and alerts directly in your dashboard.
- Cost Simulation & Orders: Simulate costs before purchasing and place orders directly from the console.
Public API
All main functionalities can also be accessed via our REST API. Our API base URL is: https://apiv2.masterdaweb.com
Our API allows for complete automation of your cloud environment, including:
- Authentication: Register, login, refresh tokens, and manage sessions.
- VM Management: List, create, deploy from template, and monitor VMs.
- VPC Management: List, create, update, and delete VPCs, as well as add or remove VMs from a VPC.
- VPN Gateway Management: Create, update, and monitor VPN Gateways; manage users; download connection profiles.
- Billing and Orders: Retrieve product info, simulate costs, create orders, manage payments and billing cycles.
- Notifications: List and mark notifications as read.
- Single Sign-On (SSO): Generate SSO tokens for seamless console access.
For full API documentation and code examples, check the API Reference.
API Authentication Example
To interact with our API, you'll first need to authenticate and retrieve your access token.
Here’s how to log in using curl
:
curl -X POST https://apiv2.masterdaweb.com/whmcs/login \
-H "Content-Type: application/json" \
-d '{
"email": "[email protected]",
"password": "yourPassword",
"deviceId": "my-device-001"
}'
If successful, the response will contain your accessToken and refreshToken. You must use the accessToken in the Authorization header for authenticated requests:
curl -X GET https://apiv2.masterdaweb.com/vm \
-H "Authorization: Bearer <accessToken>"