Salesforce · Schema
SuccessfulCreateNamedCredential
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| calloutOptions | object | |
| calloutUrl | string | |
| customHeaders | array | |
| developerName | string | |
| externalCredentials | array | |
| id | string | |
| masterLabel | string | |
| parameters | array | |
| type | string | |
| url | string |
JSON Schema
{
"type": "object",
"properties": {
"calloutOptions": {
"type": "object",
"properties": {
"allowMergeFieldsInBody": {
"type": "boolean",
"example": true
},
"allowMergeFieldsInHeader": {
"type": "boolean",
"example": true
},
"generateAuthorizationHeader": {
"type": "boolean",
"example": true
}
},
"required": [
"allowMergeFieldsInBody",
"allowMergeFieldsInHeader",
"generateAuthorizationHeader"
]
},
"calloutUrl": {
"type": "string",
"example": "https://www.example.com"
},
"customHeaders": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "object",
"properties": {
"headerName": {
"type": "string",
"example": "example_value"
},
"headerValue": {
"type": "string",
"example": "example_value"
},
"id": {
"type": "string",
"example": "abc123"
},
"sequenceNumber": {
"type": "integer",
"example": 10
}
},
"required": [
"headerName",
"headerValue",
"id",
"sequenceNumber"
]
}
},
"developerName": {
"type": "string",
"example": "example_value"
},
"externalCredentials": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "object",
"properties": {
"developerName": {
"type": "string",
"example": "example_value"
},
"id": {
"type": "string",
"example": "abc123"
},
"masterLabel": {
"type": "string",
"example": "example_value"
},
"url": {
"type": "string",
"example": "https://www.example.com"
}
},
"required": [
"developerName",
"id",
"masterLabel",
"url"
]
}
},
"id": {
"type": "string",
"example": "abc123"
},
"masterLabel": {
"type": "string",
"example": "example_value"
},
"parameters": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "string"
}
},
"type": {
"type": "string",
"example": "example_value"
},
"url": {
"type": "string",
"example": "https://www.example.com"
}
},
"required": [
"calloutOptions",
"calloutUrl",
"customHeaders",
"developerName",
"externalCredentials",
"id",
"masterLabel",
"parameters",
"type",
"url"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "SuccessfulCreateNamedCredential"
}