POST
/
api
/
merchants
/
payment_preprocess
/
get_processor_token
/
curl --location --request POST 'http://127.0.0.1:8000/api/merchants/payment_preprocess/get_processor_token' \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>' \
--data-raw '{ \
    "checkout_id":<checkout_id> \
}'

  "message": "Transaction Executed"
api-key
string
You will get this API key in the response of ‘generate api key button’ on merchant object.

body

checkout_id
string
The Checkout ID that the merchant received in response to the POST Checkout request.

Response

success
number
This Response field will return message “Transaction Executed” with status code 200 on success request.
curl --location --request POST 'http://127.0.0.1:8000/api/merchants/payment_preprocess/get_processor_token' \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>' \
--data-raw '{ \
    "checkout_id":<checkout_id> \
}'

  "message": "Transaction Executed"