List invoices
curl --request GET \
--url https://ywe3crmpll.execute-api.us-east-2.amazonaws.com/stage/invoices \
--header 'x-api-key: <api-key>'import requests
url = "https://ywe3crmpll.execute-api.us-east-2.amazonaws.com/stage/invoices"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://ywe3crmpll.execute-api.us-east-2.amazonaws.com/stage/invoices', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"message": "Unauthorized"
}{
"message": "Request URL not found"
}{
"message": "Internal Server Error"
}Invoices
List invoices
List invoices
GET
/
invoices
List invoices
curl --request GET \
--url https://ywe3crmpll.execute-api.us-east-2.amazonaws.com/stage/invoices \
--header 'x-api-key: <api-key>'import requests
url = "https://ywe3crmpll.execute-api.us-east-2.amazonaws.com/stage/invoices"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://ywe3crmpll.execute-api.us-east-2.amazonaws.com/stage/invoices', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"message": "Unauthorized"
}{
"message": "Request URL not found"
}{
"message": "Internal Server Error"
}Authorizations
Query Parameters
Defaults to 20 items per page, maximum 100 items allowed.
Page number. Starts from 1, defaults to 1.
Value can be any attribute name from the current resource.
Allowed values: asc, desc
Search string.
Array of attribute, operator, and value parts.
Array of attribute and order values.
array consisting of indices with the desired relation to include
true or false. If true, in response will be included also total count
For getting single latest public link for the Invoice
For getting all public links for the Invoice
Response
Successful response
Related topics
Material ListsItem List & InventoryEstimate & Invoice TemplatesMaterial Lists - Offline ModeMaterial Lists - Mobile AppWas this page helpful?