curl --request GET \
--url http://localhost:8000/gateway/status \
--header 'Authorization: Basic <encoded-value>'{
"running": true,
"container_id": "<string>",
"image": "<string>",
"created_at": "<string>",
"port": 123
}Get Gateway container status.
curl --request GET \
--url http://localhost:8000/gateway/status \
--header 'Authorization: Basic <encoded-value>'{
"running": true,
"container_id": "<string>",
"image": "<string>",
"created_at": "<string>",
"port": 123
}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?