Chilkat Online Tools

Delphi (DLL) / New FreshBooks / Enable Payment Options On Invoice Profile

Back to Collection Items

var

begin
CkJsonObject_UpdateBool(json,'has_credit_card',True);CkJsonObject_UpdateBool(json,'has_ach_transfer',True);CkJsonObject_UpdateString(json,'gateway_name','stripe');CkHttp_putAuthToken(http,'<access_token>');


Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	-d '{"has_credit_card":true,"has_ach_transfer":true,"gateway_name":"stripe"}'
https://api.freshbooks.com/payments/account/{{accountid}}/invoice_profile/{{profileid}}/payment_options

Postman Collection Item JSON

{
  "name": "Enable Payment Options On Invoice Profile",
  "request": {
    "method": "POST",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "{\"has_credit_card\":true,\"has_ach_transfer\":true,\"gateway_name\":\"stripe\"}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "https://api.freshbooks.com/payments/account/{{accountid}}/invoice_profile/{{profileid}}/payment_options",
      "protocol": "https",
      "host": [
        "api",
        "freshbooks",
        "com"
      ],
      "path": [
        "payments",
        "account",
        "{{accountid}}",
        "invoice_profile",
        "{{profileid}}",
        "payment_options"
      ]
    }
  },
  "response": [
  ]
}