Skip to main content
POST
/
Agent
/
Legal
/
GetServiceProvidersForIdReview
Get Service Providers For Id Review
curl --request POST \
  --url https://{host}/Agent/Legal/GetServiceProvidersForIdReview \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "legalId": "Required(Str(PLegalId))"
}
'
{
  "Providers": [
    {
      "id": "<string>",
      "type": "<string>",
      "name": "<string>",
      "reviewerId": "<string>",
      "external": true,
      "iconUrl": "<string>",
      "iconWidth": 123,
      "iconHeight": 123
    }
  ]
}

Overview

Allows the client to retrieve a list of available service providers that can be used to review a recent ID application.

Authentication

Requires a valid JWT bearer token.

Notes

This endpoint uses the request schema notation described in Pattern matching.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200 - application/json

Success

Providers
object[]