Returns a list of user's organizations
GET/v1/auth/orgs
Returns a list of user's organizations details and login methods
Request
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- ]
organizations object[]
Describes a list of user's organization
authTypestring
Describes user's enabled authorization mode
namestring
Describes user's organization name
redirectUrlstring
Describes user's organization authentication url
ssoLogins object[]
Describes a list of allowed social logins for the organization
displayNamestring
Describes the display name for the sso login
logostring
Describes the url path for the sso login
namestring
Describes the processed name for the sso login
redirectUristring
Describes the sso login url for the authentication
{
"organizations": [
{
"authType": "string",
"name": "string",
"redirectUrl": "string",
"ssoLogins": [
{
"displayName": "string",
"logo": "string",
"name": "string",
"redirectUri": "string"
}
]
}
]
}
Loading...