user.show
get/v1/user
user.show
Responses
200No description
- Schema
Schema Structure
{
"type": "object",
"properties": {
"success": {
"type": "boolean"
},
"data": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string"
},
"email": {
"type": "string"
},
"company": {
"type": [
"string",
"null"
]
},
"timezone": {
"type": "string"
},
"role": {
"anyOf": [
{
"type": "string"
},
{
"type": "string",
"enum": [
"user"
]
}
]
},
"credits": {
"type": "number"
},
"plan": {
"anyOf": [
{
"type": "string"
},
{
"type": "string",
"enum": [
"free"
]
}
]
},
"avatar": {
"type": [
"string",
"null"
]
},
"avatar_url": {
"type": [
"string",
"null"
]
}
},
"required": [
"id",
"name",
"email",
"company",
"timezone",
"role",
"credits",
"plan",
"avatar",
"avatar_url"
],
"title": "UserResource"
}
},
"required": [
"success",
"data"
]
}