dipp REST API
  1. OAuth Integration
dipp REST API
  • Welcome to dipp REST API
  • OAuth Integration
    • Dipp OAuth Integration Guide
    • OpenID Connect Discovery
      GET
    • Authorization Endpoint
      GET
    • Token Endpoint
      POST
    • UserInfo Endpoint
      GET
    • UserInfo Endpoint (POST)
      POST
    • Token Revocation Endpoint
      POST
    • JSON Web Key Set
      GET
  • Get brands
    GET
  • Get layouts
    GET
  • Download CSV template
    GET
  • Get current quotation
    GET
  • Create campaign
    POST
  • Get campaigns
    GET
  • Download product bundle image by data
    POST
  • Schemas
    • Sample Schemas
      • Pet
      • Category
      • Tag
    • Schemas
      • Generic Error
      • DiscoveryDocument
      • Validation Error
      • TokenResponse
      • UserInfo
      • Address
      • JWKS
      • JWK
      • OAuthError
      • ConsentResponse
  1. OAuth Integration

OpenID Connect Discovery

GET
/.well-known/openid-configuration
Returns the OpenID Connect discovery document containing metadata about the OIDC provider

Request

None

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.withdipp.com/.well-known/openid-configuration'

Responses

🟢200OK
application/json
OpenID Connect discovery document
Body

Example
{
    "issuer": "http://example.com",
    "authorization_endpoint": "http://example.com",
    "token_endpoint": "http://example.com",
    "userinfo_endpoint": "http://example.com",
    "revocation_endpoint": "http://example.com",
    "jwks_uri": "http://example.com",
    "response_types_supported": [
        "string"
    ],
    "grant_types_supported": [
        "string"
    ],
    "code_challenge_methods_supported": [
        "string"
    ],
    "scopes_supported": [
        "string"
    ],
    "token_endpoint_auth_methods_supported": [
        "string"
    ],
    "id_token_signing_alg_values_supported": [
        "string"
    ],
    "subject_types_supported": [
        "string"
    ],
    "claims_supported": [
        "string"
    ],
    "prompt_values_supported": [
        "none"
    ],
    "consent_endpoint": "http://example.com"
}
Modified at 2025-08-18 07:50:00
Previous
Dipp OAuth Integration Guide
Next
Authorization Endpoint
Built with