Get Account For Org
GET/v1/org/:org_identifier/account/:account_identifier
Get account details by account ID for Organization,requires accountOrg:config:view | accountOrg:config:edit permissions
Request
Path Parameters
org_identifier anyrequired
Organization ID or short name
account_identifier anyrequired
Account ID
Responses
- 200
- 422
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
org_id uuidrequired
Organization that this user belongs to
account_id uuidrequired
Account id
account_email Account Email (string)required
Email address for this account
last_ip Last Ip (string)
Last IP address for this account login
last_login Last Login (string)
Last login time for this account
name Name (string)
Name for this account
nickname Nickname (string)
Nickname for this account
description Description (string)
Description for this account
{
"org_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"account_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"account_email": "string",
"last_ip": "string",
"last_login": "string",
"name": "string",
"nickname": "string",
"description": "string"
}
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
- MOD1
- MOD2
]
]
detail
object[]
loc
object[]
required
anyOf
string
integer
msg Message (string)required
type Error Type (string)required
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}
Loading...