Last active
January 19, 2026 16:07
-
-
Save hanzelkatomas/075933cb180630fb8ef8c9e143a1f314 to your computer and use it in GitHub Desktop.
capabilities JSON
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "syncTypes": [ | |
| { | |
| "syncType": "example", | |
| "solutionSpecific": "AR", | |
| "name": "example Sync", | |
| "onlyManual": true, | |
| "isPrivileged": false, | |
| "parameters": [ | |
| { | |
| "name": "duration", | |
| "label": "My duration", | |
| "type": "Duration", | |
| "defaultValue": null, | |
| "description": "Type in duration", | |
| "options": null, | |
| "required": true | |
| }, | |
| { | |
| "name": "scheduledDateTime", | |
| "label": "Scheduled Date \u0026 Time", | |
| "type": "DateTime", | |
| "defaultValue": null, | |
| "description": "Select when to schedule the sync", | |
| "options": null, | |
| "required": true | |
| }, | |
| { | |
| "name": "startDateTime", | |
| "label": "Start Date \u0026 Time", | |
| "type": "DateTime", | |
| "defaultValue": "2024-01-01T09:00:00", | |
| "description": "Starting date and time for the sync period", | |
| "options": null, | |
| "required": null | |
| }, | |
| { | |
| "name": "endDateTime", | |
| "label": "End Date \u0026 Time", | |
| "type": "DateTime", | |
| "defaultValue": null, | |
| "description": "Ending date and time for the sync period", | |
| "options": null, | |
| "required": true | |
| }, | |
| { | |
| "name": "duration2", | |
| "label": "Second duration (default value)", | |
| "type": "Duration", | |
| "defaultValue": { | |
| "value": 1, | |
| "unit": "days" | |
| }, | |
| "description": "Type in duration", | |
| "options": null, | |
| "required": null | |
| }, | |
| { | |
| "name": "number", | |
| "label": "Number input", | |
| "type": "Number", | |
| "defaultValue": 3, | |
| "description": "This is number", | |
| "options": null, | |
| "required": null | |
| }, | |
| { | |
| "name": "entities", | |
| "label": "Entities", | |
| "type": "Multiselect", | |
| "defaultValue": null, | |
| "description": "Select entities to sync", | |
| "options": [ | |
| { | |
| "value": "Vendor", | |
| "label": "Vendor" | |
| }, | |
| { | |
| "value": "Currency", | |
| "label": "Currency" | |
| }, | |
| { | |
| "value": "UnitOfMeasure", | |
| "label": "Unit of Measure" | |
| }, | |
| { | |
| "value": "Item", | |
| "label": "Item" | |
| }, | |
| { | |
| "value": "PaymentTerm", | |
| "label": "Payment Term" | |
| }, | |
| { | |
| "value": "TaxRate", | |
| "label": "Tax Rate" | |
| }, | |
| { | |
| "value": "Account", | |
| "label": "Account" | |
| }, | |
| { | |
| "value": "PurchaseOrder", | |
| "label": "Purchase Order" | |
| }, | |
| { | |
| "value": "Receiving", | |
| "label": "Receiving" | |
| }, | |
| { | |
| "value": "CreditMemo", | |
| "label": "Credit Memo" | |
| }, | |
| { | |
| "value": "CustomerPayment", | |
| "label": "Customer Payment" | |
| }, | |
| { | |
| "value": "Employee", | |
| "label": "Employee" | |
| }, | |
| { | |
| "value": "Invoice", | |
| "label": "Invoice" | |
| }, | |
| { | |
| "value": "PaymentMethod", | |
| "label": "Payment Method" | |
| }, | |
| { | |
| "value": "VendorPayment", | |
| "label": "Vendor Payment" | |
| }, | |
| { | |
| "value": "Customer", | |
| "label": "Customer" | |
| } | |
| ], | |
| "required": true | |
| } | |
| ] | |
| }, | |
| { | |
| "syncType": "hourly", | |
| "solutionSpecific": "AR", | |
| "name": "Hourly Incremental Sync", | |
| "onlyManual": false, | |
| "isPrivileged": false, | |
| "parameters": null | |
| }, | |
| { | |
| "syncType": "onlyOpen", | |
| "solutionSpecific": "AR", | |
| "name": "Initial Full Sync", | |
| "onlyManual": true, | |
| "isPrivileged": false, | |
| "parameters": [ | |
| { | |
| "name": "startDate", | |
| "label": "Start Date", | |
| "type": "Date", | |
| "defaultValue": null, | |
| "description": null, | |
| "options": null, | |
| "required": null | |
| }, | |
| { | |
| "name": "endDate", | |
| "label": "End Date", | |
| "type": "Date", | |
| "defaultValue": null, | |
| "description": null, | |
| "options": null, | |
| "required": null | |
| } | |
| ] | |
| }, | |
| { | |
| "syncType": "onlyClosed", | |
| "solutionSpecific": "AR", | |
| "name": "Historical Sync", | |
| "onlyManual": true, | |
| "isPrivileged": false, | |
| "parameters": [ | |
| { | |
| "name": "startDate", | |
| "label": "Start Date", | |
| "type": "Date", | |
| "defaultValue": null, | |
| "description": null, | |
| "options": null, | |
| "required": null | |
| }, | |
| { | |
| "name": "endDate", | |
| "label": "End Date", | |
| "type": "Date", | |
| "defaultValue": null, | |
| "description": null, | |
| "options": null, | |
| "required": null | |
| } | |
| ] | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment