Skip to main content
POST
/
profile_acquirers
Profile Acquirer - Create
curl --request POST \
  --url https://api.paymnt.cloud/profile_acquirers \
  --header 'Content-Type: application/json' \
  --header 'api-key: <api-key>' \
  --data '
{
  "acquirer_assigned_merchant_id": "M123456789",
  "merchant_name": "NewAge Retailer",
  "network": "VISA",
  "acquirer_bin": "456789",
  "acquirer_fraud_rate": 0.01,
  "profile_id": "pro_ky0yNyOXXlA5hF8JzE5q"
}
'
{
  "profile_acquirer_id": "pro_acq_LCRdERuylQvNQ4qh3QE0",
  "acquirer_assigned_merchant_id": "M123456789",
  "merchant_name": "NewAge Retailer",
  "network": "VISA",
  "acquirer_bin": "456789",
  "acquirer_fraud_rate": 0.01,
  "profile_id": "pro_ky0yNyOXXlA5hF8JzE5q",
  "acquirer_ica": "401288"
}

Authorizations

api-key
string
header
required

Use the API key created under your merchant account from the PaymntCloud dashboard. API key is used to authenticate API requests from your merchant server only. Don't expose this key on a website or embed it in a mobile application.

Body

application/json
acquirer_assigned_merchant_id
string
required

The merchant id assigned by the acquirer

Example:

"M123456789"

merchant_name
string
required

merchant name

Example:

"NewAge Retailer"

network
string
required

Network provider

Example:

"VISA"

acquirer_bin
string
required

Acquirer bin

Example:

"456789"

acquirer_fraud_rate
number<double>
required

Fraud rate for the particular acquirer configuration

Example:

0.01

profile_id
string
required

Parent profile id to link the acquirer account with

Example:

"pro_ky0yNyOXXlA5hF8JzE5q"

acquirer_ica
string | null

Acquirer ica provided by acquirer

Example:

"401288"

Response

Profile Acquirer created

profile_acquirer_id
string
required

The unique identifier of the profile acquirer

Example:

"pro_acq_LCRdERuylQvNQ4qh3QE0"

acquirer_assigned_merchant_id
string
required

The merchant id assigned by the acquirer

Example:

"M123456789"

merchant_name
string
required

Merchant name

Example:

"NewAge Retailer"

network
string
required

Network provider

Example:

"VISA"

acquirer_bin
string
required

Acquirer bin

Example:

"456789"

acquirer_fraud_rate
number<double>
required

Fraud rate for the particular acquirer configuration

Example:

0.01

profile_id
string
required

Parent profile id to link the acquirer account with

Example:

"pro_ky0yNyOXXlA5hF8JzE5q"

acquirer_ica
string | null

Acquirer ica provided by acquirer

Example:

"401288"