curl --request GET \
--url https://api.example.com/cabinet/admin/tariffs/available-servers \
--header 'Authorization: Bearer <token>'[
{
"id": 123,
"squad_uuid": "<string>",
"display_name": "<string>",
"country_code": "<string>",
"is_selected": false,
"traffic_limit_gb": 123
}
]Get list of all servers for tariff selection.
curl --request GET \
--url https://api.example.com/cabinet/admin/tariffs/available-servers \
--header 'Authorization: Bearer <token>'[
{
"id": 123,
"squad_uuid": "<string>",
"display_name": "<string>",
"country_code": "<string>",
"is_selected": false,
"traffic_limit_gb": 123
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.