GET
/
api
/
v1
/
oidc
/
{id}
Get OIDC provider by ID
curl --request GET \
  --url http://localhost:8080/api/v1/oidc/{id} \
  --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>"
  }
}

Authorizations

Authorization
string
header
required

Basic authentication using base64 encoded API key and secret. Format: Authorization: Basic <base64(api_key:api_secret)>

Path Parameters

id
integer
required

OIDC provider ID

Response

200
application/json

OIDC provider details

The response is of type object.