Introduction
Access timestamp details using our RESTful API.
Authentication
An authorized user having the login name and password can create an API Key by making a POST request:
URI: https://www.employproof.org/api/checkLogin
Method: POST
Headers: application/json
Each API Key is valid for half an hour. Once a query is made, the validity period of the API Key will be automatically extended for another half an hour.
Request parameters:
Parameters |
Type |
Type |
uLoginName |
string |
A string containing your login name |
uLoginPassword |
string |
A string containing your login password |
Response parameters:
Parameters |
Type |
Description |
code |
string |
0 means “success” -101 means “authentication failed” |
msg |
string |
data |
string |
API Key |
Response example:
{
"code":"0",
"msg":"success",
"data":"4d4cbaff45154823a7be8632a4957f54"
}
Query timestamp details
Fetch data by using API Key and the email address associated with the timestamp.
URI: https://www.employproof.org/api/getEmployproof
Method: POST
Headers: application/json
Request parameters:
Parameters |
Type |
Description |
tempKey |
string |
API Key |
email |
string |
The email address associated with the timestamp |
Response parameters:
Parameters |
Type |
Description |
code |
string |
0 means “success” -101 means “authentication failed” |
msg |
string |
total |
string |
Number of timestamp(s) |
data |
array |
Timestamp details |
email |
string |
The email address associated with the timestamp |
creation |
string |
Creation time |
name |
string |
Name |
company |
string |
Company or school name |
employment |
string |
Employment or enrollment starting time |
position |
string |
Current position or major of study |
location |
string |
Work location |
eiImg |
string |
URL of timestamp picture |
Response example:
{
"code":"0",
"msg":"success",
"data":[
{
"name":"Michael Jackson",
"company":"Sony Music Entertainment",
"location":"New York",
"creation":"2019-11",
"employment":"1995 February",
"position":"singers",
"email":"Jack@gmail.com",
"eiImg":"https://www.employproof.org/showpic?=2123616c421a4d478384cf3ca350f985.png"
}
],
"total":1
}