{
	"info": {
		"_postman_id": "0f7e8705-1f11-4340-93fb-3b30beb47405",
		"name": "Kladim-Cloud-Api",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
		"_exporter_id": "20011852"
	},
	"item": [
		{
			"name": "login",
			"request": {
				"method": "POST",
				"header": [],
				"body": {
					"mode": "raw",
					"raw": "{\r\n  \"username\": \"xxxxx@xxx.com\",\r\n  \"password\": \"YOUR_PASSWORD\"\r\n}",
					"options": {
						"raw": {
							"language": "json"
						}
					}
				},
				"url": {
					"raw": "https://kladim.com/api/login.php",
					"protocol": "https",
					"host": [
						"kladim",
						"com"
					],
					"path": [
						"api",
						"login.php"
					]
				}
			},
			"response": []
		},
		{
			"name": "customers",
			"request": {
				"auth": {
					"type": "bearer",
					"bearer": [
						{
							"key": "token",
							"value": "ENTER BEARER TOKEN BY LOGIN ENDPOINT",
							"type": "string"
						}
					]
				},
				"method": "GET",
				"header": [],
				"url": {
					"raw": "https://kladim.com/api/customers.php?accountName=PART OF ACCOUNT NAME (LIKE COMPARISON)&page=1&pageSize=50&resellerId=YOUR RESELLER ID",
					"protocol": "https",
					"host": [
						"kladim",
						"com"
					],
					"path": [
						"api",
						"customers.php"
					],
					"query": [
						{
							"key": "accountName",
							"value": "PART OF ACCOUNT NAME (LIKE COMPARISON)",
							"description": "OPTIONAL"
						},
						{
							"key": "page",
							"value": "1",
							"description": "OPTIONAL"
						},
						{
							"key": "pageSize",
							"value": "50",
							"description": "OPTIONAL"
						},
						{
							"key": "resellerId",
							"value": "YOUR RESELLER ID",
							"description": "YOUR RESELLER ID RECEIVED BY LOGIN ENDPOINS RESULT"
						}
					]
				}
			},
			"response": []
		},
		{
			"name": "backup-status",
			"request": {
				"auth": {
					"type": "bearer",
					"bearer": [
						{
							"key": "token",
							"value": "ENTER BEARER TOKEN BY LOGIN ENDPOINT",
							"type": "string"
						}
					]
				},
				"method": "GET",
				"header": [],
				"url": {
					"raw": "https://kladim.com/api/backup-status.php?id=THE CUSTOMER'S ACCONT ID",
					"protocol": "https",
					"host": [
						"kladim",
						"com"
					],
					"path": [
						"api",
						"backup-status.php"
					],
					"query": [
						{
							"key": "id",
							"value": "THE CUSTOMER'S ACCONT ID",
							"description": "CAN BE RECEIVED BY CUSTOMERS ENDPOINT"
						}
					]
				}
			},
			"response": []
		},
		{
			"name": "backup-now",
			"request": {
				"auth": {
					"type": "bearer",
					"bearer": [
						{
							"key": "token",
							"value": "ENTER BEARER TOKEN BY LOGIN ENDPOINT",
							"type": "string"
						}
					]
				},
				"method": "POST",
				"header": [],
				"body": {
					"mode": "raw",
					"raw": "{\r\n  \"id\": \"THE CUSTOMER'S ACCONT ID(CAN BE RECEIVED BY CUSTOMERS ENDPOINT)\"\r\n}",
					"options": {
						"raw": {
							"language": "json"
						}
					}
				},
				"url": {
					"raw": "https://kladim.com/api/backup-now.php",
					"protocol": "https",
					"host": [
						"kladim",
						"com"
					],
					"path": [
						"api",
						"backup-now.php"
					]
				}
			},
			"response": []
		}
	]
}