Yedpay

Description (Update EMV Code)

Update the EMV Code of the company (PUT)

End Point

https://api.yedpay.com/v1/emv-codes/{{emv_code_id}}

Variable

Variable
# Name Type Description
1 emv_code_id String EMV Code's ID

Request Header

Request Header
# Key Value Description
1 Authorization Bearer {{access_token}} Login Token

Body

Body
# Name Type Description
2 name String (255) (option) name of the EMV Code

Response

Response
# Name Type Description
1 success Boolean Update EMV Code Success or Fail
2 data Array Include all EMV Code Information (company_id etc...)

Success Response - data

Success Response - data
# Name Type Description
1 id String Unique identifier of the EMV Code
2 company_id String Unique identifier of the company
3 company_name String Name of the company
4 store_id String Unique identifier of the store
5 store_name String Name of the store
6 user_id String Unique identifier of the user
7 name String Name of the EMV Code
8 merchant_reference String Merchant reference
9 amount Float Amount of the EMV Code
(Fixed amount EMV Code if the amount is not 0)
10 currency String Currency used for the EMV Code (HKD)
11 value String Value of the EMV Code
12 status Integer status of the EMV Code
(0: Disabled 1: Enabled)
13 _links Array Include Links for:
- checkout
- qrcode
14 created_at String Datetime when the EMV Code was created
15 updated_at String Datetime when the EMV Code was updated lastly

Example Success Response

            {
                "success": true,
                "data": {
                    "id": "P5631VZGJ8NZN94JDX",
                    "company_id": "3GWX1LKV5J8KER4NYP",
                    "store_id": "6PEQD4O477GO5VY8W3",
                    "store_name": "test store name",
                    "name": "test emv code name",
                    "amount": "0.00",
                    "support_gateway": "1,8,10",
                    "value": "xxx",
                    "status": 1,
                    "created_at": 2026-03-04 07:16:14,
                    "updated_at": 2026-03-04 07:16:14,
                    "_links": {
                        "checkout": "xxx",
                        "qrcode": "xxx"
                    }
                }
            }

Example Error Response

    {
        "success": false,
        "message": "Unauthenticated.",
        "status": 500
    }
    

v1.91.1-20260302 © The Payment Cards Group Limited. All rights reserved.