Skip to main content
GET
/
api
/
v1
/
transfers
/
managed
/
integrations
Get integrations
curl --request GET \
  --url https://integration-api.meshconnect.com/api/v1/transfers/managed/integrations \
  --header 'X-Client-Id: <api-key>' \
  --header 'X-Client-Secret: <api-key>'
{
  "status": "ok",
  "message": "<string>",
  "displayMessage": "<string>",
  "errorHash": "<string>",
  "errorType": "<string>",
  "errorData": "<unknown>",
  "content": {
    "integrations": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "type": "robinhood",
        "name": "<string>",
        "networks": [
          {
            "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
            "name": "<string>",
            "chainId": "<string>",
            "logoUrl": "<string>",
            "supportedTokens": [
              "<string>"
            ],
            "nativeSymbol": "<string>",
            "supportedDevices": [
              "unknown"
            ]
          }
        ],
        "supportsOutgoingTransfers": true,
        "supportsIncomingTransfers": true
      }
    ]
  }
}

Authorizations

X-Client-Secret
string
header
required

Contact Mesh to get client Secret

X-Client-Id
string
header
required

Contact Mesh to get client Id

Response

OK

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
unknown
content
object