P
Postman Collection
Section Guide
Importable suite for environment testing.
Postman JSON Configuration
Copy this and select Import > Raw Text in Postman.json
{
"info": {
"name": "DSI API Prod Suite",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"variable": [
{ "key": "base_url", "value": "https://fake-api.devsecit.com/1.0.0/wb/" },
{ "key": "app_token", "value": "PgcQqi8ZGmlnYwd50JKo74_secure_token_2024" }
],
"item": [
{
"name": "Handshake Test",
"request": {
"method": "POST",
"header": [{ "key": "Authorization", "value": "Bearer {{AUTH_KEY}}" }],
"body": {
"mode": "urlencoded",
"urlencoded": [
{ "key": "token", "value": "UGdjUXFpOFPnbFl3ZDUwS0tvNzRfc2VjdXJlX3Rva2VuXzIwMjQ=" },
{ "key": "timestmp", "value": "{{timestamp}}" }
]
},
"url": { "raw": "{{base_url}}", "host": ["{{base_url}}"] }
}
}
]
}