Introduction
This documentation aims to provide all the information you need to work with our API.
Base URL
https://certificate.lidoms.com
Authenticating requests
This API is not authenticated.
Endpoints
Get Certificate Generate A Certificate Link For Users.
If User is found to be present in the database, the "new" parameter will be 0. Otherwise the "new" parameter will be 1.
Example request:
$client = new \GuzzleHttp\Client();
$response = $client->post(
'https://certificate.lidoms.com/api/v1/get-certificate',
[
'headers' => [
'Content-Type' => 'application/json',
'Accept' => 'application/json',
'X-Header-Domain' => 'concealedcoalition.com',
],
'json' => [
'account' => 'concealedcoalition',
'first_name' => 'vel',
'last_name' => 'et',
'email' => 'quia',
'user_session_id' => 'et',
'order_id' => 12,
'phone_number' => '8885440809',
'order_date' => '2025-10-16',
'state' => 'sg',
'type' => 'state_specific_cert_code',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = 'https://certificate.lidoms.com/api/v1/get-certificate'
payload = {
"account": "concealedcoalition",
"first_name": "vel",
"last_name": "et",
"email": "quia",
"user_session_id": "et",
"order_id": 12,
"phone_number": "8885440809",
"order_date": "2025-10-16",
"state": "sg",
"type": "state_specific_cert_code"
}
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json',
'X-Header-Domain': 'concealedcoalition.com'
}
response = requests.request('POST', url, headers=headers, json=payload)
response.json()
const url = new URL(
"https://certificate.lidoms.com/api/v1/get-certificate"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
"X-Header-Domain": "concealedcoalition.com",
};
let body = {
"account": "concealedcoalition",
"first_name": "vel",
"last_name": "et",
"email": "quia",
"user_session_id": "et",
"order_id": 12,
"phone_number": "8885440809",
"order_date": "2025-10-16",
"state": "sg",
"type": "state_specific_cert_code"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
Received response:
Request failed with error: