-
Getting Started
-
Domains
- Authentication & Headers
- Get Domain Pricing
- Search Domain Availability
- List Domains
- Register Domain
- Transfer Domain
- Get Registrar Domain Info
- Change Nameservers
- Registrar Lock (Enable/Disable)
- Whois Privacy (Toggle)
- Dns Management (Get/Set)
- Get Epp/Authorization Code
- Renew Domain
- Restore Expired Domain
- Get Local Domain Details
- Register Custom Nameserver (Glue Record)
- List Contact Profiles
- Create Contact Profile
- Update Contact Profile
- Assign Contacts To Domain
-
SMM | Lab (SEO)
-
Hosted Payments
-
Crypto Payments
-
Messaging
-
WhatsApp API
-
Email API
-
IPTV
Subscription Info
-------------------------
8. SUBSCRIPTION INFO
-------------------------
Subscription Info: Returns details about your current Messaging subscription (plan name, pricing, capacity).
Endpoint: GET /subscription/info
Parameters (Query or Header):
api_key(required, string): Your Messaging API key; can be passed as a query parameter or in the JSON body if you proxy via POST.
Example Request (Query):
curl -X GET "https://umva.net/api/messaging/subscription/info?api_key=YOUR_MESSAGING_API_KEY" \
-H "Accept: application/json"
Success Response Example (HTTP 200):
{
"success": true,
"message": "Subscription info loaded",
"data": {
"plan": "WhatsApp Messaging",
"monthly_cost": 5.0,
"auto_renew": true,
"next_billing": "2027-03-03",
"remaining_capacity": 315
}
}