Placewise Member IdP
  1. WellKnown::OpenidConfiguration
Placewise Member IdP
  • Overview
    • Introduction
    • OpenID Connect
      • Overview
      • Issuer and Discovery URL
    • Usage of member tokens
      • Usage of Placewise API in context of member
      • ID token
    • Customizing the experience
      • Configuration of UI, Social Logins and Messages (emails/smses)
      • Optional parameters available during authorization
  • Reference
    • OIDC
      • WellKnown::Jwk
        • index
      • WellKnown::OpenidConfiguration
        • show
          GET
      • Authorization
        • create
        • create
      • Token
        • revoke
        • create
      • Session
        • destroy
      • Userinfo
        • show
  1. WellKnown::OpenidConfiguration

show

GET
/v1/oidc/.well-known/openid-configuration

Request

Header Params

Responses

🟢200OK
application/json
returns the correct JSON structure with subdomain
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1/oidc/.well-known/openid-configuration' \
--header 'X-User-Agent: {{X_USER_AGENT}}' \
--header 'X-Product-Name: {{PRODUCT_NAME}}' \
--header 'X-Loyalty-Club-Slug: {{LOYALTY_CLUB_SLUG}}' \
--header 'X-Customer: {{CUSTOMER_ID}}' \
--header 'Authorization: Bearer {{_OAUTH_TOKEN}}' \
--header 'Content-Type: application/json'
Response Response Example
{
    "authorization_endpoint": "http://infinity-mall.member.dev.placewise.com/v1/oidc/auth",
    "claims_parameter_supported": false,
    "claims_supported": [
        "sub"
    ],
    "code_challenge_methods_supported": [
        "S256"
    ],
    "end_session_endpoint": "http://infinity-mall.member.dev.placewise.com/v1/oidc/sessions/logout",
    "grant_types_supported": [
        "authorization_code",
        "refresh_token"
    ],
    "id_token_signing_alg_values_supported": [
        "RS256"
    ],
    "issuer": "http://infinity-mall.member.dev.placewise.com",
    "jwks_uri": "http://infinity-mall.member.dev.placewise.com/v1/oidc/.well-known/jwks.json",
    "request_parameter_supported": false,
    "request_uri_parameter_supported": false,
    "response_modes_supported": [
        "query"
    ],
    "response_types_supported": [
        "code"
    ],
    "revocation_endpoint": "http://infinity-mall.member.dev.placewise.com/v1/oidc/revoke",
    "scopes_supported": [
        "openid",
        "offline_access"
    ],
    "subject_types_supported": [
        "public"
    ],
    "token_endpoint_auth_methods_supported": [
        "client_secret_basic"
    ],
    "token_endpoint": "http://infinity-mall.member.dev.placewise.com/v1/oidc/token",
    "userinfo_endpoint": "http://infinity-mall.member.dev.placewise.com/v1/oidc/userinfo"
}
Modified at 2025-06-16 09:32:55
Previous
index
Next
create
Built with