Get Licenses
This docs helps you to get access to peoples licenses by sending their email the only thing that is sent back is the license key, Domain/IP and the status.
Further Reading: Retrieving User Licenses
You can retrieve the licenses associated with a user by making a request to the following API endpoint:
GET https://api.ricardoneud.com/v1/clients/licenses
Request Headers:
Header | Type | Required | Description |
---|---|---|---|
Authorization | string | ✅ | Bearer token with a valid API key |
X-User-Email | string | ✅ | The email address of the user whose licenses you want to retrieve |
Example Response
The response will contain a list of the user’s licenses, including the domain/IP associated with the license, the license key, and the status of each license.
Example:
[ { "domain_or_ip": "example.com", "license_key": "RicardoNeud-afa890e8ef375aed", "status": "invalid" }, { "domain_or_ip": "ricardoneud.com", "license_key": "RicardoNeud-fa7e33f823848115", "status": "valid" }]
Fields in the Response:
- domain_or_ip: The domain or IP address associated with the license.
- license_key: The unique key assigned to the license.
- status: The current status of the license (e.g.,
valid
,invalid
).