Ukrcard en
  1. Cards and accounts (UAPI)
Ukrcard en
  • Overview
  • Integration
  • Recipes
  • General Concepts
  • Merchant dashboard
  • References
    • Setting up and using the callback service
    • Transaction processing flows
    • Response Codes
    • Test Data
  • Our Restful API
    • E-Commerce acquiring
      • /Payment
      • /Preauthorization
      • /CancelPreauthorization
      • /Completion
      • /Confirm
      • /ConfirmExt
      • /Reverse
      • /Refund
      • /Verify
    • Transfers
      • /р2рTransfer
      • /Confirm
      • /ConfirmExt
      • /Reverse
      • /Refund
      • /Verify
    • Cards and accounts (UAPI)
      • /cards/issuacevirtualcard (140-Request for issuance of a virtual card)
        PUT
      • /cards/issuacephysicalcard (141-Request for a physical card)
        PUT
      • /cards/{panid}/baseparam/status (111-Request/change card status)
        PUT
      • /cards/getcarddataecom (138-Request card details for eCommerce)
        PUT
      • /cards/setpin (137-Request to set a PIN on a card)
        PUT
      • /cards/changepin (136-Ordering a card PIN change and sending it via SMS )
        PUT
      • /cards/gettransactions (122-Request for transaction history)
        PUT
      • /cards/{panid}/baseparam/limits (112-Request/change card limits)
        PUT
    • Payment transactions using tokens
      • /Payment
      • /Preauthorization
      • /Confirm
      • /ConfirmExt
      • /р2рTransfer
      • /Panbytoken
    • Apple Pay
      • /PaymentAppleD
      • /PaymentAppleE
    • Google Pay
      • /PaymentGoogleD
      • /PaymentGoogleE
  1. Cards and accounts (UAPI)

/cards/issuacephysicalcard (141-Request for a physical card)

Developing
PUT
/uapi-2.0/v1/cards/issuacephysicalcard
Request for a physical card.

Request

Header Params

Body Params application/json

Example
{
    "authholder": {
        "authmobphone": "37379979991",
        "authсontractct": "AAA"
    },
    "card": {
        "currencyno": 980,
        "panid": "1701000000101713040",
        "panmask": "559600######4354",
        "prodtype": "M5"
    },
    "userdata": "1882"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://mock.apidog.com/m1/537337-0-default/uapi-2.0/v1/cards/issuacephysicalcard' \
--header 'x-uws-systemid: TESTSS' \
--header 'x-uws-requestid: 0512231523' \
--header 'x-uws-date: 2020-03-25T00:00:00.000+0200' \
--header 'x-uws-PSID: B101' \
--header 'x-uws-FIID: F101' \
--header 'Accept: application/xml' \
--header 'Content-Type: application/json' \
--data-raw '{
    "authholder": {
        "authmobphone": "37379979991",
        "authсontractct": "AAA"
    },
    "card": {
        "currencyno": 980,
        "panid": "1701000000101713040",
        "panmask": "559600######4354",
        "prodtype": "M5"
    },
    "userdata": "1882"
}'

Responses

🟢200Success
application/json
Body

Example
{
    "card": {
        "pan": null,
        "panmask": "559600######4354",
        "mbr": "0",
        "panid": "1701000000101713040",
        "prodtype": "M5",
        "accountno": "5451404249901",
        "iban": null,
        "currencyno": 980,
        "expdate": "2711"
    },
    "userdata": "1882"
}
Modified at 2025-07-24 15:04:15
Previous
/cards/issuacevirtualcard (140-Request for issuance of a virtual card)
Next
/cards/{panid}/baseparam/status (111-Request/change card status)
Built with