Authorization is easy, just insert your secret key in the Authorization
header:
Authorization: secretKEYGOESHERE
We support the following for Content-Type
and Accepts
values:
application/json
- Groups
GET
/v1/groups
- Account Transactions
GET
/v1/storedvalue/account/{Id}/Transactions - Business Credit Current
GET
/v1/storedvalue/creditCurrent - Business Credit Effective
GET
/v1/storedvalue/creditEffective?EffectiveDate={EffectiveDate} - Business Liability Current
GET
/v1/storedvalue/liabilityCurrent - Business Liability Effective
GET
/v1/storedvalue/liabilityEffective?EffectiveDate={EffectiveDate} - Business Reconcile
GET
/v1/storedvalue/reconcile?StartDate={StartDate}&EndDate={EndDate} - Business Transactions
GET
/v1/storedvalue/transactions?StartDate={StartDate}&EndDate={EndDate} - Groups Credit Current
GET
/v1/storedvalue/groups/{id}/creditCurrent - Groups Credit Effective
GET
/v1/storedvalue/groups/{Id}/creditEffective?EffectiveDate={EffectiveDate} - Groups Liability Current
GET
/v1/storedvalue/groups/{id}/liabilityCurrent - Groups Liability Effective
GET
/v1/storedvalue/groups/{Id}/liabilityEffective?EffectiveDate={EffectiveDate} - Groups Reconcile
GET
/v1/storedvalue/groups/{Id}/reconcile?StartDate={StartDate}&EndDate={EndDate} - Groups Transactions
GET
/v1/storedvalue/groups/{Id}/transactions?StartDate={StartDate}&EndDate={EndDate}
200 OK
400 BAD REQUEST
401 UNAUTHORIZED
404 NOT FOUND
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
200 OK
[
{
"GroupId":1,
"Group":"Bark & Meow",
"Amount":"-11.23"
}
]