Invoice Linked Funds

Get Invoice Linked Funds by ID

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

Returns an invoice's linked funds by id.

Request Information

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

Response Information

Example
application/json, text/json
[
  {
    "FundID": 1,
    "AlternativeName": "alt name 0",
    "AmountExpended": 3.23,
    "AmountEncumbered": 1.23,
    "FundName": "fund name 1",
    "FreeBalance": 2.54,
    "FiscalYearName": "fy name 1",
    "ObjectID": 1234,
    "OrganizationID": 2,
    "Status": "status",
    "TotalAllocated": 12.34,
    "Type": "type"
  },
    {
    "FundID": 2,
    "AlternativeName": "alt name",
    "AmountExpended": 3.23,
    "AmountEncumbered": 1.23,
    "FundName": "fund name 2",
    "FreeBalance": 2.54,
    "FiscalYearName": "fy name 2 ",
    "ObjectID": 2222,
    "OrganizationID": 3,
    "Status": "status",
    "TotalAllocated": 12.34,
    "Type": "type"
  }
]

HTTP Response Codes

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

Required Permissions

Permission IDs found here.

    CR_AccessAcquisitions_Allow (),
    CR_Invoices_Access (based on owner ID)