I have created a token that have access to edit Application / Access Policies and want to edit app settings (access app manage Zone.Access: Apps and Policies All zones)
I can successfully GET zone info using https://api.cloudflare.com/client/v4/zones/XXX/access/apps/YYY
but when I try PUT this to adjust value
{
“domain”: “it.cloud”,
“id”: “XXXXXXXXc-8e7e-41ab-a701-3a4da6a3374b”,
“name”: “it.cloud”,
“http_only_cookie_attribute”: false
}
I got:
{
“success”: false,
“errors”: [
{
“code”: 10000,
“message”: “PUT method not allowed for the api_token authentication scheme”
}
]
}
Is this really means some strange limitation from Cloudflare or BODY of the request is not correct? I can not use Keys, only Tokens are available for my account.