Viewing Cover Pages
HTTP Request Line |
GET /ffws/v1/data/cover_pages HTTP/1.1 |
|
HTTP Response Status Codes |
200 OK |
Shows cover pages. |
404 Not Found |
Cover pages not found. |
Example
GET /ffws/v1/data/cover_pages HTTP/1.1 content-type: application/xml authorization: Basic YWRtaW46YWRtaW4= ----------------------------------- HTTP/1.1 200 OK content-type: application/xml <?xml version=”1.0” encoding=”UTF-8”?> <response> <message>Success</message> <file> <name>default.pdf</name> <type>application/pdf</type> <url>https://192.168.2.1/ffws/v1/data/cover_pages/default.pdf</url> </file> <file> <name>multitech.pdf</name> <type>application/pdf</type> <url>https://192.168.2.1/ffws/v1/data/cover_pages/multitech.pdf</url> </file> <file> <name>sample1.pdf</name> <type>application/pdf</type> <url>https://192.168.2.1/ffws/v1/data/cover_pages/sample1.pdf</url> </file> <file> <name>sample2.pdf</name> <type>application/pdf</type> <url>https://192.168.2.1/ffws/v1/data/cover_pages/sample2.pdf</url> </file> </response>