Calling APIs Registered in digiRunner with API Key

Workflow

Example:

curl -v -X POST 'https://{digiRunner_DOMAIN}/tsmpc/tspTest/postApi' \
-H 'Authorization: DGRK {DGRK}' \
-H 'Content-Type: application/json' \
-d '{req_body_json}'

Parameters with details:

Parameter
Type
Requirement
Description

DGRK

String

Required

DGRK data, obtained as the above instructions

Example:

YjQxNzJlMjFiMzAzM2Q5NWM2ZDYzNTVjYzhmMTRjNGQxMTA3YzllYw==.Q22n2yrakE60W8eGduraBPddPECSdJpLFPY7ojpnKr0=

req_body_json

String

Optional

Request Body for API call, referring to the original Request Body JSON mentioned above

Upon successful API call, a Request Body will be returned.

Was this helpful?