Reports APIs ############ GreyMatter provides various reports via async API calls. The usual workflow for these reports is: 1. Hit an endpoint to generate a report with optional parameters 2. Receive a notification with the report URL 3. Download the report from the provided URL in the notification Inventory Sync Report ********************* This report data can be used to perform an inventory matching operation between your system and GreyMatter. .. http:post:: /api-gateway/platform-dashboard/report/generate-inventory-report This endpoint will generate a CSV format report with all the unique fields' values of each product and it's quantity. :reqheader Content-Type: the request's content-type has to be passed in this header :reqheader Accept: the response content type depends on :mailheader:`Accept` header :reqheader Authorization: OAuth token to authenticate :statuscode 200: No error **Example request**: .. sourcecode:: http POST /api-gateway/platform-dashboard/report/generate-inventory-report HTTP/1.1 Host: example.com Content-Type: application/json Accept: application/json, text/javascript **Example Response**: .. sourcecode:: http HTTP/1.1 200 OK Content-Type: application/json;charset=UTF-8 {"id": 1000} **Example Notification** .. sourcecode:: json { "notification_type": "report_generation", "version_number": "1.5.0", "notification_id": "unique_id_of_this_notification", "notification_data": { "id": 1000, "type": "inventory/GR", "report_url": "http://", "requested_time": "2017-11-22T12:18:32.553543+05:30", "generated_time": "2017-11-22T12:18:33.553543+05:30" } } **Example Report CSV** .. sourcecode:: text product_sku,client_id,quantity GA00139-US,1011,150 GA00244-US,1011,79 GA00101-US,1023,340