hosting

GET /v1/sites/{siteId}/php-config

Get a site's changeable PHP settings.

Все эндпоинты hosting

Вся документация для разработчиков

Аутентификация

Отправьте ключ API в качестве токена носителя (bearer token). Ключ должен иметь разрешение sites.view; ключ без него отклоняется с кодом 403, а не 404.

Этот эндпоинт не принимает идентификатор организации. Ваш ключ уже определяет организацию, к которой он принадлежит, и ответ ограничивается ее рамками.

Попробовать

Замените всё в угловых скобках на собственные значения, а плейсхолдер ключа — на ключ из вашей панели управления.

curl -X GET https://api.zinndigital.com/v1/sites/{siteId}/php-config \
  -H "Authorization: Bearer zdk_live_…"

Вошли в систему? Консоль API в вашей панели управления автоматически подставляет реальный идентификатор вашей организации и ваш собственный ключ, а также выполняет запрос к работающему API, чтобы вы могли увидеть актуальный ответ. Откройте эту конечную точку в API-консоли

Подробнее

The php.ini settings this site's machine will let a customer change, as the machine describes them — each with its type (bool/list/value), its default, the legal values for a list, and a sentence explaining it. ⭐ The schema is the box's, not ours. A hardcoded field list would drift the first time the hosting changed a range and nothing would go red: the write would simply be refused later, at the vendor, in the vendor's words. value is null when the site is inheriting the default rather than having set it — a different fact from setting it to the same text, and the only one of the two that survives a change of the platform default. supported: false with an empty options list is a real answer, not an error: the hosting may publish no changeable settings at all. reason says which silence it is. Requires sites.view + sites.panel_access.

Параметры

ИмяТипОбязательноЧто это
siteId (path)UuidДаSite ID (UUIDv7).

Ответ

ИмяТипОбязательноЧто это
supportedbooleanДаWhether this site's hosting publishes changeable PHP settings.
reasonstringДаWhy there are none, in words a customer can act on. Empty when supported is true.
optionsSitePhpOption[]Да
moved_to_plan_settingsstring[]НетDirectives the vendor publishes but whose legal range is OUR policy, so they are returned by getSitePhpSettings (with the plan's cap) instead of here. Named rather than silently…

Ошибки, которые может возвращать этот эндпоинт

401 · 403 · 404 · 429 · 503