Use this guide to hit your first test environment request.Documentation Index
Fetch the complete documentation index at: https://developer.sandbox.co.in/llms.txt
Use this file to discover all available pages before exploring further.
Before you start
Make sure the following prerequisites are complete before you begin:- You can sign in to your Sandbox account.
- You have your test credentials (
api_keyandapi_secret). See Environments for details on test vs production credentials. - You have Postman desktop app or Postman web access.
- You can access the Sandbox public Postman workspace.
Base URLs are already configured in the collection environment. You only need to populate the required variable values.
Fork the Authentication collection with environment
Start with the shared Authentication collection. This is where your environment is created.
- Open the Authentication collection.
- Click Fork.
- Enter a name such as
Authentication. - Select your workspace.
- Keep Watch original collection enabled.
- Keep the environment included in the fork.
- Click Fork Collection.
- You can see the Authentication collection under Collections.
- You can see the forked environments under Environments.
Populate the environment
Populate required values in the Authentication environment before running requests.The environment has
- Open Environments in Postman.
- Open the environment created in Step 1.
- Fill the Current value for required variables like
api_keyandapi_secret. - Click Save.
- Select this environment from the top-right environment selector.
access_token variable , keep it empty for now. It will be set automatically after authentication.Get the access token by hitting Authenticate
Use the Authentication collection to generate the token used by secured requests.
- Open your forked Authentication collection.
- Select the Authenticate request.
- Confirm the environment is selected.
- Verify headers/body reference the variables you populated.
- Click Send.
- Postman returns a successful authentication response.
- Token is auto-saved to an environment variable.
- The token value is visible in the environment Current value.
Fork the product collection
Fork only the product collection you want to test next.
- Open the product collection link (KYC, GST, TDS, or IT).
- Click Fork.
- Enter a name such as
Sandbox KYC. - Select your workspace.
- Keep Watch original collection enabled.
- If Postman prompts to include an environment, leave it unselected.
- Click Fork Collection.
You should now have two collections (Authentication + product) and one shared environment.
Try out endpoint examples for mock responses
Use documentation examples to inspect payload shape and mock responses before integration.
- Open the endpoint page in Sandbox docs.
- Scroll to Request examples.
- Click Try it out.
- You receive a mock response payload.
- The response structure matches the endpoint documentation.
- You can validate field names, data types, and status codes for implementation planning.
Troubleshooting
Authentication errors (401 or 403)
Authentication errors (401 or 403)
Check the following:
api_keyandapi_secretare correct.- You are using test credentials with test APIs.
- There are no extra spaces in environment variable values.
- The token variable was populated after running Authenticate.
Missing variable errors
Missing variable errors
Check the following:
- Every
{{variable_name}}in the request has a value. - You updated Current value, not only Initial value.
- The correct environment is selected.
What to do next
- Repeat Step 5 for one request from each product you plan to integrate.
- Save successful requests as examples in your forked collection.
- Follow the Quickstart to make your first API call with code.
- Move to implementation using the corresponding API reference pages.