Salesforce · Schema

CreateExternalCredentialRequest

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
developerName string
masterLabel string
authenticationProtocol string
principals array
customHeaders array
View JSON Schema on GitHub

JSON Schema

salesforce-create-external-credential-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "developerName": {
      "type": "string",
      "example": "example_value"
    },
    "masterLabel": {
      "type": "string",
      "example": "example_value"
    },
    "authenticationProtocol": {
      "type": "string",
      "example": "example_value"
    },
    "principals": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "principalName": {
            "type": "string",
            "example": "example_value"
          },
          "principalType": {
            "type": "string",
            "example": "example_value"
          },
          "sequenceNumber": {
            "type": "integer",
            "example": 10
          }
        },
        "required": [
          "principalName",
          "principalType",
          "sequenceNumber"
        ]
      }
    },
    "customHeaders": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "headerName": {
            "type": "string",
            "example": "example_value"
          },
          "headerValue": {
            "type": "string",
            "example": "example_value"
          },
          "sequenceNumber": {
            "type": "integer",
            "example": 10
          }
        },
        "required": [
          "headerName",
          "headerValue",
          "sequenceNumber"
        ]
      }
    }
  },
  "required": [
    "developerName",
    "masterLabel",
    "authenticationProtocol",
    "principals",
    "customHeaders"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CreateExternalCredentialRequest"
}