Get Merchant Oauth2 Profiles
GET
the merchant OAuth2 profiles by prefix
This method does not require authentication. The merchant OAuth2 profiles are located using store realm identifiers.
https://api.moltin.com/merchant-oauth2-profiles
Query Parameters:
Name | Required | Type | Description |
---|---|---|---|
prefix | Required | string | The store prefix which was added to the merchant mappings. |
200 OK
{
"data": {
"id": "925c8617-41b3-44fa-ac4b-2f6edd1bd3c5",
"prefix": "mystore",
"realm_id": "e730bf37-ed95-4ca9-b4c4-2c5ee08b21d7",
"store_id": "88888888-4444-4333-8333-111111111111",
"profiles": [
{
"profile_id": "f7e012dd-6246-4332-a500-725c0163eb7c",
"profile_name": "Keycloak"
}
],
"type": "merchant-oauth2-profiles"
}
}
curl -X GET https://api.moltin.com/v2/merchant-realm-mappings?prefix=mystore
profiles
array
The The list of profiles configured for a store. Each profile can be used for single sign-on authentication.
Attribute | Type | Description |
---|---|---|
profile_id | string | The unique identifier for the OpenID Connect profile. |
profile_name | string | The name of the OpenID Connect profile. |