SQL Server / Salesforce Platform APIs / Create and Save Quote Proposal API
Back to Collection Items
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
DECLARE @hr int
DECLARE @iTmp0 int
-- Important: Do not use nvarchar(max). See the warning about using nvarchar(max).
DECLARE @sTmp0 nvarchar(4000)
-- This example assumes the Chilkat API to have been previously unlocked.
-- See Global Unlock Sample for sample code.
DECLARE @http int
-- Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
DECLARE @success int
-- 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"
-- }
-- }
DECLARE @json int
-- Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @json OUT
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'saver', 'SBQQ.QuoteDocumentAPI.Save'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'model.name', 'test'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'model.quoteId', '<SFDC_ID>'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'model.templateId', '<SFDC_ID>'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'model.outputFormat', 'PDF'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'model.language', 'en_US'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'model.paperSize', 'Default'
-- Adds the "Authorization: Bearer <access_token>" header.
EXEC sp_OASetProperty @http, 'AuthToken', '<access_token>'
EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Content-Type', 'application/json'
DECLARE @resp int
EXEC sp_OAMethod @http, 'PostJson3', @resp OUT, 'https://domain.com/services/apexrest/SBQQ/ServiceRouter?loader=QuoteDocumentAPI.SaveProposal', 'application/json', @json
EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
IF @iTmp0 = 0
BEGIN
EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @json
RETURN
END
EXEC sp_OAGetProperty @resp, 'StatusCode', @iTmp0 OUT
PRINT @iTmp0
EXEC sp_OAGetProperty @resp, 'BodyStr', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @resp
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @json
END
GO
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": [
]
}