Self Managed Account Authentication
Get authentication schemes
Managed Account Authentication
Managed Transfers
Transactions
Self Managed Account Authentication
Self Managed Account Authentication
Get authentication schemes
Get authentication schemes of available integrations to perform authentication programmatically (not using the Web Catalog UI).
GET
/
api
/
v1
/
authenticationSchemes
curl --request GET \
--url https://integration-api.meshconnect.com/api/v1/authenticationSchemes \
--header 'X-Client-Id: <api-key>' \
--header 'X-Client-Secret: <api-key>'
{
"content": [
{
"brokerType": "binanceInternational",
"authenticationSchemeType": "apiKey",
"initialAuthenticationModel": {
"fields": [
{
"name": "Username",
"description": "API key"
},
{
"name": "Password",
"description": "Secret key"
},
{
"name": "AuthToken",
"description": "Passphrase"
},
{
"name": "Type",
"description": "BinanceInternational"
}
]
},
"mfaSchemes": []
}
],
"status": "ok",
"message": "",
"errorType": ""
}
Authorizations
Contact Mesh to get client Secret
Contact Mesh to get client Id
Response
200
application/json
OK
The response is of type object
.
curl --request GET \
--url https://integration-api.meshconnect.com/api/v1/authenticationSchemes \
--header 'X-Client-Id: <api-key>' \
--header 'X-Client-Secret: <api-key>'
{
"content": [
{
"brokerType": "binanceInternational",
"authenticationSchemeType": "apiKey",
"initialAuthenticationModel": {
"fields": [
{
"name": "Username",
"description": "API key"
},
{
"name": "Password",
"description": "Secret key"
},
{
"name": "AuthToken",
"description": "Passphrase"
},
{
"name": "Type",
"description": "BinanceInternational"
}
]
},
"mfaSchemes": []
}
],
"status": "ok",
"message": "",
"errorType": ""
}