Get users that has approved a transaction

Get users that approved a transaction

GET {{domain}}/api/MakerChecker/{{client-id}}/{{transactionReference}}/log

Path Parameters

Name
Type
Description

transactionReference

string

Transaction reference from the initiated transaction

client-id

string

client id of the application

Headers

Name
Type
Description

Authorization

string

Bearer Token

client-id

string

client id of the application

{
    "message": "Ok",
    "isError": false,
    "data": [
        {
            "email": "string",
            "approvalComment": "string",
            "createdAt": "12/02/2021 12:43:12 PM"
        },
        {
            "email": "string",
            "approvalComment": "string",
            "createdAt": "12/02/2021 12:59:30 PM"
        }
    ]
}

Last updated

Was this helpful?