Chilkat Online Tools

TCL / Salesforce Platform APIs / Create and Save Quote Proposal API

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 JSON: Generate Code to Create JSON

# The following JSON is sent in the request body.

# {
#   "saver": "SBQQ.QuoteDocumentAPI.Save",
#   "model": {
#     "name": "test",
#     "quoteId": "<SFDC_ID>",
#     "templateId": "<SFDC_ID>",
#     "outputFormat": "PDF",
#     "language": "en_US",
#     "paperSize": "Default"
#   }
# }

set json [new_CkJsonObject]

CkJsonObject_UpdateString $json "saver" "SBQQ.QuoteDocumentAPI.Save"
CkJsonObject_UpdateString $json "model.name" "test"
CkJsonObject_UpdateString $json "model.quoteId" "<SFDC_ID>"
CkJsonObject_UpdateString $json "model.templateId" "<SFDC_ID>"
CkJsonObject_UpdateString $json "model.outputFormat" "PDF"
CkJsonObject_UpdateString $json "model.language" "en_US"
CkJsonObject_UpdateString $json "model.paperSize" "Default"

# Adds the "Authorization: Bearer <access_token>" header.
CkHttp_put_AuthToken $http "<access_token>"
CkHttp_SetRequestHeader $http "Content-Type" "application/json"

set resp [new_CkHttpResponse]

set success [CkHttp_HttpJson $http "POST" "https://domain.com/services/apexrest/SBQQ/ServiceRouter?loader=QuoteDocumentAPI.SaveProposal" $json "application/json" $resp]
if {$success == 0} then {
    puts [CkHttp_lastErrorText $http]
    delete_CkHttp $http
    delete_CkJsonObject $json
    delete_CkHttpResponse $resp
    exit
}

puts [CkHttpResponse_get_StatusCode $resp]
puts [CkHttpResponse_bodyStr $resp]

delete_CkHttp $http
delete_CkJsonObject $json
delete_CkHttpResponse $resp

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	-H "Content-Type: application/json"
	-d '{
    "saver": "SBQQ.QuoteDocumentAPI.Save",
    "model": {
        "name": "test",
        "quoteId": "<SFDC_ID>",
        "templateId": "<SFDC_ID>",
        "outputFormat": "PDF",
        "language": "en_US",
        "paperSize": "Default"
    }
}'
https://domain.com/services/apexrest/SBQQ/ServiceRouter?loader=QuoteDocumentAPI.SaveProposal

Postman Collection Item JSON

{
  "name": "Create and Save Quote Proposal API",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "type": "text",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"saver\": \"SBQQ.QuoteDocumentAPI.Save\",\n    \"model\": {\n        \"name\": \"test\",\n        \"quoteId\": \"<SFDC_ID>\",\n        \"templateId\": \"<SFDC_ID>\",\n        \"outputFormat\": \"PDF\",\n        \"language\": \"en_US\",\n        \"paperSize\": \"Default\"\n    }\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{_endpoint}}/services/apexrest/SBQQ/ServiceRouter?loader=QuoteDocumentAPI.SaveProposal",
      "host": [
        "{{_endpoint}}"
      ],
      "path": [
        "services",
        "apexrest",
        "SBQQ",
        "ServiceRouter"
      ],
      "query": [
        {
          "key": "loader",
          "value": "QuoteDocumentAPI.SaveProposal"
        }
      ]
    },
    "description": "The Read Product API takes the request’s product ID, pricebook ID, and currency code and returns a Product model. The Product model loads the product from your catalog when the user requests it.\nAvailable in: Salesforce CPQ Summer ’16 and later\nSpecial Access Rules: Users must have read access to the product2 object.\n\nhttps://developer.salesforce.com/docs/atlas.en-us.cpq_dev_api.meta/cpq_dev_api/cpq_api_read_product.htm"
  },
  "response": [
  ]
}