Back to Collection Items
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Dim http As New Chilkat.Http
Dim success As Boolean
// Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = "<access_token>"
Dim resp As New Chilkat.HttpResponse
success = http.HttpNoBody("PUT","https://domain.com/contracts/:id/submit_for_approval?fields=[""id"",""status""]",resp)
If (success = False) Then
System.DebugLog(http.LastErrorText)
Return
End If
System.DebugLog(Str(resp.StatusCode))
System.DebugLog(resp.BodyStr)
Curl Command
curl -X PUT
-H "Authorization: Bearer <access_token>"
https://domain.com/contracts/:id/submit_for_approval?fields=["id","status"]
Postman Collection Item JSON
{
"name": "Submit for approval",
"request": {
"method": "PUT",
"header": [
],
"url": {
"raw": "{{URL}}/contracts/:id/submit_for_approval?fields=[\"id\",\"status\"]",
"host": [
"{{URL}}"
],
"path": [
"contracts",
":id",
"submit_for_approval"
],
"query": [
{
"key": "fields",
"value": "[\"id\",\"status\"]"
}
],
"variable": [
{
"key": "id",
"value": "375"
}
]
}
},
"response": [
]
}