Project

General

Profile

DOPA » Dopa-test.postman_collection.json

prin methirattanasophon, 02/20/2026 05:58 AM

 
{
"info": {
"_postman_id": "c3375cec-185d-4d34-a027-ef7436c99ad8",
"name": "Dopa-test",
"description": "# 🚀 Get started here\n\nThis template guides you through CRUD operations (GET, POST, PUT, DELETE), variables, and tests.\n\n## 🔖 **How to use this template**\n\n#### **Step 1: Send requests**\n\nRESTful APIs allow you to perform CRUD operations using the POST, GET, PUT, and DELETE HTTP methods.\n\nThis collection contains each of these [request](https://learning.postman.com/docs/sending-requests/requests/) types. Open each request and click \"Send\" to see what happens.\n\n#### **Step 2: View responses**\n\nObserve the response tab for status code (200 OK), response time, and size.\n\n#### **Step 3: Send new Body data**\n\nUpdate or add new data in \"Body\" in the POST request. Typically, Body data is also used in PUT request.\n\n```\n{\n \"name\": \"Add your name in the body\"\n}\n\n ```\n\n#### **Step 4: Update the variable**\n\nVariables enable you to store and reuse values in Postman. We have created a [variable](https://learning.postman.com/docs/sending-requests/variables/) called `base_url` with the sample request [https://postman-api-learner.glitch.me](https://postman-api-learner.glitch.me). Replace it with your API endpoint to customize this collection.\n\n#### **Step 5: Add tests in the \"Scripts\" tab**\n\nAdding tests to your requests can help you confirm that your API is working as expected. You can write test scripts in JavaScript and view the output in the \"Test Results\" tab.\n\n<img src=\"https://content.pstmn.io/fa30ea0a-373d-4545-a668-e7b283cca343/aW1hZ2UucG5n\" alt=\"\" height=\"1530\" width=\"2162\">\n\n## 💪 Pro tips\n\n- Use folders to group related requests and organize the collection.\n \n- Add more [scripts](https://learning.postman.com/docs/writing-scripts/intro-to-scripts/) to verify if the API works as expected and execute workflows.\n \n\n## 💡Related templates\n\n[API testing basics](https://go.postman.co/redirect/workspace?type=personal&collectionTemplateId=e9a37a28-055b-49cd-8c7e-97494a21eb54&sourceTemplateId=ddb19591-3097-41cf-82af-c84273e56719) \n[API documentation](https://go.postman.co/redirect/workspace?type=personal&collectionTemplateId=e9c28f47-1253-44af-a2f3-20dce4da1f18&sourceTemplateId=ddb19591-3097-41cf-82af-c84273e56719) \n[Authorization methods](https://go.postman.co/redirect/workspace?type=personal&collectionTemplateId=31a9a6ed-4cdf-4ced-984c-d12c9aec1c27&sourceTemplateId=ddb19591-3097-41cf-82af-c84273e56719)",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "37445177",
"_collection_link": "https://fda-team.postman.co/workspace/FDA-Team~906a019f-d61e-4838-8209-3120a0075671/collection/37445177-c3375cec-185d-4d34-a027-ef7436c99ad8?action=share&source=collection_link&creator=37445177"
},
"item": [
{
"name": "check by laser code",
"event": [
{
"listen": "test",
"script": {
"exec": [
"pm.test(\"Status code is 200\", function () {",
" pm.response.to.have.status(200);",
"});"
],
"type": "text/javascript",
"packages": {},
"requests": {}
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {}
},
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"national_id\": \"1103703348990\",\n \"first_name\": \"นนน\",\n \"last_name\": \"บัวเพชร\",\n \"date_of_birth\": \"25441127\",\n \"laser_code\": \"ME0113180405\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "https://dopa-api.acecoin.com/api/v1/check-by-laser",
"protocol": "https",
"host": [
"dopa-api",
"acecoin",
"com"
],
"path": [
"api",
"v1",
"check-by-laser"
]
},
"description": "This is a GET request and it is used to \"get\" data from an endpoint. There is no request body for a GET request, but you can use query parameters to help specify the resource you want data on (e.g., in this request, we have `id=1`).\n\nA successful GET response will have a `200 OK` status, and should include some kind of response body - for example, HTML web content or JSON data."
},
"response": [
{
"name": "error",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"pid\": \"1103703348990\",\n \"firstName\": \"นนน\",\n \"lastName\": \"บัวเพชร\",\n \"dob\": \"25441127\",\n \"laser\": \"ME0113180405\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8080/api/v1/check-by-laser",
"protocol": "http",
"host": [
"localhost"
],
"port": "8080",
"path": [
"api",
"v1",
"check-by-laser"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": null,
"header": [
{
"key": "Content-Type",
"value": "application/json; charset=UTF-8"
},
{
"key": "Date",
"value": "Mon, 20 Oct 2025 06:55:10 GMT"
},
{
"key": "Content-Length",
"value": "178"
}
],
"cookie": [],
"body": "{\n \"error\": \"internal_error\",\n \"message\": \"failed to check card by laser: failed to call DOPA API: Post \\\"https://idcard.bora.dopa.go.th/CheckCardStatus/CheckCardService.asmx\\\": EOF\"\n}"
}
]
},
{
"name": "HealthCheck",
"event": [
{
"listen": "test",
"script": {
"exec": [
"pm.test(\"Successful POST request\", function () {",
" pm.expect(pm.response.code).to.be.oneOf([200, 201]);",
"});",
""
],
"type": "text/javascript",
"packages": {},
"requests": {}
}
}
],
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n\t\"name\": \"Add your name in the body\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "https://dopa-api.acecoin.com/api/v1/alive",
"protocol": "https",
"host": [
"dopa-api",
"acecoin",
"com"
],
"path": [
"api",
"v1",
"alive"
]
},
"description": "This is a POST request, submitting data to an API via the request body. This request submits JSON data, and the data is reflected in the response.\n\nA successful POST request typically returns a `200 OK` or `201 Created` response code."
},
"response": []
}
],
"event": [
{
"listen": "prerequest",
"script": {
"type": "text/javascript",
"exec": [
""
]
}
},
{
"listen": "test",
"script": {
"type": "text/javascript",
"exec": [
""
]
}
}
],
"variable": [
{
"key": "id",
"value": "1"
},
{
"key": "base_url",
"value": "https://template.postman-echo.com"
}
]
}
(12-12/12)