Post processor

Fetch all post processor’s

This API helps to get a list of all post processors (FTP post processor + DB post processor)

GET/sdpw/configuration/postprocessor
Query parameters None
Header None
Header/Parameter None
Body None
Returns List of all post processor from repository
Required role None
Managed errors None

Example request

curl 'http://localhost:8080/sdpw/sdpw/configuration/postprocessor'

Example response

[
	{
	"id": "6c525a61-bd70-4582-bced-a3fc6a5425e1",
	"name": "DB1",
	"modifiedOn": 1496843070978,
	"url": "jdbc:postgresql://localhost:5432/SmartDataProcessorTest",
	"username": "postgres",
	"password": "kennis"
	},
	{
	"id": "ef658826-b737-405c-92ec-e4162811cab0",
	"name": "rob FTP Test",
	"modifiedOn": 1497003057139,
	"server": "mwp3-dev.knowledge-values.com",
	"port": 21,
	"username": "matchftp",
	"password": "kennis",
	"passive": false,
	"uploadPath": "robTestResult_new.zip"
	},
	{
	"id": "7a697439-8801-4d10-b22c-4b10c592b42d",
	"name": "FTP1",
	"modifiedOn": 1496832700452,
	"server": "mwp3-dev.knowledge-values.com",
	"port": 21,
	"username": "matchftp",
	"password": "kennis",
	"passive": true,
	"uploadPath": "MyResultFile.zip"
	}
]