curl --request GET \
--url http://localhost:8080/api/v1/oidc \
--header 'Authorization: Basic <encoded-value>'
{
"success": true,
"data": [
{
"id": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"name": "<string>",
"enabled": true,
"client_id": "<string>",
"client_secret": "<string>",
"provider": "<string>",
"provider_url": "<string>",
"redirect_uri": "<string>",
"logo_url": "<string>"
}
]
}
curl --request GET \
--url http://localhost:8080/api/v1/oidc \
--header 'Authorization: Basic <encoded-value>'
{
"success": true,
"data": [
{
"id": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"name": "<string>",
"enabled": true,
"client_id": "<string>",
"client_secret": "<string>",
"provider": "<string>",
"provider_url": "<string>",
"redirect_uri": "<string>",
"logo_url": "<string>"
}
]
}
Basic authentication using base64 encoded API key and secret. Format: Authorization: Basic <base64(api_key:api_secret)>
List of OIDC providers
The response is of type object
.
Was this page helpful?