ToolJet/marketplace/plugins/authorizenet/lib/manifest.json
Ganesh Kumar 8dbaa5e4e2
Feat: Authorise.net plugin (#14652)
* Authorise net source code files

* fix for the claude genereted code for the authorizenet

* Removed repeted code

* Resolved review Commits

* Logo Changed

* parsing and some review comments

* fixed transaction key

* Fixed Error Messages for config Page

* chore: update version to 3.20.49-lts across all components

---------

Co-authored-by: Pratush <pratush@Pratushs-MacBook-Pro.local>
Co-authored-by: gsmithun4 <gsmithun4@gmail.com>
2025-12-04 22:26:36 +05:30

64 lines
No EOL
1.5 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
"title": "Authorize.Net datasource",
"description": "A schema defining Authorize.Net datasource",
"type": "api",
"source": {
"name": "Authorize.Net",
"kind": "authorizenet",
"exposedVariables": {
"isLoading": false,
"data": {},
"rawData": {}
},
"options": {
"apiLoginId": {
"type": "string"
},
"transactionKey": {
"type": "string",
"encrypted": true
},
"environment": {
"type": "string"
}
}
},
"defaults": {
"environment": {
"value": "sandbox"
}
},
"properties": {
"apiLoginId": {
"label": "API login ID",
"key": "apiLoginId",
"type": "text",
"description": "Your Authorize.Net API login ID"
},
"transactionKey": {
"label": "Transaction key",
"key": "transactionKey",
"type": "text",
"description": "Your Authorize.Net transaction key",
"encrypted": true
},
"environment": {
"label": "Environment",
"key": "environment",
"type": "dropdown",
"description": "Select the API environment",
"list": [
{
"label": "Sandbox [https://apitest.authorize.net]",
"value": "sandbox"
},
{
"label": "Production [https://api.authorize.net]",
"value": "production"
}
]
}
},
"required": ["apiLoginId", "transactionKey"]
}