List configured OAuth providers.
GET
/api/auth/v1/oauth/providers
const url = 'https://example.com/api/auth/v1/oauth/providers';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/auth/v1/oauth/providersResponses
Section titled “ Responses ”List of OAuth providers.
Media type application/json
object
providers
required
List of tuples (
Array<array>
Example generated
{ "providers": [ [ "example" ] ]}