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

UserInfo Endpoint (POST)

POST
/oauth/v1/userinfo
Returns claims about the authenticated end-user using POST method

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************

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 POST 'https://api.withdipp.com/oauth/v1/userinfo' \
--header 'Authorization: Bearer <token>'

Responses

🟢200OK
application/json
User information
Body

Example
{
    "sub": "string",
    "name": "string",
    "given_name": "string",
    "family_name": "string",
    "middle_name": "string",
    "nickname": "string",
    "preferred_username": "string",
    "profile": "http://example.com",
    "picture": "http://example.com",
    "website": "http://example.com",
    "email": "user@example.com",
    "email_verified": true,
    "gender": "string",
    "birthdate": "string",
    "zoneinfo": "string",
    "locale": "string",
    "phone_number": "string",
    "phone_number_verified": true,
    "address": {
        "formatted": "string",
        "street_address": "string",
        "locality": "string",
        "region": "string",
        "postal_code": "string",
        "country": "string"
    },
    "updated_at": 0
}
🟠401Unauthorized
Modified at 2025-08-18 07:54:24
Previous
UserInfo Endpoint
Next
Token Revocation Endpoint
Built with