Get an organization
GET/orgs/:handle
The response will give you public information about an organization (see https://docs.b2v.xyz/org-profile for more )
Request
Path Parameters
Org handle
Responses
- 200
- 400
- 404
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object
Number of mutual authentications from this org
2 Letter country code
Created at (Unix timestamp)
If the account is premium
Salt used for creating digest
URL to profile picture
proved_identities
object[]
Number of proven online identities.
Number of organizations that recommending this one
Number of signatures from this org
Number of B2V team members (not employees) in this organization.
{
"data": {
"auth_session_count": 0,
"country_iso": "string",
"description": "string",
"display_name": "string",
"handle": "string",
"iat": 0,
"is_premium": true,
"nacl": "string",
"picture_url": "string",
"proved_identities": [
{
"identity_kind": "string",
"identity_name": "string"
}
],
"recommenders": [
"string"
],
"sig_count": 0,
"team_size": 0
},
"success": true
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
Human-friendly description that can be shown to the user.
Only present in case of internal errors (status 500 or 502)
{
"data": [
0
],
"detail": "string",
"error_code": "string",
"error_id": "string"
}
Not Found
- application/json
- Schema
- Example (from schema)
Schema
Human-friendly description that can be shown to the user.
Only present in case of internal errors (status 500 or 502)
{
"data": [
0
],
"detail": "string",
"error_code": "string",
"error_id": "string"
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
Schema
Human-friendly description that can be shown to the user.
Only present in case of internal errors (status 500 or 502)
{
"data": [
0
],
"detail": "string",
"error_code": "string",
"error_id": "string"
}