Business -------- This business resource allows retrieving and updating the general information about your business, such as contact details and billing address. This is also the place to set the default currency, and the tax system under which the business operates. There is only one business resource per account. It can not be deleted. Get Business ............ .. http:get:: /business Retrieve general information about the business **Sample request**: .. sourcecode:: http GET /business HTTP/1.1 Host: api.fieldaware.net Authorization: Token 9dcae3660ec84eac94bb506e09a9af40 Accept: application/json **Sample response**: .. sourcecode:: http HTTP/1.1 200 OK Content-Type: application/json { "defaultCurrency": "USD", "email": "biz@murphy.com", "fax": "041-6857771", "name": "Murphy Ltd", "phone": "214-447-0289", "taxSystem": "US", "vatRegistrationNumber": "US-556677", "billingAddress": { "country": "United States", "region": "Texas", "postcode": "75070", "streetName": "1909 Clinton Drive", "locality": "McKinney" } } :statuscode 200: Request successful Update Business ............... .. http:put:: /business Update information about the business. **Sample request**: .. sourcecode:: http PUT /business HTTP/1.1 Host: api.fieldaware.net Authorization: Token 9dcae3660ec84eac94bb506e09a9af40 Accept: application/json { "defaultCurrency": "USD", "email": "foo@gmail.com", "fax": "000", "name": "name", "phone": "000", "taxSystem": "US", "vatRegistrationNumber": "dd33", "billingAddress": { "streetName": "Street name", "locality": "locality", "region": "region", "postcode": "post code example here", "country": "country here", } } :