Back to Collection Items
load ./chilkat.dll
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
set http [new_CkHttp]
# Use this online tool to generate code from sample XML: Generate Code to Create XML
# The following XML is sent in the request body.
# <?xml version="1.0" encoding="UTF-8"?>
# <contract-term>
# <name>API Contract Term 1</name>
# <contract-term-type>PriceRangeContractTerm</contract-term-type>
# <use-pct-discounts type="boolean">true</use-pct-discounts>
# <tier-1-upper-bound type="decimal">15.0</tier-1-upper-bound>
# <tier-1-disc-pct type="decimal">6.0</tier-1-disc-pct>
# <tier-2-disc-pct type="decimal">7.0</tier-2-disc-pct>
# </contract-term>
#
set xml [new_CkXml]
CkXml_put_Tag $xml "contract-term"
CkXml_UpdateChildContent $xml "name" "API Contract Term 1"
CkXml_UpdateChildContent $xml "contract-term-type" "PriceRangeContractTerm"
CkXml_UpdateAttrAt $xml "use-pct-discounts" 1 "type" "boolean"
CkXml_UpdateChildContent $xml "use-pct-discounts" "true"
CkXml_UpdateAttrAt $xml "tier-1-upper-bound" 1 "type" "decimal"
CkXml_UpdateChildContent $xml "tier-1-upper-bound" "15.0"
CkXml_UpdateAttrAt $xml "tier-1-disc-pct" 1 "type" "decimal"
CkXml_UpdateChildContent $xml "tier-1-disc-pct" "6.0"
CkXml_UpdateAttrAt $xml "tier-2-disc-pct" 1 "type" "decimal"
CkXml_UpdateChildContent $xml "tier-2-disc-pct" "7.0"
# Adds the "Authorization: Bearer <access_token>" header.
CkHttp_put_AuthToken $http "<access_token>"
set sbRequestBody [new_CkStringBuilder]
CkXml_GetXmlSb $xml $sbRequestBody
# resp is a CkHttpResponse
set resp [CkHttp_PTextSb $http "POST" "https://domain.com/contracts/:id/contract_terms" $sbRequestBody "utf-8" "application/xml" 0 0]
if {[CkHttp_get_LastMethodSuccess $http] == 0} then {
puts [CkHttp_lastErrorText $http]
delete_CkHttp $http
delete_CkXml $xml
delete_CkStringBuilder $sbRequestBody
exit
}
puts [CkHttpResponse_get_StatusCode $resp]
puts [CkHttpResponse_bodyStr $resp]
delete_CkHttpResponse $resp
delete_CkHttp $http
delete_CkXml $xml
delete_CkStringBuilder $sbRequestBody
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
-d '<?xml version="1.0" encoding="UTF-8"?>
<contract-term>
<name>API Contract Term 1</name>
<contract-term-type>PriceRangeContractTerm</contract-term-type>
<use-pct-discounts type="boolean">true</use-pct-discounts>
<tier-1-upper-bound type="decimal">15.0</tier-1-upper-bound>
<tier-1-disc-pct type="decimal">6.0</tier-1-disc-pct>
<tier-2-disc-pct type="decimal">7.0</tier-2-disc-pct>
</contract-term>'
https://domain.com/contracts/:id/contract_terms
Postman Collection Item JSON
{
"name": "Add contract term",
"request": {
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<contract-term>\n <name>API Contract Term 1</name>\n <contract-term-type>PriceRangeContractTerm</contract-term-type>\n <use-pct-discounts type=\"boolean\">true</use-pct-discounts>\n <tier-1-upper-bound type=\"decimal\">15.0</tier-1-upper-bound>\n <tier-1-disc-pct type=\"decimal\">6.0</tier-1-disc-pct>\n <tier-2-disc-pct type=\"decimal\">7.0</tier-2-disc-pct>\n</contract-term>",
"options": {
"raw": {
"language": "xml"
}
}
},
"url": {
"raw": "{{URL}}/contracts/:id/contract_terms",
"host": [
"{{URL}}"
],
"path": [
"contracts",
":id",
"contract_terms"
],
"variable": [
{
"key": "id",
"value": "377",
"type": "string"
}
]
}
},
"response": [
]
}