Salesforce · Schema

CreateandSaveQuoteProposalAPIRequest

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
saver string
model object
View JSON Schema on GitHub

JSON Schema

salesforce-createand-save-quote-proposal-api-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "saver": {
      "type": "string",
      "example": "example_value"
    },
    "model": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "example": "Example Title"
        },
        "quoteId": {
          "type": "string",
          "example": "500123"
        },
        "templateId": {
          "type": "string",
          "example": "500123"
        },
        "outputFormat": {
          "type": "string",
          "example": "example_value"
        },
        "language": {
          "type": "string",
          "example": "example_value"
        },
        "paperSize": {
          "type": "string",
          "example": "example_value"
        }
      },
      "required": [
        "name",
        "quoteId",
        "templateId",
        "outputFormat",
        "language",
        "paperSize"
      ]
    }
  },
  "required": [
    "saver",
    "model"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CreateandSaveQuoteProposalAPIRequest"
}