Xeonr Developer Docs
API SpecificationOAuth Clients

Get Public Clients

POST
/xeonr.auth.api.v1.ClientsService/GetPublicClients

Retrieves publicly visible information about one or more OAuth clients by their client IDs. Returns basic details like name, logo, and verification status.

Authentication: None required

AuthorizationBearer <token>

JWT access token obtained via OAuth2 flow or service account

In: header

Header Parameters

Connect-Protocol-Version*number

Define the version of the Connect protocol

Value in1
Connect-Timeout-Ms?number

Define the timeout, in ms

Request Body

application/json

clientId?client_id

Unique identifier for the OAuth Client

Items1 <= items <= 100
[key: string]?never

Response Body

application/json

application/json

curl -X POST "https://auth.xeonr.io/xeonr.auth.api.v1.ClientsService/GetPublicClients" \  -H "Connect-Protocol-Version: 1" \  -H "Content-Type: application/json" \  -d '{}'
{
  "clients": {
    "property1": {
      "clientId": "550e8400-e29b-41d4-a716-446655440000",
      "name": "My OAuth App",
      "websiteUrl": "https://myapp.example.com",
      "logoUrl": "https://cdn.example.com/logos/myapp.png",
      "description": "A sample OAuth application for demonstration purposes",
      "isVerified": "true",
      "createdAt": "2023-01-15T01:30:15.01Z",
      "applicationBindings": [
        {
          "applicationId": "app_prod_myapp",
          "config": {
            "jsonConfig": {
              "property1": {},
              "property2": {}
            }
          }
        }
      ]
    },
    "property2": {
      "clientId": "550e8400-e29b-41d4-a716-446655440000",
      "name": "My OAuth App",
      "websiteUrl": "https://myapp.example.com",
      "logoUrl": "https://cdn.example.com/logos/myapp.png",
      "description": "A sample OAuth application for demonstration purposes",
      "isVerified": "true",
      "createdAt": "2023-01-15T01:30:15.01Z",
      "applicationBindings": [
        {
          "applicationId": "app_prod_myapp",
          "config": {
            "jsonConfig": {
              "property1": {},
              "property2": {}
            }
          }
        }
      ]
    }
  }
}
{
  "code": "not_found",
  "message": "string",
  "details": [
    {
      "type": "string",
      "value": "string",
      "debug": {}
    }
  ]
}