Payment API
Account Details
- Overview
- Create an account
- Update an account
- Get account information
Authorisation Control
- Overview
- Authorisation Control Webhook
Authorisation Forwarding
- Overview
- Forward authorisation webhook
Card details
- Overview
- Create card
- Update card
- Overview
- PATCHUpdate a Multi-application card
- POSTUpdate card
- PATCHUpdate a Mastercard branded card
- PATCHUpdate a virtual Mastercard branded card
- PATCHUpdate a debit Mastercard branded card
- PATCHUpdate a virtual debit Mastercard branded card
- PATCHUpdate a VISA branded card
- PATCHUpdate a virtual VISA branded card
- PATCHUpdate a debit VISA branded card
- PATCHUpdate a virtual debit VISA branded card
- PATCHUpdate a fleet card
- PATCHUpdate card (Deprecated)
- Get application
- Update application
- Get card
- Get plastic
- Get EMV scripts
- Update plastic
Customer
- Overview
- Get customer information
- Create a customer
- Update a customer
- Customer hierarchy
Exchange Rates API
- Overview
- Get ECB exchange rate
- Get ECB supported currencies
- Get FX exchange rates
ID
- Overview
- Initiate 3rd party authentication flow
- Callback to complete authentication flow
Instalment
- Overview
- Instalment Operations
Invoice
- Overview
- Get invoice information
- Update an invoice
Notification
- Overview
- Receive a notification
PIN
- Overview
- PIN operations with pre-shared key
- PIN operations using PKI
PIN Control
- Overview
- PIN Control handling
Purchase Details
- Overview
- Trigger repricing
- Get purchase details
- Create purchase details
- Update purchase details
Repricing
- Overview
- Create repricing agreements
- Get repricing agreements
- Update repricing agreements
- Create price lists
- Get price lists
- Update price lists
Transaction
- Overview
- Test transactions
- Test authorizations
- Get transaction data
- Create transactions
- Create fees
- Update a transaction
- Authorization Holds (BETA)
- Batch payment
Transfer API
- Overview
- Post account to account transfer
- Account to account batch transfer
- Post card to card transfer
Wallet
- Overview
- Push Provision
- Activation data
- Get tokens
Test API
- Overview
- test-auth-request-templates
- test-authorizations
Hierarchy API
- Overview
- Card Hierarchy Management
- Card Hierarchy Group Management
- Card Management in Card Hierarchy Groups
Spend Control API
- Overview
- Rule Sets Endpoints
- Rules Endpoints
- Spend Control Test Endpoint
- STIP External Account Balance Endpoints (BETA)
- STIP Spend Control Test Endpoint (BETA)
Update card
Update a virtual debit VISA branded card
This operation will update given fields given a card id
PATCH
/
v4
/
DEBIT_VISA_VIRTUAL
/
{id}
curl --request PATCH \
--url https://integration-api-cat2./%7B{environment}%7D.ext.%7B{realm}%7D.cia.enfuce.com/card/v4/DEBIT_VISA_VIRTUAL/{id} \
--header 'Content-Type: application/json' \
--data '{
"accountId": "1234567890",
"customerId": "1234567890",
"embossing": {
"additionalField1": "<string>",
"additionalField2": "<string>",
"additionalField3": "<string>",
"additionalField4": "<string>",
"additionalField5": "<string>",
"companyName": "Enfuce Financial Services",
"externalLayoutCode": "BlueCard",
"firstName": "Monica",
"lastName": "Liikamaa",
"manufacturer": "FACTORY_X",
"physical": true
},
"reason": "<string>",
"segment": "SEGMENT_A",
"status": "CARD_OK",
"usageLimits": [
{
"code": "24H",
"values": [
{
"code": "ATM",
"reset": true,
"singleAmount": 1000,
"count": 5,
"sumAmount": 1200
}
]
}
],
"pinStatus": "D",
"digitalLayoutCode": "abc123abc",
"scheduledClosing": {
"time": "2099-12-31T03:00:00.000Z"
},
"additionalValues": [
{
"key": "<string>",
"value": "<string>"
}
],
"regionAndEcommBlocking": {
"ecomm": true,
"africa": true,
"asia": true,
"europe": true,
"home": true,
"northAmerica": true,
"oceania": true,
"southAmerica": true
}
}'
{
"description": "<string>",
"id": "<string>"
}
Path Parameters
The card id for given card
Query Parameters
The audit user to log the request
Body
application/json
The new value of selected property. You should only provide a value for the property you want to update, the other ones should be null
The body is of type object
.
Response
200
application/json
Successful update of the card
The response is of type object
.
curl --request PATCH \
--url https://integration-api-cat2./%7B{environment}%7D.ext.%7B{realm}%7D.cia.enfuce.com/card/v4/DEBIT_VISA_VIRTUAL/{id} \
--header 'Content-Type: application/json' \
--data '{
"accountId": "1234567890",
"customerId": "1234567890",
"embossing": {
"additionalField1": "<string>",
"additionalField2": "<string>",
"additionalField3": "<string>",
"additionalField4": "<string>",
"additionalField5": "<string>",
"companyName": "Enfuce Financial Services",
"externalLayoutCode": "BlueCard",
"firstName": "Monica",
"lastName": "Liikamaa",
"manufacturer": "FACTORY_X",
"physical": true
},
"reason": "<string>",
"segment": "SEGMENT_A",
"status": "CARD_OK",
"usageLimits": [
{
"code": "24H",
"values": [
{
"code": "ATM",
"reset": true,
"singleAmount": 1000,
"count": 5,
"sumAmount": 1200
}
]
}
],
"pinStatus": "D",
"digitalLayoutCode": "abc123abc",
"scheduledClosing": {
"time": "2099-12-31T03:00:00.000Z"
},
"additionalValues": [
{
"key": "<string>",
"value": "<string>"
}
],
"regionAndEcommBlocking": {
"ecomm": true,
"africa": true,
"asia": true,
"europe": true,
"home": true,
"northAmerica": true,
"oceania": true,
"southAmerica": true
}
}'
{
"description": "<string>",
"id": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.