Back to Collection Items
Add-Type -Path "C:\chilkat\ChilkatDotNet47-x64\ChilkatDotNet47.dll"
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
$http = New-Object Chilkat.Http
# Adds the "Authorization: Bearer <access_token>" header.
$http.AuthToken = "<access_token>"
$http.SetRequestHeader("Accept","application/json")
$resp = $http.QuickRequest("PUT","https://domain.com/purchase_orders/3413/close?fields=[`"id`"]")
if ($http.LastMethodSuccess -eq $false) {
$($http.LastErrorText)
exit
}
$($resp.StatusCode)
$($resp.BodyStr)
Curl Command
curl -X PUT
-H "Authorization: Bearer <access_token>"
-H "Accept: application/json"
https://domain.com/purchase_orders/3413/close?fields=["id"]
Postman Collection Item JSON
{
"name": "Close / Soft_Close External PO",
"request": {
"method": "PUT",
"header": [
{
"key": "Accept",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": ""
},
"url": {
"raw": "{{URL}}/purchase_orders/3413/close?fields=[\"id\"]",
"host": [
"{{URL}}"
],
"path": [
"purchase_orders",
"3413",
"close"
],
"query": [
{
"key": "fields",
"value": "[\"id\"]"
}
]
}
},
"response": [
]
}