GET
/
api
/
v1
/
authenticationSchemes
curl --request GET \
  --url https://integration-api.getfront.com/api/v1/authenticationSchemes \
  --header 'X-Client-Id: <api-key>' \
  --header 'X-Client-Secret: <api-key>'
{
  "content": [
    {
      "brokerType": "coinbasePro",
      "authenticationSchemeType": "apiKey",
      "initialAuthenticationModel": {
        "fields": [
          {
            "name": "Username",
            "description": "API key"
          },
          {
            "name": "Password",
            "description": "Secret key"
          },
          {
            "name": "AuthToken",
            "description": "Passphrase"
          },
          {
            "name": "Type",
            "description": "CoinbasePro"
          }
        ]
      },
      "mfaSchemes": [],
      "instructionsUrl": "https://help.coinbase.com/en/pro/other-topics/api/how-do-i-create-an-api-key-for-coinbase-pro"
    }
  ],
  "status": "ok",
  "message": "",
  "errorType": ""
}

Authorizations

X-Client-Secret
string
header
required

Contact Front to get client Secret

X-Client-Id
string
header
required

Contact Front to get client Id

Response

200
application/json
Success
status
enum<string>
Available options:
ok,
serverFailure,
permissionDenied,
badRequest,
notFound,
conflict,
tooManyRequest,
locked
message
string | null

A message generated by the API

displayMessage
string | null

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

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.

content
object[] | null