- Account Transactions
- Business Credit Current
- Business Credit Effective
- Business Liability Current
- Business Liability Effective
- Business Reconcile
- Business Transactions
- Groups Credit Current
- Groups Credit Effective
- Groups Liability Current
- Groups Liability Effective
- Groups Reconcile
- Groups Transactions
All transactions for a single stored value account
GET
/v1/storedvalue/{Id}/transactions
Field | Type | Description | Location |
---|---|---|---|
Id | number | SV Account Number | URL |
[
{
"Reference": 102394,
"DatetimeLocal": "2018-01-31T12:10:49.84",
"Trancode": "Sale",
"Status": "Approved",
"Message": null,
"Invoice": "T3HB1LLS",
"Account": "8383830000000018",
"Amount": -5.95,
"IsBulk": false,
"IsPromo": false,
"VoidId": null,
"Business": "Dgo - Main Location"
},
{
"Reference": null,
"DatetimeLocal": "2018-01-31T12:10:49.84",
"Trancode": "Set",
"Status": "Error",
"Message": "Invalid Account/CVV/Identifier",
"Invoice": null,
"Account": "8282820000001894",
"Amount": null,
"IsBulk": false,
"IsPromo": false,
"VoidId": null,
"Business": "Den - Cherry Creek Location"
}
]
Current credit on business owned accounts
GET
/v1/storedvalue/creditCurrent
[
{
"Account":"8383830000000034",
"Balance":"-225.00"
},
{
"Account":"8383830000000042",
"Balance":"-113.00"
}
]
Credit as of effective date on business owned accounts
GET
/v1/storedvalue/creditEffective?EffectiveDate={EffectiveDate}
Field | Type | Description | Location |
---|---|---|---|
EffectiveDate 1 | Date | Credit as of beginning of this day. | URL |
1 Date format is yyyy-MM-dd.
[
{
"Account":"8383830000000034",
"Balance":"-25.00"
},
{
"Account":"8383830000000042",
"Balance":"-113.00"
}
]
Current liability on business owned accounts
GET
/v1/storedvalue/liabilityCurrent
[
{
"Account":"8383830000000034",
"Balance":"225.00"
},
{
"Account":"8383830000000042",
"Balance":"113.00"
}
]
Liability as of effective date on business owned accounts
GET
/v1/storedvalue/liabilityEffective?EffectiveDate={EffectiveDate}
Field | Type | Description | Location |
---|---|---|---|
EffectiveDate 1 | Date | Liability as of beginning of this day. | URL |
1 Date format is yyyy-MM-dd.
[
{
"Account":"8383830000000034",
"Balance":"25.00"
},
{
"Account":"8383830000000042",
"Balance":"113.00"
}
]
Net change in liability for the date range partitioned by group
GET
/v1/storedvalue/reconcile?StartDate={StartDate}&EndDate={EndDate}
Field | Type | Description | Location |
---|---|---|---|
StartDate 1 | Date | Start date | URL |
EndDate 1 | Date | End date | URL |
1 Date format is yyyy-MM-dd.
[
{
"GroupId":1,
"Group":"Bark & Meow",
"Amount":"-11.23"
}
]
Transactions in the date range
GET
/v1/storedvalue/transactions?StartDate={StartDate}&EndDate={EndDate}
Field | Type | Description | Location |
---|---|---|---|
StartDate 1 | Date | Start date | URL |
EndDate 1 | Date | End date | URL |
1 Date format is yyyy-MM-dd.
[
{
"Reference": 102394,
"DatetimeLocal": "2018-01-30T03:58:20.93",
"Trancode": "Sale",
"Status": "Approved",
"Message": null,
"Invoice": "T3HB1LLS",
"Account": "8383830000000018",
"Amount": -5.95,
"IsBulk": false,
"IsPromo": false,
"VoidId": null
},
{
"Reference": null,
"DatetimeLocal": "2018-01-30T03:58:20.93",
"Trancode": "Set",
"Status": "Error",
"Message": "Invalid Account/CVV/Identifier",
"Invoice": null,
"Account": "8282820000001894",
"Amount": null,
"IsBulk": false,
"IsPromo": false,
"VoidId": null
}
]
Current credit on group owned accounts
GET
/v1/storedvalue/groups/{id}/creditCurrent
Field | Type | Description | Location |
---|---|---|---|
Id | Integer | Group Id. | URL |
[
{
"Account":"8383830000000034",
"Balance":"-225.00"
},
{
"Account":"8383830000000042",
"Balance":"-113.00"
}
]
Credit as of effective date on group owned accounts
GET
/v1/storedvalue/groups/{Id}/creditEffective?EffectiveDate={EffectiveDate}
Field | Type | Description | Location |
---|---|---|---|
Id | Integer | Group Id. | URL |
EffectiveDate 1 | Date | Credit as of beginning of this day. | URL |
1 Date format is yyyy-MM-dd.
[
{
"Account":"8383830000000034",
"Balance":"-25.00"
},
{
"Account":"8383830000000042",
"Balance":"-113.00"
}
]
Current liability on group owned accounts
GET
/v1/storedvalue/groups/{id}/liabilityCurrent
Field | Type | Description | Location |
---|---|---|---|
Id | Integer | Group Id. | URL |
[
{
"Account":"8383830000000034",
"Balance":"225.00"
},
{
"Account":"8383830000000042",
"Balance":"113.00"
}
]
Liability as of effective date on group owned accounts
GET
/v1/storedvalue/groups/{Id}/liabilityEffective?EffectiveDate={EffectiveDate}
Field | Type | Description | Location |
---|---|---|---|
Id | Integer | Group Id. | URL |
EffectiveDate 1 | Date | Liability as of beginning of this day. | URL |
1 Date format is yyyy-MM-dd.
[
{
"Account":"8383830000000034",
"Balance":"25.00"
},
{
"Account":"8383830000000042",
"Balance":"113.00"
}
]
Net change in liability for the date range partitioned by business
GET
/v1/storedvalue/groups/{Id}/reconcile?StartDate={StartDate}&EndDate={EndDate}
Field | Type | Description | Location |
---|---|---|---|
Id | Integer | Group Id. | URL |
StartDate 1 | Date | Start date | URL |
EndDate 1 | Date | End date | URL |
1 Date format is yyyy-MM-dd.
[
{
"BusinessId": 555,
"Business": "Dgo - Main Location",
"Amount": 800,
"IsHoldingBusiness": 1
},
{
"BusinessId": 123,
"Business": "Den - Cherry Creek Location",
"Amount": -5,
"IsHoldingBusiness": 0
}
]
Transactions in the date range for group owned accounts
GET
/v1/storedvalue/groups/{Id}/transactions?StartDate={StartDate}&EndDate={EndDate}
Field | Type | Description | Location |
---|---|---|---|
Id | Integer | Group Id. | URL |
StartDate 1 | Date | Start date | URL |
EndDate 1 | Date | End date | URL |
1 Date format is yyyy-MM-dd.
[
{
"Reference": 102394,
"DatetimeLocal": "2018-01-31T12:10:49.84",
"Trancode": "Sale",
"Status": "Approved",
"Message": null,
"Invoice": "T3HB1LLS",
"Account": "8383830000000018",
"Amount": -5.95,
"IsBulk": false,
"IsPromo": false,
"VoidId": null,
"BusinessID": 555,
"Business": "Dgo - Main Location"
},
{
"Reference": null,
"DatetimeLocal": "2018-01-31T12:10:49.84",
"Trancode": "Set",
"Status": "Error",
"Message": "Invalid Account/CVV/Identifier",
"Invoice": null,
"Account": "8282820000001894",
"Amount": null,
"IsBulk": false,
"IsPromo": false,
"VoidId": null,
"BusinessID": 123,
"Business": "Den - Cherry Creek Location"
}
]