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
  1. OAuth Integration

JSON Web Key Set

GET
/oauth/v1/jwks
Returns the JSON Web Key Set containing the public keys used to verify ID tokens

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/oauth/v1/jwks'

Responses

🟢200OK
application/json
JSON Web Key Set
Body

Example
{
    "keys": [
        {
            "kty": "string",
            "use": "string",
            "kid": "string",
            "alg": "string",
            "n": "string",
            "e": "string"
        }
    ]
}
🔴500Server Error
Modified at 2025-08-18 07:58:47
Previous
Token Revocation Endpoint
Next
Get brands
Built with