Get your details
GET/getuser
Get your details
Request
Header Parameters
x-api-token stringrequired
Example: opensign.xxxx
Responses
- 200
- 404
- 405
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
code number
result
user
objectId string
Name string
Email string
Phone string
JobTitle string
Company string
{
"code": 200,
"result": {
"objectId": "FGik23bhUJ",
"Name": "Joe Bee",
"Email": "joebee@example.com",
"Phone": "4567832123",
"JobTitle": "dev",
"Company": "opensign"
}
}
User not found!
- application/json
- Schema
- Example (from schema)
Schema
code number
message string
{
"code": 404,
"message": "User not found!"
}
Invalid API Token!
- application/json
- Schema
- Example (from schema)
Schema
code number
message string
{
"code": 405,
"message": "Invalid API token!"
}
Loading...