Skip to main content

Company Invoice Fee

Introduction

The Company Invoice Fee API allows to retrieve the details of a specific company. By querying a company’s ID, you can access data such as Name, Type, B2B Invoice Fee, Vat rate, B2C Invoice Fee and Vat rate.


Endpoint

GET https://stg-api.frontpayment.no/api/v1/connect/company/invoice-fee/{company_id}

Description

Use this endpoint to retrieve detailed information about a company. Replace {company_id} with the numeric identifier of the company.


Authentication

Include a Bearer Token in the Authorization header. You can obtain this token from Front Payment.

Example:

Authorization: Bearer YOUR_FRONTPAYMENT_BEARER_TOKEN

Response

A successful response returns 200 OK with the company’s verification history.

Example Response

{
  "status_code": 200,
  "status_message": "OK",
  "message": "companyInvoiceFeeRetriveSuccessfully",
  "is_data": true,
  "data": [
      "companyUuid": "ORG1754819969",
      "companyId": "920058272",
      "companyType": "BRL",
      "companyName": "FLØTNINGEN PARK II BORETTSLAG",
      "B2BInvoiceFee": 5,
      "B2BVatRate": "2",
      "B2CInvoiceFee": 3,
      "B2CVatRate": "2"
  ]
}

Field Descriptions

ParameterTypeDescription
companyUuidstringOur Database unique UUID.
companyIdstringThe verified company’s ID.
companyTypestringThe type/category of the company.
companyNamestringThe legal name of the company.
B2BInvoiceFeenumberThe company’s B2B invoice fee.
B2BVatRatestringThe company's B2B vat rate.
B2CInvoiceFeenumberThe company’s B2C invoice fee.
B2CVatRatestringThe company's B2C vat rate.