Skip to main content
GET
/
admin
/
api
/
v1
/
Client
/
callbackUrls
Get Main Client callback urls
curl --request GET \
  --url https://admin-api.meshconnect.com/admin/api/v1/Client/callbackUrls \
  --header 'Authorization: Bearer <token>'
{
  "content": {
    "callbackUrls": [
      "https://mainclient-website1.com",
      "https://mainclient-website2.com"
    ]
  },
  "status": "ok",
  "message": "",
  "errorHash": "dce0f5738a39d5adb0f73d5cf930804e2da906b2",
  "errorType": ""
}

Authorizations

Authorization
string
header
required

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

Response

Get Main Client callback urls

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
I