auth
/api/v1/auth/config
GET
/api/v1/auth/config
const url = 'https://dpg.example.com/api/v1/auth/config';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://dpg.example.com/api/v1/auth/configResponses
Section titled “Responses”Default Response
Media typeapplication/json
object
selfSignupAllowed
required
boolean
loginChannels
required
Array<string>
Example
{ "loginChannels": [ "email" ]}
