sayren Docs
스토어 설정

소셜 로그인 공급자 사용 켜기·끄기

끄면 스토어프론트에서 그 공급자로 새로 로그인할 수 없다. 키와 구매자 연결은 그대로다. 켜려면 스토어프론트 도메인이 1개 이상 있어야 한다(409 `STOREFRONT_ORIGIN_REQUIRED`).

PATCH
/v1/store/auth-providers/{provider}

끄면 스토어프론트에서 그 공급자로 새로 로그인할 수 없다. 키와 구매자 연결은 그대로다. 켜려면 스토어프론트 도메인이 1개 이상 있어야 한다(409 STOREFRONT_ORIGIN_REQUIRED).

AuthorizationBearer <token>

userToken(계정 스코프) 또는 storeToken(스토어 스코프)

In: header

Path Parameters

provider*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

enabled*boolean

Response Body

application/json

curl -X PATCH "https://example.com/v1/store/auth-providers/string" \  -H "Content-Type: application/json" \  -d '{    "enabled": true  }'
{  "meta": {    "status": 200,    "code": "OK",    "message": "OK",    "isSuccess": true  },  "data": {    "passwordLoginEnabled": true,    "passwordOnlyMemberCount": 0,    "storefrontOrigins": [      "string"    ],    "providers": [      {        "provider": "kakao",        "connected": true,        "enabled": true,        "clientIdPrefix": "string",        "secretPrefix": "string",        "lastTestedAt": "string",        "lastTestOk": true,        "linkedMemberCount": 0,        "onlyMethodMemberCount": 0,        "callbackUrl": "http://example.com"      }    ]  },  "error": null}