Help with setting up payment API moudle in make.com

My goal is to setup an http moudle in make .com , to get credit card information from a payment page each time the cusotmer pays, and also process the payment automaticlly .

The thing is , i don’t understand which API should i look for ?

This is the ducomentation

Your help is highly appriciated

Best.

Welcome to the Make community!

You can use the iCount integration.

samliewrequest private consultation

Join the Make unofficial Discord server!

1 Like

I aware of that, but charging a credit card from payment page is not list above the options.

Welcome to the Make community!

Make doesn’t have a module for this particular endpoint (Charge Credit-Card).

If the external service has a Developer API Reference/Documentation then you should be able to integrate the endpoints in Make using the app’s universal module (Make an API call) or generic HTTP “Make a request” module.

You can also suggest for it to be made in the Idea exchange. Don’t forget to search for it first, just in case someone already suggested it, so that you don’t end up creating a duplicate.
Screenshot_2024-01-17_130153

If you need assistance in setting up the app’s universal module, or the generic HTTP module, please provide additional information about what you have tried with regards to the external service’s Developer API Reference – how you are setting the connection up, a link to the endpoint are you trying to connect to, and what errors you are encountering.

You can also complete this brand new course/tutorial in the Make Academy on how to use external APIs — API calls with HTTP modules

  • API and Endpoints
  • Header and body
  • Multipart/form-data
  • OAuth 2.0

samliewrequest private consultation

Join the Make unofficial Discord server!

1 Like

Thank you very much for your help !

This is the payment link

I mapped the url into the url

Headers-I have i mapped Content-Type and application/json

In the body type i mapped the json from the API Reference

curl --request POST
| Powered by iCount

–header ‘Content-Type: application/json’
–data ‘{
“sid”: “string”,
“cid”: “string”,
“user”: “string”,
“pass”: “string”,
“client_id”: 0,
“custom_client_id”: “string”,
“vat_id”: 0,
“email”: “string”,
“client_name”: “string”,
“sum”: -3.402823669209385e+38,
“num_of_payments”: 0,
“first_payment”: -3.402823669209385e+38,
“is_credit”: true,
“currency_id”: 0,
“currency_code”: “string”,
“currency”: “string”,
“cc_token_id”: 0,
“cc_number”: 0,
“cc_type”: “string”,
“cc_cvv”: 0,
“cc_validity”: 0,
“cc_holder_id”: 0,
“cc_holder_name”: “string”,
“payment_description”: “string”,
“is_test”: true
}’

Now each time a cusotmer fills the form, this moudle shoud be triggerd ? of course i can scedule it , what is the best way to test it out ?