Skip to main content
In order to integrate clients with IAM Service Social Media, we expose an endpoint to fetch identity providers info
curl --request GET \
  --url https://dev-iam.razi.ai/v1/authentication/apps/metadata \
  --header 'X-App-Name: '
The above cURL returns the idp enabled in the application
{
  "idpProviders": [
    {
      "name": "Google",
      "id": "271296458001489512",
      "type": "GOOGLE"
    },
    {
      "name": "AZURE_AD",
      "id": "271296458001489514",
      "type": "AZURE_AD"
    }
  ]
}
Link to PlaygroundThe type field is an enum which can be used to identify the provider type. The id field is the id of the identity provider and will be used in next steps to create and validate the intent.