Branch

Branches represent offices, sites, locations or departments within your organisation and can have claims linked to them.

Branches are a way to organise your claims into groups based on sub-divisions of your organisation such as offices, locations, sites, departments or even teams. Claims can be linked to the branch they relate to and users can have access to only claims from their branch, or for all branches, company-wide.

The Branch Object

AttributeData TypeDescription
idIntegerThe unique ID for the branch given by Claimable.
nameStringRequired

The name of the branch.
office_emailStringThe email address of the branch. Must be a valid email address.
office_phoneStringThe main/office phone number for the branch.
office_address_line1StringThe first line of the branch's address
office_address_line2StringThe second line of the branch's address.
office_address_line3StringThe third line of the branch's address.
office_address_cityStringThe town/city of the branch's address.
office_address_stateStringThe state/county of the branch's address.
office_address_postcodeStringThe postcode/zipcode of the branch's address.
office_address_countryStringRead Only

The country of the branch's address. Set via address_country_code.
office_address_country_codeStringThe ISO 3166-1 alpha-3 3-letter country code for the country of the branch's address (e.g. 'gbr' = United Kingdom).

Sets address_country.
created_atTimestampRead Only

The date/time the branch was created.
updated_atTimestampRead Only

The date/time the branch was last updated.
created_byIntegerRead Only

The id of the user who created the branch.
updated_byIntegerRead Only

The id of the user who last updated the branch.
Example Branch Object
{
  "id": 123456,
  "name": "London Office",
  "email": "[email protected]",
  "office_phone": "0207 333 2222",
  "address_line1": "14 East Bay Lane",
  "address_line2": "",
  "address_line3": "",
  "address_city": "London",
  "address_state": "London",
  "address_postcode": "E15 2GW",
  "address_country": "United Kingdom",
  "address_country_code": "gbr",
  "created_at": "2025-01-08T11:42:29.584Z",
  "updated_at": "2025-02-01T10:02:51.120Z",
  "created_by": 123,
  "updated_by": 456
}