Class Invoices
java.lang.Object
net.amcintosh.freshbooks.resources.api.Resource
net.amcintosh.freshbooks.resources.api.AccountingResource
net.amcintosh.freshbooks.resources.Invoices
FreshBooks invoices resource with calls to get, list, create, update, delete
-
Field Summary
Fields inherited from class net.amcintosh.freshbooks.resources.api.Resource
freshBooksClient -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionCreate a new invoice from the provided data.Create a new invoice from the provided Invoice model.voidDelete the invoice with the corresponding id.Get a single invoice with the corresponding id.get(String accountId, long invoiceId, IncludesQueryBuilder builder) Get a single invoice with the corresponding id.protected StringgetPath()Get a list of invoices using the query strings generated by the QueryBuilder list.list(String accountId, List<QueryBuilder> builders) Get a list of invoices using the query strings generated by the QueryBuilder list.Update the invoice with the corresponding id.Update the invoice with the corresponding id.Methods inherited from class net.amcintosh.freshbooks.resources.api.AccountingResource
getResourceType, getUrl, getUrl, getUrl, getUrl, handleListRequest, handleRequest, handleRequestMethods inherited from class net.amcintosh.freshbooks.resources.api.Resource
buildQueryString
-
Constructor Details
-
Invoices
-
-
Method Details
-
getPath
- Specified by:
getPathin classAccountingResource
-
list
Get a list of invoices using the query strings generated by the QueryBuilder list.- Parameters:
accountId- Id of the account- Returns:
- InvoiceList containing invoices and pagination details
- Throws:
FreshBooksException- If the call is not successful
-
list
Get a list of invoices using the query strings generated by the QueryBuilder list.- Parameters:
accountId- Id of the accountbuilders- List of QueryBuilders- Returns:
- InvoiceList containing invoices and pagination details
- Throws:
FreshBooksException- If the call is not successful
-
get
Get a single invoice with the corresponding id.- Parameters:
accountId- The alpha-numeric account idinvoiceId- Id of the resource to return- Returns:
- The Invoice
- Throws:
FreshBooksException- If the call is not successful
-
get
public Invoice get(String accountId, long invoiceId, IncludesQueryBuilder builder) throws FreshBooksException Get a single invoice with the corresponding id.- Parameters:
accountId- The alpha-numeric account idinvoiceId- Id of the resource to returnbuilder- IncludesQueryBuilder object for including additional data, sub-resources, etc.- Returns:
- The Invoice
- Throws:
FreshBooksException- If the call is not successful
-
create
Create a new invoice from the provided Invoice model. Makes a POST call against the invoice resource endpoint. This calls `invoice.getContent()` to get a hash map of data.- Parameters:
accountId- The alpha-numeric account iddata- Invoice model with create data- Returns:
- The created Invoice
- Throws:
FreshBooksException- If the call is not successful
-
create
Create a new invoice from the provided data. Makes a POST call against the invoice resource endpoint.- Parameters:
accountId- The alpha-numeric account iddata- Map of create data- Returns:
- The created Invoice
- Throws:
FreshBooksException- If the call is not successful
-
update
Update the invoice with the corresponding id. Makes a PUT call against the invoice resource endpoint.- Parameters:
accountId- The alpha-numeric account idinvoiceId- Id of the resource to returndata- Invoice model with updated data- Returns:
- The updated Invoice
- Throws:
FreshBooksException- If the call is not successful
-
update
public Invoice update(String accountId, long invoiceId, Map<String, Object> data) throws FreshBooksExceptionUpdate the invoice with the corresponding id. Makes a PUT call against the invoice resource endpoint.- Parameters:
accountId- The alpha-numeric account idinvoiceId- Id of the resource to updatedata- Map of data to change- Returns:
- The updated Invoice
- Throws:
FreshBooksException- If the call is not successful
-
delete
Delete the invoice with the corresponding id.
Note: Most FreshBooks resources are soft-deleted,- Parameters:
accountId- The alpha-numeric account idinvoiceId- Id of the resource to update- Throws:
FreshBooksException- If the call is not successful- See Also:
-