API Endpoint
Abstract
Learn how to use the CloudConnexa API endpoint, including base URL format, request structure, and how to authenticate and access available endpoints.
The CloudConnexa API is accessed through a WPC-specific base URL. Ensure you send all API requests to this endpoint.
Base URL format
https://<company_name>.api.openvpn.com
Replace <company_name> with your CloudConnexa Cloud ID.
Using the endpoint
All API requests are made by appending resource paths to the base URL.
Example:
POST https://<cloud_id>.api.openvpn.com/api/v1/oauth/token
How it fits into API requests
To successfully call the CloudConnexa API:
Use your WPC-specific base URL.
Authenticate using an OAuth 2.0 access token.
Include the token in the
Authorizationheader:Authorization: Bearer <access_token>