Back to Collection Items
// This example assumes the Chilkat API to have been previously unlocked.
// See Global_Ref.html">Global Unlock Sample for sample code.
http := chilkat.NewHttp()
var success bool
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {}
json := chilkat.NewJsonObject()
http.SetRequestHeader("Content-Type","application/json-patch+json")
// Adds the "Authorization: Bearer {{accessToken}}" header.
http.SetAuthToken("{{accessToken}}")
http.SetRequestHeader("Accept","text/plain, application/json, text/json")
sbRequestBody := chilkat.NewStringBuilder()
json.EmitSb(sbRequestBody)
resp := http.PTextSb("PUT","https://domain.com/v2/accounts/{{accountId}}/form_groups/{{formGroupId}}",sbRequestBody,"utf-8","application/json-patch+json",false,false)
if http.LastMethodSuccess() == false {
fmt.Println(http.LastErrorText())
http.DisposeHttp()
json.DisposeJsonObject()
sbRequestBody.DisposeStringBuilder()
return
}
fmt.Println(resp.StatusCode())
fmt.Println(resp.BodyStr())
resp.DisposeHttpResponse()
http.DisposeHttp()
json.DisposeJsonObject()
sbRequestBody.DisposeStringBuilder()
Curl Command
curl -X PUT
-H "Accept: text/plain, application/json, text/json"
-H "Content-Type: application/json-patch+json"
-H "Authorization: Bearer {{accessToken}}"
-d '{}'
https://domain.com/v2/accounts/{{accountId}}/form_groups/{{formGroupId}}
Postman Collection Item JSON
{
"name": "Renames a form group.",
"request": {
"method": "PUT",
"header": [
{
"key": "Accept",
"value": "text/plain, application/json, text/json"
},
{
"key": "Content-Type",
"value": "application/json-patch+json"
},
{
"key": "Authorization",
"value": "Bearer {{accessToken}}"
}
],
"body": {
"mode": "raw",
"raw": "{}"
},
"url": {
"raw": "{{baseUrl}}/v2/accounts/{{accountId}}/form_groups/{{formGroupId}}",
"host": [
"{{baseUrl}}"
],
"path": [
"v2",
"accounts",
"{{accountId}}",
"form_groups",
"{{formGroupId}}"
],
"variable": [
{
"key": "formGroupId",
"value": "{{formGroupId}}"
},
{
"key": "accountId",
"value": "{{accountId}}"
}
]
}
},
"response": [
]
}