Get Account By Email
GET/v1/account/email/:account_email
Get account details by account email, requires globalAdmin:: permissions
Request
Path Parameters
account_email Account Emailrequired
Possible values: non-empty
Account Email
Responses
- 200
- 422
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
account_id uuidrequired
Account id
Auth0_account_Id Auth0 Account Id (string)
Possible values: non-empty and <= 50 characters
Auth0 user ID associated with this account
account_email Account Email (string)
Email address for this account
global_admin Global Admin (boolean)
Is this account a global admin
description Description (string)
Description for this account
{
"account_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"Auth0_account_Id": "string",
"account_email": "string",
"global_admin": false,
"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...