Get Card Last Courier Activity

URL

The endpoint and http method information used to query the cargo status on physical cards are given below.

HTTP Method URL
POST /v1/cp/Issuing/GetCardLastCourierActivity

Request Params

Params Type Mandatory
account_number string Yes
wallet_number string Yes
card_no string Yes

Response Params

Params Type
status int
code string
message string
payload object
courier_status_code string
courier_status_description string
courier_stat_change_date string

REQUEST (POST):

{
  "account_number": "4894813581",
  "wallet_number": "235689741",
  "card_no": "434610lghdgh1234"
}

RESPONSE:

{
    "status": 0,
    "code": null,
    "message": "",
    "payload": {
        "courier_status_code": "900",
        "courier_status_description": "Kargoya teslim edildi",
        "courier_stat_change_date": "4/15/2022 12:00:00 AM"
    }
}