Skip to main content
Solved

REST API Open Purchase

  • August 8, 2022
  • 2 replies
  • 120 views

Forum|alt.badge.img

 

i create extendedEndpoint for update Hold = false and result like in picture.

how to update hold = false with API?

Best answer by jinin

Hi @abdi 
You should use the “ReleaseFromHold” action to change the Hold status to Open/approval.
 


Url: Instance/entity/TEST/20.200.001/PurchaseOrder/ReleaseFromHold

Request:
{

    "entity": {

        "Type": {

            "value": "Normal"   //Drop-ship

        },

        "OrderNbr": {

            "value": "PO001587"

        }

    },

    "parameters": {

       

    }

}

 

2 replies

jinin
Pro I
Forum|alt.badge.img+11
  • Pro I
  • Answer
  • August 8, 2022

Hi @abdi 
You should use the “ReleaseFromHold” action to change the Hold status to Open/approval.
 


Url: Instance/entity/TEST/20.200.001/PurchaseOrder/ReleaseFromHold

Request:
{

    "entity": {

        "Type": {

            "value": "Normal"   //Drop-ship

        },

        "OrderNbr": {

            "value": "PO001587"

        }

    },

    "parameters": {

       

    }

}

 


Forum|alt.badge.img
  • Author
  • Jr Varsity III
  • August 8, 2022

Hi @jinin Thanks, you save my live