Process Maker's request

Process maker's request

POST {{domain}}/api/MakerChecker

Specify call back url and call back method only if you want maker checker to call your url on completing a transaction. Ignore the callback url and method fields if you don't want the callback approach but want to perform actions on your application based on the transaction status code. Transaction status code descriptions. 1 means transaction is in pending state 2 means transaction is under approval state 3 means transaction has been completed 5 means transaction has been cancelled Callback method description 1 means POST 2 means PUT 3 means DELETE

Headers

Name
Type
Description

client-id

string

client-id

Authorization

string

Bearer Token

Request Body

Name
Type
Description

object

{ "requestObject":"string", "email":"string", "description": "string", "entityType":"string", "entityTypeId":"string", "module":"string", "initiatedByUserId":"string", initiatedByUserName":"string", "dateInitiated":"string", "callbackUrl":"string", "callbackMethod":0, "workFlowCode":"string" }

{
    "message": "Ok",
    "isError": false,
    "data": {
        "message": "string",
        "transactionReference": "string",
        "transactionsStatusCode": "string",
        "transactionStatusDescription":"string",
        "entityType": "string",
        "entityTypeId":"string",
        "module": null,
        "action": "string",
        "authorizers": [
            "email1",
            "email2"
        ]
    }
}

Last updated

Was this helpful?