• I have installed the WP plugin to update ACF fields via HTTPS, I’ve obtained the token and everything seems to be sent correctly into the record, however, the ACF fields on the records are not getting updated.

    I’m sending the token as an authorization header (schema: bearer).

    This is what I’m sending:

    Headers:

    {
    “user-agent”: “PostmanRuntime/7.29.2”,
    “wp_api”: “True”,
    “version”: “wc/v3”,
    “Authorization”: “Bearer “,
    “content-type”: “application/json”,
    “accept”: “application/json”,
    “accept-encoding”: “gzip, deflate”,
    “content-length”: 1788
    }

    Body:

    {
    "name": "HB123456",
    "type": "simple",
    "description": " ",
    "short_description": "",
    "status": "draft",
    "regular_price": "10.00",
    "acf": {
    "item_status": "On Hold"
    }
    }

    Can you provide an example of a POST/PUT request that shows the structure of the payload to update ACF fields?

  • The topic ‘Unable to update ACF fields’ is closed to new replies.