curl --request POST \
--url http://localhost:8000/gateway/start \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"passphrase": "<string>",
"image": "hummingbot/gateway:latest",
"port": 15888,
"dev_mode": true
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Start Gateway container.
curl --request POST \
--url http://localhost:8000/gateway/start \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"passphrase": "<string>",
"image": "hummingbot/gateway:latest",
"port": 15888,
"dev_mode": true
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Successful Response
Was this page helpful?