Skip to main content
GET
/
v3
/
{id}
/
plastic
/
{plasticId}
/
emv_script
Get a list of EMV scripts for a given plastic
curl --request GET \
  --url 'https://integration-api-cat2.{{environment}}.ext.{{realm}}.cia.enfuce.com/card/v3/{id}/plastic/{plasticId}/emv_script' \
  --header 'Authorization: Bearer <token>'
{
  "plasticId": "<string>",
  "cardId": "<string>",
  "emvScripts": [
    {
      "id": "<string>",
      "code": "BLOCK_CARD",
      "created": "2021-10-14T09:23:54",
      "updated": "2021-10-14T09:23:54",
      "status": "CLOSED"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The card id for given card Unique card id for given card

Example:

"1234567890"

plasticId
string
required

The plastic id for given card Unique plastic id for plastic

Example:

"1234567890"

Query Parameters

auditUser
string
required

The audit user to log the request

page
integer
default:0

Current page

size
integer
default:15

How many EMV scripts should be returned per page, default is 15. Cannot be more than 30.

Required range: 1 < x < 30

Response

Successful lookup of EMV scripts

plasticId
string

PlasticId to which the EMV script is connected

cardId
string

CardId to which the EMV script is connected

emvScripts
emvScript · object[]