@itentialopensource/adapter-tcpwave
Version:
This adapter integrates with system described as: tcpwaveRestapiStore.
72 lines • 1.68 kB
JSON
{
"$id": "schema.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": "listByPage",
"enum": [
"listByPage",
"roleslist",
"auditroleslist",
"getdetails",
"contactPage",
"postContactGet",
"postContactUpdate",
"getContactList",
"postContactDelete",
"postContactAdd"
],
"external_name": "ph_request_type"
},
"organizationName": {
"type": "string",
"description": "Organization Name required for listing all Contacts associated with that organization",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "organization_name"
},
"firstName": {
"type": "string",
"description": "First Name",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "first_name"
},
"middleName": {
"type": "string",
"description": "Middle Name",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "middle_name"
},
"lastName": {
"type": "string",
"description": "Last Name",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "last_name"
}
},
"definitions": {}
}