hosting
POST /v1/sites/{siteId}/protection/file-permissions
Apply the vendor's recommended permissions on a site.
Authentification
Envoyez une clé API en tant que jeton du porteur. La clé doit posséder l'autorisation sites.view ; une clé qui ne l'a pas est refusée avec le code 403, et non 404.
Cet endpoint ne prend aucun identifiant d'organisation. Votre clé identifie déjà l'organisation à laquelle elle appartient, et la réponse y est limitée.
Essayer
Remplacez tout ce qui se trouve entre crochets par vos propres valeurs, et le espace réservé à la clé par une clé de votre tableau de bord.
curl -X POST https://api.zinndigital.com/v1/sites/{siteId}/protection/file-permissions \
-H "Authorization: Bearer zdk_live_…"Connecté ? La console d'API de votre tableau de bord saisit votre véritable ID d'organisation ainsi que votre propre clé, et exécute la requête sur l'API de production afin que vous puissiez voir la réponse réelle. Ouvrir ce point de terminaison dans la console API
Détails
Changes file modes on the customer's live files to the vendor's own recommendation. ⛔ It takes no body, and that is the security property. The check is re-run inside the same vendor conversation and the recommendation is applied against the handle that conversation just produced, so a stale check_id from a client cannot be replayed against files that have changed since. The only defensible input to an operation that alters file modes is the number the platform running it published moments ago. A report with nothing to fix is a 422 refusal rather than a silent success: "we changed nothing" and "there was nothing to change" are different sentences, and only one of them is reassuring. Files the vendor named without naming a mode are skipped, never sent with a guess. 404 for a site with no vendor hosting package. Requires sites.view and sites.panel_access.
Paramètres
| Nom | Type | Obligatoire | Qu'est-ce que c'est |
|---|---|---|---|
siteId (path) | Uuid | Oui | Site ID (UUIDv7). |
Réponse
| Nom | Type | Obligatoire | Qu'est-ce que c'est |
|---|---|---|---|
check_id | integer | Oui | The vendor's handle for this check. Null when the vendor gave us none, in which case there is nothing to apply and actionable is false. ⛔ A client never sends it back:… |
public_html_wrong | boolean | Oui | Whether the document root's own mode is wrong. |
root_wrong | boolean | Oui | Whether the package root's own mode is wrong. |
failures | SitePermissionFailure[] | Oui | The individual files the check flagged. |
actionable | boolean | Oui | Whether Fix these can do anything: a live check handle and something to fix. Its own field so the button is not offered against a report that can only be refused. |
Erreurs que cet point de terminaison peut renvoyer
401 · 403 · 404 · 409 · 422 · 429 · 503