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
- 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)
PIN operations with pre-shared key
Set PIN
This operation sets PIN with encrypted PIN block in ISO format 1. The PIN block is encrypted using a pre-shared\ndouble-length 3DES key.
POST
/
v2
/
{plasticId}
Copy
Ask AI
curl --request POST \
--url https://integration-api-cat1./%7B{environment}%7D.ext.%7B{realm}%7D.cia.enfuce.com/pin/v2/{plasticId} \
--header 'Content-Type: application/json' \
--data '{
"zpkIndex": "0",
"pinBlock": "0123456789ABCDEF"
}'
Copy
Ask AI
{}
Example
Copy
Ask AI
// PIN 1234 in ISO format 1
var pinBlock = "141234AAAAAAAAAA";
// pre-shared zpk
var zpk = Hex.decode("00112233445566778899AABBCCDDEEFF0011223344556677");
// encrypt pinBlock with zpk
var des = Cipher.getInstance("DESede/ECB/NoPadding");
des.init(Cipher.ENCRYPT_MODE, new SecretKeySpec(zpk, "DESede"));
var encryptedPinBlock = Hex.toHexString(des.doFinal(Hex.decode(pinBlock)));
// make request
pinApiClient.post()
.uri("/pin/v2/{plasticId}?auditUser={user}", 123456, "test")
.bodyValue(Map.of(
"zpkIndex", "0",
"pinBlock", encryptedPinBlock
))
.retrieve()
.bodyToMono(Object.class)
.block();
Path Parameters
The plastic id for given card
Query Parameters
The audit user to log the request
Body
application/json
The related PIN control request data
The body is of type object
.
Response
200
application/json
PIN set successfully
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request POST \
--url https://integration-api-cat1./%7B{environment}%7D.ext.%7B{realm}%7D.cia.enfuce.com/pin/v2/{plasticId} \
--header 'Content-Type: application/json' \
--data '{
"zpkIndex": "0",
"pinBlock": "0123456789ABCDEF"
}'
Copy
Ask AI
{}
Assistant
Responses are generated using AI and may contain mistakes.