Share via

SharePoint Online - Power Automate Flow HTTP Request REST API - System Update - validateUpdateListItem

Daniel Chee 276 Reputation points
Nov 10, 2022, 2:34 AM

Hi MS Q&A,

Seeking advice and information if it is possible to update a List Item's Hyperlink Column field without triggering a version update via the following API and set the URL and Description values.

_api/web/lists/GetByTitle('SampleList')/items(1)/validateUpdateListItem

If yes, seeking advice on what the sample Body syntax would be.

Example of current body syntax that only works to set the Hyperlink column field with both URL and Description properties set to same values.

258867-image.png

Appreciate any advice provided, thank you.

SharePoint
SharePoint
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
11,230 questions
0 comments No comments
{count} votes

Accepted answer
  1. Tong Zhang_MSFT 9,251 Reputation points
    Nov 10, 2022, 8:59 AM

    Hi @Daniel Chee ,

    I'm glad to hear you solve the problem ,if you have any issue about SharePoint, you are welcome to raise a ticket in this forum.

    By the way, since the Microsoft Q&A community has a policy that "The question author cannot accept their own answer. They can only accept answers by others." and according to the scenario introduced here: Answering your own questions on Microsoft Q&A, I would make a brief summary of this thread:

    [SharePoint Online - Power Automate Flow HTTP Request REST API - System Update - validateUpdateListItem]

    Issue Symptom:

    Seeking advice and information if it is possible to update a List Item's Hyperlink Column field without triggering a version update via the following API and set the URL and Description values.

    _api/web/lists/GetByTitle('SampleList')/items(1)/validateUpdateListItem  
    

    If yes, seeking advice on what the sample Body syntax would be.

    Example of current body syntax that only works to set the Hyperlink column field with both URL and Description properties set to same values.

    Solutions:

    Managed to test successfully the following syntax works to help set differing values for both the Description and URL properties for a Hyperlink column field:

    {  
    "FieldName": "ItemLink",  
    "FieldValue": "http://www.samplelink.com, Sample Link Description"  
    }  
    

    You could click the "Accept Answer" button for this summary to close this thread, and this can make it easier for other community member's to see the useful information when reading this thread. Thanks for your understanding!


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.



1 additional answer

Sort by: Most helpful
  1. Daniel Chee 276 Reputation points
    Nov 10, 2022, 3:23 AM

    Managed to test successfully the following syntax works to help set differing values for both the Description and URL properties for a Hyperlink column field:

    {
    "FieldName": "ItemLink",
    "FieldValue": "http://www.samplelink.com, Sample Link Description"
    }

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.