{
	"info": {
		"name": "DIH Connect API (PoC)",
		"description": "Sample Postman collection for the fictional Connect API spec in this docs PoC.",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
	},
	"variable": [
		{ "key": "baseUrl", "value": "https://api.example.dih.telekom.com/v1" },
		{ "key": "accessToken", "value": "{{YOUR_JWT}}" }
	],
	"item": [
		{
			"name": "List assets",
			"request": {
				"method": "GET",
				"header": [
					{ "key": "Authorization", "value": "Bearer {{accessToken}}" }
				],
				"url": "{{baseUrl}}/assets"
			}
		},
		{
			"name": "Get asset by id",
			"request": {
				"method": "GET",
				"header": [
					{ "key": "Authorization", "value": "Bearer {{accessToken}}" }
				],
				"url": "{{baseUrl}}/assets/EXAMPLE-001"
			}
		}
	]
}
