Skip to main content

Company Information Check

Get Company Details by Company ID


Endpoint

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

Description

Retrieves detailed information about a specific company using its Company ID. Replace {company_id} with the numeric company identifier.

Authentication

Authorization

ThisTo endpointaccess requiresthis endpoint, include a Bearer Token for authentication. You will need to obtain this token from Frontpayment and include it in the Authorization header of your request. You can obtain this token from Frontpayment.

Example Authorization Header: Authorization: Bearer YOUR_FRONTPAID_BEARER_TOKEN

Response

A successful request returns an array containing detailed information about the specified company.

{
    "status_code": 200,
    "status_message": "OK",
    "message": "companyRecordRetriveSuccessfully",
    "is_data": true,
    "data": [
        {
            "companyCheckUuid": "COMCHK1754819969",
            "companyId": "920058272",
            "companyType": "BRL",
            "companyName": "FLØTNINGEN PARK II BORETTSLAG",
            "score": "856",
            "riskLevel": "Low",
            "scoreMessage": "Good Credit Rating",
            "defaultProbability": "0.44",
            "personalNumber": "28038712383",
            "contactPersonName": "Georg Bøe",
            "contactPersonEmail": "[email protected]",
            "createdAt": 1754819969
        }
    ]
}