Skip to content

Latest commit

 

History

History
67 lines (49 loc) · 4.33 KB

README.md

File metadata and controls

67 lines (49 loc) · 4.33 KB

Getting Started with Reporting API

Authorization

Authorization is easy, just insert your secret key in the Authorization header:

Authorization: secretKEYGOESHERE

Content Types

We support the following for Content-Type and Accepts values:

  • application/json

Success Responses

  • 200 OK

Failure Responses

  • 400 BAD REQUEST
  • 401 UNAUTHORIZED
  • 404 NOT FOUND

Example Stored Value Business Reconcile Request

GET https://reporting.monetary.co/v1/storedvalue/business/reconcile?StartDate=2016-10-1&EndDate=2016-10-31

Authorization: secretKEYGOESHERE
Content-Type: application/json
Accept: application/json

Example Stored Value Business Reconcile Response

200 OK

[
   {  
      "GroupId":1,
      "Group":"Bark & Meow",
      "Amount":"-11.23"
   }
]