# Get a Company with specified business id Retrieve a single Company by its business id. Endpoint: GET /companies/{business_id} Version: 1.6.1 Security: clientCredentials ## Path parameters: - `business_id` (string, required) The business identifier of an entity instance ## Response 200 fields (application/json): - `business_id` (string) A unique reference ID Example: "624ec196-4c5c-4fb4-bb43-9ffd8a6b8844" - `name` (string) The name of this Company Example: "a name" ## Response 404 fields (application/problem+json): - `type` (string) An absolute URI that identifies the problem type. When dereferenced, it SHOULD provide human-readable documentation for the problem type (e.g., using HTML). Example: "https://api.conundra.eu/problem/constraint-violation" - `title` (string) A short, summary of the problem type. Written in english and readable for engineers (usually not suited for non technical stakeholders and not localized); example: Service Unavailable Example: "Invalid ..." - `status` (integer) The HTTP status code generated by the origin server for this occurrence of the problem. Example: 400 - `detail` (string) A human readable explanation specific to this occurrence of the problem. Example: "string" - `instance` (string) An absolute URI that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced. Example: "https://api.conundra.eu/orderbook/v1/orders/deliveries/chilled" - `violations` (array) - `violations.field` (string) A reference to the field in the request that triggered this violation. Example: "class.field" - `violations.message` (string) A message explaining the violation in the referenced field. Example: "a violation message"