Check invoice existence by number
|
GET api/2.0/crm/invoice/bynumber/exist
|
Returns the existence of the invoice with the Number specified in the request
|
Check invoice pdf file
|
POST api/2.0/crm/invoice/converter/data
|
Returns information about the generation of the pdf file of the invoice
|
Create invoice
|
POST api/2.0/crm/invoice
|
Creates the invoice with the parameters (contactId, consigneeId, etc.) specified in the request
|
Create invoice item
|
POST api/2.0/crm/invoiceitem
|
Creates the invoice item with the parameters (title, description, price, etc.) specified in the request
|
Create invoice line
|
POST api/2.0/crm/invoiceline
|
Creates the invoice line with the parameters (invoiceId, invoiceItemId, etc.) specified in the request
|
Create invoice tax
|
POST api/2.0/crm/invoice/tax
|
Creates the invoice tax with the parameters (name, description, rate) specified in the request
|
Delete invoice
|
DELETE api/2.0/crm/invoice/{invoiceid}
|
Delete the invoice with the ID specified in the request
|
Delete invoice group
|
DELETE api/2.0/crm/invoice
|
Deletes the group of invoices with the IDs specified in the request
|
Delete invoice item
|
DELETE api/2.0/crm/invoiceitem/{id}
|
Deletes the invoice item with the ID specified in the request
|
Delete Invoice item group
|
DELETE api/2.0/crm/invoiceitem
|
Deletes the group of invoice items with the IDs specified in the request
|
Delete invoice line
|
DELETE api/2.0/crm/invoiceline/{id}
|
Deletes the invoice line with the ID specified in the request
|
Delete invoice tax
|
DELETE api/2.0/crm/invoice/tax/{id}
|
Delete the invoice tax with the ID specified in the request
|
Get default invoice settings
|
GET api/2.0/crm/invoice/settings
|
Get default invoice settings
|
Get entity invoices
|
GET api/2.0/crm/{entityType}/invoicelist/{entityid}
|
Returns the list of all invoices associated with the entity with the ID and type specified in the request
|
Get invoice by ID
|
GET api/2.0/crm/invoice/{invoiceid}
|
Returns the detailed information about the invoice with the ID specified in the request
|
Get invoice by number
|
GET api/2.0/crm/invoice/bynumber
|
Returns the detailed information about the invoice with the Number specified in the request
|
Get invoice item by ID
|
GET api/2.0/crm/invoiceitem/{invoiceitemid}
|
Returns the detailed information about the invoice item with the ID specified in the request
|
Get invoice item list
|
GET api/2.0/crm/invoiceitem/filter
|
Returns the list of invoice items matching the creteria specified in the request
|
Get invoice json data
|
GET api/2.0/crm/invoice/jsondata/{invoiceid}
|
Returns the json data of the invoice with the ID specified in the request
|
Get invoice list
|
GET api/2.0/crm/invoice/filter
|
Returns the list of invoices matching the creteria specified in the request
|
Get invoice pdf file
|
GET api/2.0/crm/invoice/{invoiceid}/pdf
|
Returns the pdf file associated with the invoice with the ID specified in the request
|
Get invoice sample
|
GET api/2.0/crm/invoice/sample
|
Returns the detailed information about the invoice sample
|
Get invoice taxes list
|
GET api/2.0/crm/invoice/tax
|
Returns the list of invoice taxes
|
Save default invoice number
|
PUT api/2.0/crm/invoice/settings/name
|
Save default invoice number
|
Save default invoice terms
|
PUT api/2.0/crm/invoice/settings/terms
|
Save default invoice terms
|
Update invoice
|
PUT api/2.0/crm/invoice/{id}
|
Updates the selected invoice with the parameters (contactId, consigneeId, etc.) specified in the request
|
Update invoice group status
|
PUT api/2.0/crm/invoice/status/{status}
|
Updates the status of invoices with the IDs specified in the request
|
Update invoice item
|
PUT api/2.0/crm/invoiceitem/{id}
|
Updates the selected invoice item with the parameters (title, description, price, etc.) specified in the request
|
Update invoice line
|
PUT api/2.0/crm/invoiceline/{id}
|
Updates the selected invoice line with the parameters (invoiceId, invoiceItemId, etc.) specified in the request
|
Update invoice tax
|
PUT api/2.0/crm/invoice/tax/{id}
|
Updates the selected invoice tax with the parameters (name, description, rate) specified in the request
|