Salesforce · Schema
UpdateCredentialRequest
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| externalCredential | string | |
| authenticationProtocol | string | |
| principalName | string | |
| principalType | string | |
| credentials | object |
JSON Schema
{
"type": "object",
"properties": {
"externalCredential": {
"type": "string",
"example": "example_value"
},
"authenticationProtocol": {
"type": "string",
"example": "example_value"
},
"principalName": {
"type": "string",
"example": "example_value"
},
"principalType": {
"type": "string",
"example": "example_value"
},
"credentials": {
"type": "object",
"properties": {
"testCredential": {
"type": "object",
"properties": {
"value": {
"type": "string",
"example": "example_value"
},
"encrypted": {
"type": "boolean",
"example": true
}
},
"required": [
"value",
"encrypted"
]
}
},
"required": [
"testCredential"
]
}
},
"required": [
"externalCredential",
"authenticationProtocol",
"principalName",
"principalType",
"credentials"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "UpdateCredentialRequest"
}