OAuthProviderResponse
Response type for OAuth provider (excludes sensitive fields like client_secret)
Properties
| Property | Type | Required | Description |
|---|---|---|---|
authorization_url |
string | Yes | |
client_id |
string | Yes | |
created_at |
string | Yes | |
description |
string,null | No | |
id |
string | Yes | |
is_active |
boolean | Yes | |
logo_url |
string,null | No | |
name |
string | Yes | |
organization_id |
string,null | No | |
pkce_required |
boolean | Yes | |
revocation_url |
string,null | No | |
scopes |
Array<string> | Yes | |
slug |
string | Yes | |
token_endpoint_auth_method |
string | Yes | |
token_url |
string | Yes | |
updated_at |
string | Yes | |
userinfo_url |
string,null | No |
View JSON Schema
{
"type": "object",
"description": "Response type for OAuth provider (excludes sensitive fields like client_secret)",
"required": [
"id",
"slug",
"name",
"authorization_url",
"token_url",
"client_id",
"scopes",
"pkce_required",
"token_endpoint_auth_method",
"is_active",
"created_at",
"updated_at"
],
"properties": {
"authorization_url": {
"type": "string"
},
"client_id": {
"type": "string"
},
"created_at": {
"type": "string",
"format": "date-time"
},
"description": {
"type": [
"string",
"null"
]
},
"id": {
"type": "string",
"format": "uuid"
},
"is_active": {
"type": "boolean"
},
"logo_url": {
"type": [
"string",
"null"
]
},
"name": {
"type": "string"
},
"organization_id": {
"type": [
"string",
"null"
],
"format": "uuid"
},
"pkce_required": {
"type": "boolean"
},
"revocation_url": {
"type": [
"string",
"null"
]
},
"scopes": {
"type": "array",
"items": {
"type": "string"
}
},
"slug": {
"type": "string"
},
"token_endpoint_auth_method": {
"type": "string"
},
"token_url": {
"type": "string"
},
"updated_at": {
"type": "string",
"format": "date-time"
},
"userinfo_url": {
"type": [
"string",
"null"
]
}
}
}