{"id":18716352,"url":"https://github.com/killbill/killbill-forte-plugin","last_synced_at":"2025-10-07T19:06:14.815Z","repository":{"id":24596595,"uuid":"28005006","full_name":"killbill/killbill-forte-plugin","owner":"killbill","description":"Plugin to use Forte as a gateway","archived":false,"fork":false,"pushed_at":"2016-11-17T14:09:40.000Z","size":76,"stargazers_count":0,"open_issues_count":0,"forks_count":4,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-12-28T10:28:59.759Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://killbill.io","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/killbill.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-12-14T19:22:13.000Z","updated_at":"2018-06-16T19:30:56.000Z","dependencies_parsed_at":"2022-08-23T00:51:01.995Z","dependency_job_id":null,"html_url":"https://github.com/killbill/killbill-forte-plugin","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/killbill%2Fkillbill-forte-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/killbill%2Fkillbill-forte-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/killbill%2Fkillbill-forte-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/killbill%2Fkillbill-forte-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/killbill","download_url":"https://codeload.github.com/killbill/killbill-forte-plugin/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239581802,"owners_count":19662958,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-07T13:12:25.532Z","updated_at":"2025-10-07T19:06:14.717Z","avatar_url":"https://github.com/killbill.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"killbill-forte-plugin\n======================\n\nPlugin to use [Forte](http://www.forte.net/) as a gateway.\n\nRelease builds are available on [Maven Central](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.kill-bill.billing.plugin.java%22%20AND%20a%3A%22forte-plugin%22) with coordinates `org.kill-bill.billing.plugin.java:forte-plugin`.\n\nKill Bill compatibility\n-----------------------\n\n| Plugin version | Kill Bill version |\n| -------------: | ----------------: |\n| 0.1.y          | 0.14.z            |\n| 0.2.y          | 0.16.z            |\n| 0.3.y          | 0.18.z            |\n\nRequirements\n------------\n\nThe plugin needs a database. The latest version of the schema can be found [here](https://github.com/killbill/killbill-forte-plugin/blob/master/src/main/resources/ddl.sql).\n\nConfiguration\n-------------\n\nThe following properties are required:\n\n* `org.killbill.billing.plugin.forte.merchantId`: your merchant id\n* `org.killbill.billing.plugin.forte.password`: your password\n* `org.killbill.billing.plugin.forte.host`: AGI host (e.g. www.paymentsgateway.net)\n* `org.killbill.billing.plugin.forte.port`: AGI port (e.g. 6050)\n* `org.killbill.billing.plugin.forte.apiLoginId`: your API login id\n* `org.killbill.billing.plugin.forte.secureTransactionKey`: your transaction key\n* `org.killbill.billing.plugin.forte.test`: _true_ to use the sandbox\n\nThese properties can be specified globally via System Properties or on a per tenant basis:\n\n```\ncurl -v \\\n     -X POST \\\n     -u admin:password \\\n     -H 'X-Killbill-ApiKey: bob' \\\n     -H 'X-Killbill-ApiSecret: lazar' \\\n     -H 'X-Killbill-CreatedBy: admin' \\\n     -H 'Content-Type: text/plain' \\\n     -d 'org.killbill.billing.plugin.forte.merchantId=AAA\norg.killbill.billing.plugin.forte.password=BBB\norg.killbill.billing.plugin.forte.host=CCC\norg.killbill.billing.plugin.forte.port=DDD\norg.killbill.billing.plugin.forte.apiLoginId=EEE\norg.killbill.billing.plugin.forte.secureTransactionKey=FFF\norg.killbill.billing.plugin.forte.test=true' \\\n     http://127.0.0.1:8080/1.0/kb/tenants/uploadPluginConfig/killbill-forte\n```\n\nUsage\n-----\n\nAdd a payment method (Bank Of America checking account):\n\n```\ncurl -v \\\n     -u admin:password \\\n     -H \"X-Killbill-ApiKey: bob\" \\\n     -H \"X-Killbill-ApiSecret: lazar\" \\\n     -H \"Content-Type: application/json\" \\\n     -H \"X-Killbill-CreatedBy: demo\" \\\n     -X POST \\\n     --data-binary '{\n       \"pluginName\": \"killbill-forte\",\n       \"pluginInfo\": {\n         \"properties\": [\n           {\n             \"key\": \"accountHolderName\",\n             \"value\": \"Bob Smith\"\n           },\n           {\n             \"key\": \"trn\",\n             \"value\": \"122400724\"\n           },\n           {\n             \"key\": \"accountNumber\",\n             \"value\": \"123456789\"\n           },\n           {\n             \"key\": \"accountType\",\n             \"value\": \"C\"\n           }\n         ]\n       }\n     }' \\\n     \"http://127.0.0.1:8080/1.0/kb/accounts/\u003cACCOUNT_ID\u003e/paymentMethods?isDefault=true\"\n```\n\nNotes:\n* Make sure to replace *ACCOUNT_ID* with the id of the Kill Bill account\n\nTo trigger a payment:\n\n```\ncurl -v \\\n     -u admin:password \\\n     -H \"X-Killbill-ApiKey: bob\" \\\n     -H \"X-Killbill-ApiSecret: lazar\" \\\n     -H \"Content-Type: application/json\" \\\n     -H \"X-Killbill-CreatedBy: demo\" \\\n     -X POST \\\n     --data-binary '{\"transactionType\":\"PURCHASE\",\"amount\":\"500\",\"currency\":\"USD\",\"transactionExternalKey\":\"INV-'$(uuidgen)'-PURCHASE\"}' \\\n    \"http://127.0.0.1:8080/1.0/kb/accounts/\u003cACCOUNT_ID\u003e/payments\"\n```\n\nNotes:\n* Make sure to replace *ACCOUNT_ID* with the id of the Kill Bill account\n\nYou can verify the payment via:\n\n```\ncurl -v \\\n     -u admin:password \\\n     -H \"X-Killbill-ApiKey: bob\" \\\n     -H \"X-Killbill-ApiSecret: lazar\" \\\n     \"http://127.0.0.1:8080/1.0/kb/accounts/\u003cACCOUNT_ID\u003e/payments?withPluginInfo=true\"\n```\n\nNotes:\n* Make sure to replace *ACCOUNT_ID* with the id of the Kill Bill account\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkillbill%2Fkillbill-forte-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkillbill%2Fkillbill-forte-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkillbill%2Fkillbill-forte-plugin/lists"}