Salesforce · JSON Structure

Salesforce Update External Credential Request Structure

Type: object Properties: 4 Required: 4
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

UpdateExternalCredentialRequest is a JSON Structure definition published by Salesforce, describing 4 properties, of which 4 are required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

masterLabel authenticationProtocol principals customHeaders

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "UpdateExternalCredentialRequest",
  "properties": {
    "masterLabel": {
      "type": "string"
    },
    "authenticationProtocol": {
      "type": "string"
    },
    "principals": {
      "type": "array",
      "description": "",
      "items": {
        "type": "object",
        "properties": {
          "principalName": {
            "type": "string"
          },
          "principalType": {
            "type": "string"
          },
          "sequenceNumber": {
            "type": "integer"
          }
        },
        "required": [
          "principalName",
          "principalType",
          "sequenceNumber"
        ]
      }
    },
    "customHeaders": {
      "type": "array",
      "description": "",
      "items": {
        "type": "object",
        "properties": {
          "headerName": {
            "type": "string"
          },
          "headerValue": {
            "type": "string"
          },
          "sequenceNumber": {
            "type": "integer"
          }
        },
        "required": [
          "headerName",
          "headerValue",
          "sequenceNumber"
        ]
      }
    }
  },
  "required": [
    "masterLabel",
    "authenticationProtocol",
    "principals",
    "customHeaders"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}