Create Exchange
POST /exchanges
Creates a new exchange integration.
Required Permissions
Name
Conditions
Exchanges:Create
Always Required
Body
Property
Type / Optional
Description
name*
String
A name for the Exchange.
kind*
String
The enumerated type for the exchange. Eg. Kraken or Binance
readConfiguration*
Object
Object containing the public and private API key pairs.
writeConfiguration*
Object
Object containing the public and private API key pairs.
Example
{
"kind": "Binance",
"name": "Binance 1",
"readConfiguration": {
"publicApiKey": "1234",
"privateApiKey": "5678"
},
"writeConfiguration": {
"publicApiKey": "1234",
"privateApiKey": "5678"
}
}Response
Response example
Last updated