v1

latestOpenAPI 3.0.42026-07-2419101123.9 KB
Sessions

Recommend Providers

Recommend providers for a specific user session. You can filter based on health (default=online) and specify country and subdivision information. Trinsic will use the phone number and IP address, if provided, to deduce the country and subdivision of the user and use that info for filtering the providers.

post/api/v1/sessions/providers/recommend

Request body

verificationProfileIdstring uuid required

The ID of the VerificationProfile to use for this recommendation.

health'Online' | 'Offline' | 'All'

Response

OK

Example response

{
  "recommendedProviders": [
    {
      "subtext": "dmv.ca.gov",
      "health": "online | offline",
      "subProviders": [
        {
          "subtext": "dmv.ca.gov"
        }
      ]
    }
  ],
  "remainder": [
    {
      "subtext": "dmv.ca.gov",
      "health": "online | offline",
      "subProviders": [
        {
          "subtext": "dmv.ca.gov"
        }
      ]
    }
  ]
}