You are here

function _invoice_api_get_supported_response_formats in Invoice 7

Returns the response formats that the API supports

Return value

array

1 call to _invoice_api_get_supported_response_formats()
_invoice_api_check_response_format_support in ./invoice_api.inc
Checks if the specified response format is supported by the API

File

./invoice_api.inc, line 16

Code

function _invoice_api_get_supported_response_formats() {
  return array(
    'json',
    'pdf',
    'html',
  );
}