Update billing information

POST /api/v1/firm/{firm_id}/billing

Headers

Path parameters

  • firm_id integer Required

    The ID of the firm.

application/json

Body Required

POST /api/v1/firm/{firm_id}/billing
curl \
 -X POST https://api.plannrcrm.com/api/v1/firm/firm_id/billing \
 -H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 -H "Content-Type: application/json" \
 -H "Accept: application/json" \
 -d '{"invoice_name":"Plannr Ltd","invoice_address_1":"Suite E, 5 The Briars","invoice_address_2":"Waterberry Drive","invoice_town_city":"Waterlooville","invoice_county":"Hampshire","invoice_postcode":"PO7 7YH","invoice_country":"United Kingdom","invoice_email":"gareth@codepotato.co.uk"}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json

# Payload
{
  "invoice_name": "Plannr Ltd",
  "invoice_address_1": "Suite E, 5 The Briars",
  "invoice_address_2": "Waterberry Drive",
  "invoice_town_city": "Waterlooville",
  "invoice_county": "Hampshire",
  "invoice_postcode": "PO7 7YH",
  "invoice_country": "United Kingdom",
  "invoice_email": "gareth@codepotato.co.uk"
}