GET
/
admin
/
api
/
v1
/
SubClient
Get all Registered clients
curl --request GET \
  --url https://admin-api.meshconnect.com/admin/api/v1/SubClient \
  --header 'Authorization: Bearer <token>'
{
  "content": [
    {
      "id": "7d26d39e-a939-4112-8280-319de012a55b",
      "logoUrl": "https://frontuserfilecdn.azureedge.net/public/clients/logo/oauth/registered/116a43e7-ddc9-4c61-b819-08ddd687d1d5f2fc96ed-cf41-454f-80c7-66520f5d047d.png",
      "businessLegalName": "Client 1 Business Legal Name",
      "displayName": "Client 1 Display Name",
      "callbackUrls": [
        "https://your-website1.com",
        "https://your-website2.com"
      ]
    },
    {
      "id": "9ea4c819-1d09-45c7-85d8-be1bfb5ed783",
      "logoUrl": "https://frontuserfilecdn.azureedge.net/public/clients/logo/oauth/registered/116a43e7-ddc9-4c61-b819-08ddd687d1d5f2fc96ed-cf41-454f-80c7-66520f5d047d.png",
      "businessLegalName": "Client 2 Business Legal Name",
      "displayName": "Client 2 Display Name",
      "callbackUrls": []
    }
  ],
  "status": "ok",
  "message": "",
  "errorHash": "5c0ce7089e0390cb961a35f097dd4d15cd615400",
  "errorType": ""
}

Authorizations

Authorization
string
header
required

Authorization header using the Bearer scheme. Example: "Authorization: Bearer {Value}"

Response

List registered clients

status
enum<string>
Available options:
ok,
serverFailure,
permissionDenied,
badRequest,
notFound,
conflict,
tooManyRequest,
locked,
unavailableForLegalReasons
message
string | null

A message generated by the API

displayMessage
string | null

User-friendly display message that can be presented to the end user

errorHash
string | null

An error grouping hash from string components and caller information. Used by bugsnag on FE for correct error grouping

errorType
string | null

Strictly-typed error type that is explaining the reason of an unsuccessful status of the operation. All possible error types are available in the documentation.

errorData
any
content
object[] | null