Skip to main content
POST
/
profile_acquirers
/
{profile_id}
/
{profile_acquirer_id}
Profile Acquirer - Update
curl --request POST \
  --url https://api.paymnt.cloud/profile_acquirers/{profile_id}/{profile_acquirer_id} \
  --header 'Content-Type: application/json' \
  --header 'api-key: <api-key>' \
  --data '
{
  "acquirer_assigned_merchant_id": "M987654321",
  "merchant_name": "Updated Retailer Name",
  "network": "MASTERCARD",
  "acquirer_bin": "987654",
  "acquirer_ica": "501299",
  "acquirer_fraud_rate": "0.02"
}
'
{
  "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.

Path Parameters

profile_id
string
required

The unique identifier for the Profile

profile_acquirer_id
string
required

The unique identifier for the Profile Acquirer

Body

application/json
acquirer_assigned_merchant_id
string | null
Example:

"M987654321"

merchant_name
string | null
Example:

"Updated Retailer Name"

network
string | null
Example:

"MASTERCARD"

acquirer_bin
string | null
Example:

"987654"

acquirer_ica
string | null
Example:

"501299"

acquirer_fraud_rate
number<double> | null
Example:

"0.02"

Response

Profile Acquirer updated

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"