@itentialopensource/adapter-microsoft_dynamics
Version:
This adapter integrates with system described as: Microsoft Dynamics 365: Business Applications
65 lines • 1.52 kB
JSON
{
"$id": ".system-schemaTokenReq.json",
"type": "object",
"schema": "http://json-schema.org/draft-07/schema#",
"translate": true,
"dynamicfields": true,
"properties": {
"ph_request_type": {
"type": "string",
"description": "type of request (internal to adapter)",
"default": "getToken",
"enum": [
"getToken"
],
"external_name": "ph_request_type"
},
"client_id": {
"type": "string",
"description": "client id for azure",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "client_id"
},
"grant_type": {
"type": "string",
"description": "grant type for azure",
"default":"client_credentials",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "grant_type"
},
"resource": {
"type": "string",
"default":"https://btcce-ut.crm.dynamics.com",
"description": "the resource of the application endpoint",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "resource"
},
"client_secret": {
"type": "string",
"description": "client secret",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "client_secret"
}
},
"definitions": {}
}