Storyden
Accounts

Account Auth Provider List

Retrieve a list of authentication providers with a flag indicating which ones are active for the currently authenticated account.

Retrieve a list of authentication providers with a flag indicating which ones are active for the currently authenticated account.

GET/accounts/self/auth-methods
storyden-session<token>

In: cookie

Response Body

curl -X GET "https://loading/api/accounts/self/auth-methods"
{
  "active": [
    {
      "id": "string",
      "created_at": "2019-08-24T14:15:22Z",
      "name": "string",
      "identifier": "string",
      "provider": {
        "provider": "string",
        "name": "string",
        "link": "string"
      }
    }
  ],
  "available": [
    {
      "provider": "string",
      "name": "string",
      "link": "string"
    }
  ]
}
Empty
{
  "error": "string",
  "message": "string",
  "suggested": "string",
  "metadata": {}
}