Return a list of available finance defaults

GET /financedefaults/{setting}

The defaults that are used in the system relating to finances

Path parameters

  • setting string Required

    this is one of the available settings

    Values are receipt_one_off, receipt_to, first_tax_month, tax_receipt_organisation, tax_receipt_address1, tax_receipt_address2, tax_receipt_address3, tax_receipt_address4, charity_number, currency, currency_symbol, or salestax_rate.

Responses

  • 200 application/json

    OK

    Hide response attribute Show response attribute object
    • setting string

      The word setting will be the same name as the setting supplied in the endpoint. The value returned will for that specific setting. See financedefaults/list endpoint for details

  • 403 application/json

    Invalid permission

    Hide response attribute Show response attribute object
  • 404 application/json

    Not Found

    Hide response attribute Show response attribute object
GET /financedefaults/{setting}
curl \
 -X GET https://YOURSITE.infoodle.com/apiv2/financedefaults/receipt_to \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "setting": "receipt_to"
}
Response examples (403)
{
  "error": "Invalid Permission"
}
Response examples (404)
{
  "error": "Not Found"
}