Fund Linked Invoices

Get list of linked Invoices by Fund ID

GET /api/.../funds/{id}/invoices

Returns a fund's linked invoices.

Request Information

Parameters
Name Type Required Description
id Integer Yes The unique id assigned to the fund.

Response Information

Example
application/json, text/json
[
  {
    "InvoiceID": 123345,
    "InvGrndTotBase": 23.33,
    "InvNumber": "INV123",
    "InvNumberSuf": "aaa",
    "InvoiceType": "Open",
    "InvoiceStatusID": 2,
    "InvoiceStatus": "status",
    "InvStatusDate": "2008-07-25",
    "NumberOfLines": 3,
    "SupplierName": "supplier 1"
    "SupplierName": "supplier 1"
  },
   {
    "InvoiceID": 343523,
    "InvGrndTotBase": 29.55,
    "InvNumber": "INV124",
    "InvNumberSuf": "ggg",
    "InvoiceType": "Open",
    "InvoiceStatusID": 2,    
    "InvoiceStatus": "",
    "InvStatusDate": "2014-05-08",
    "NumberOfLines": 2,
    "SupplierName": "supplier 2"
  }
]

HTTP Response Codes

Code Description
200 OK. Success
400 FAILURE.
  • Bad request
  • Invalid fund ID

Required Permissions

Permission IDs found here.

    CR_AccessAcquisitions_Allow (),
    CR_Funds_Access (based on owner ID)