extension/module/invoice/get
POST
/extension/module/invoice/getThis returns the list of invoice templates available for the Equotix One account.
Request
The domain you are assigned to authenticate your Equotix One account.
The email address assigned to the user account in your Equotix One.
The unix timestamp used to sign this API request.
The calculated signature for this API request.
Filters the list by the name.
Filters the list by the status.
Filter the list of invoice templates modified after the spcified date.
Page number of the results.
The key for the ordering of the results. Accepts "name", "status", "date_modified"
The direction for the ordering of the results. Accepts "ASC", "DESC"
The number of results per page. Accepts 1 to 100.
{
"domain": "string",
"api_key": "string",
"auth_timestamp": 0,
"auth_signature": "string",
"filter_name": "string",
"filter_status": 0,
"filter_date_modified": "string",
"page": 0,
"sort": "string",
"order": "string",
"limit": 0
}
Responses
Returns only if there is an error.
The total number of results available if there is no error.
The list of templates available if there is no error.
The invoice template ID.
The template name.
The template codes.
The template status.
The template settings key-value.
The date time the template was last modified.
{
"error": [
"string"
],
"total": 0,
"templates": [
{
"invoice_template_id": 0,
"name": "string",
"template": "string",
"status": true,
"configuration": {},
"date_modified": "string"
}
]
}