Get deployment information with settings
curl --request GET \
--url https://api.wacht.dev/ \
--header 'Authorization: Bearer <token>'
{
"deployment_id": "<string>",
"name": "<string>",
"environment": "production",
"settings": {
"auth_settings": {},
"display_settings": {},
"b2b_settings": {},
"restrictions": {}
},
"created_at": "2023-11-07T05:31:56Z"
}
JWT Bearer token authentication using the Authorization header
Successful response
The response is of type object
.
curl --request GET \
--url https://api.wacht.dev/ \
--header 'Authorization: Bearer <token>'
{
"deployment_id": "<string>",
"name": "<string>",
"environment": "production",
"settings": {
"auth_settings": {},
"display_settings": {},
"b2b_settings": {},
"restrictions": {}
},
"created_at": "2023-11-07T05:31:56Z"
}