-
-
Notifications
You must be signed in to change notification settings - Fork 111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i can't update users acf #406
Comments
I have the same problem. response: I use base auth with wp appliaction password. |
Hello, I'm experiencing almost the same problem. It's still possible to send the form data in POST requests to ACF endpoints, despite there are different cases. Example of raw data while sending POST request to |
I also cannot modify the users ACF fields when the "ACF to REST API" plugin is installed. Disabling the plugin lets it work. |
I tried updating users acf and it doesn't work.
my case 1:
endpoint
wp/v2/users/{user id}
body
{
"fields":{
"url":"any url"
}
}
It respone 200 but the data is not updated.
posts acf can be updated in this way.
my case 2:
endpoint
acf/v3/users/{user id}
body
{
"fields":{
"url":"any url"
}
}
It is respone 500 with below
{
"code": "cant_update_item",
"message": "Cannot update item",
"data": {
"status": 500
}
}
How can I update users acf?
The text was updated successfully, but these errors were encountered: