PUT
/
providers
/
{connection_id}
curl --request PUT \
  --url https://api.live.paisr.tech/{version}/providers/{connection_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "merchant_id": "<string>",
  "secret_key": "<string>"
}'
{
  "success": true,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

connection_id
string
required

The Provider Connection ID.

Body

application/json
The provider specific credentials.
merchant_id
string
required

Provider specific Merchant ID.

secret_key
string
required

Provider specific API credentials.

Response

200
application/json
Successfully updated provider connection.
success
boolean

Indicates if the request was successful.

message
string

A descriptive message regarding the result.