Funds REST Endpoints
Funds
Use the fund service to create, update, delete, and view funds.
- Allocates a Workspace Fund to the Child Workspace.
- Method: postPath:
/primeapi/restapi/funds/workspace/workspace/allocation
- Allocates a Workspace Fund to the Portfolio.
- Method: postPath:
/primeapi/restapi/funds/workspace/portfolio/allocation
- Allocates a Workspace Fund to the Project.
- Method: postPath:
/primeapi/restapi/funds/workspace/project/allocation
- Create Portfolio Funds.
- Method: postPath:
/primeapi/restapi/funds/portfolio/batch
- Create Project Funds.
- Method: postPath:
/primeapi/restapi/funds/project/batch
- Create Workspace Funds.
- Method: postPath:
/primeapi/restapi/funds/workspace/batch
- Creates a Portfolio Fund.
- Method: postPath:
/primeapi/restapi/funds/portfolio
- Creates a Project Fund.
- Method: postPath:
/primeapi/restapi/funds/project
- Creates a Workspace Fund.
- Method: postPath:
/primeapi/restapi/funds/workspace
- Delete Funds.
- Method: deletePath:
/primeapi/restapi/funds/batch
- Deletes a Fund.
- Method: deletePath:
/primeapi/restapi/funds/{id}
- Return Fund Totals for the Specified Portfolio Code and Workspace Code.
- Method: getPath:
/primeapi/restapi/funds/portfolio/fundtotal?workspaceCode={workspaceCode}&portfolioCode={portfolioCode}
- Return Fund Totals for the Specified Workspace Code.
- Method: getPath:
/primeapi/restapi/funds/workspace/fundtotal?workspaceCode={workspaceCode}
- Return Funds for the Specified Portfolio Code and Workspace Code.
- Method: getPath:
/primeapi/restapi/funds/portfolio/list?portfolioCode={portfolioCode}&workspaceCode={workspaceCode}
- Return Funds for the Specified Project Code.
- Method: getPath:
/primeapi/restapi/funds/project/list?projectCode={projectCode}
- Return Funds for the Specified Workspace Code.
- Method: getPath:
/primeapi/restapi/funds/workspace/list?workspaceCode={workspaceCode}
- Returns the Fund for the Specified Project Code and Fund Code.
- Method: getPath:
/primeapi/restapi/funds/project/byFundCode?projectCode={projectCode}&fundCode={fundCode}
- Returns the Fund for the Specified Project Code and Fund Name.
- Method: getPath:
/primeapi/restapi/funds/project/byFundName?projectCode={projectCode}&fundName={fundName}
- Returns the Fund for the Specified Workspace Code and Fund Code.
- Method: getPath:
/primeapi/restapi/funds/workspace/byFundCode?workspaceCode={workspaceCode}&fundCode={fundCode}
- Returns the Fund for the Specified Workspace Code and Fund Name.
- Method: getPath:
/primeapi/restapi/funds/workspace/byFundName?workspaceCode={workspaceCode}&fundName={fundName}
- Update Portfolio Funds.
- Method: putPath:
/primeapi/restapi/funds/portfolio/batch
- Update Project Funds.
- Method: putPath:
/primeapi/restapi/funds/project/batch
- Update Workspace Funds.
- Method: putPath:
/primeapi/restapi/funds/workspace/batch
- Updates a Portfolio Fund.
- Method: putPath:
/primeapi/restapi/funds/portfolio
- Updates a Project Fund.
- Method: putPath:
/primeapi/restapi/funds/project
- Updates a Workspace Fund.
- Method: putPath:
/primeapi/restapi/funds/workspace
- View a Fund.
- Method: getPath:
/primeapi/restapi/funds/{id}