Get your account details
GET/getuser
The Get User API enables you to get your own account details.
Request
Responses
- 200
- 404
- 405
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
objectId string
name string
email string
phone string
jobTitle string
company string
createdAt date
updatedAt date
{
"objectId": "FGik23bhUJ",
"name": "Joe Bee",
"email": "joebee@example.com",
"phone": "4567832123",
"jobTitle": "dev",
"company": "opensign",
"createdAt": "2023-10-07T16:49:56.000Z",
"updatedAt": "2023-10-07T16:49:56.000Z"
}
User not found!
- application/json
- Schema
- Example (from schema)
Schema
error string
{
"error": "User not found!"
}
Invalid API Token!
- application/json
- Schema
- Example (from schema)
Schema
error string
{
"error": "Invalid API token!"
}
Loading...