Companies

The companies endpoint provides access to the approved company data associated with a user in the KineticPay API. In the user's dashboard, they can add multiple companies, which will be reviewed and approved by the KineticPay team.

GET/company

List all companies

This endpoint allows you to retrieve the approved company data associated with a user. It provides you with a list of companies that have been successfully reviewed and approved by the KineticPay team.

By utilizing this endpoint, you can retrieve important information about each approved company, such as their name, registration details, addresses, and contact information.

Please note that the response from this endpoint will contain an array of approved company objects, each representing a unique approved company associated with the user.

Properties

  • Name
    id
    Type
    integer
    Description

    The unique identifier of the company.

  • Name
    name
    Type
    string
    Description

    The name of the company.

  • Name
    ssm_no
    Type
    string
    Description

    The SSM number of the company.

  • Name
    ssm_doc
    Type
    string
    Description

    The URL to the SSM document of the company.

  • Name
    address
    Type
    string
    Description

    The address of the company.

  • Name
    phone
    Type
    string
    Description

    The contact phone number of the company.

  • Name
    office
    Type
    string
    Description

    The office phone number of the company.

Request

GET
/company
curl -G https://manage.kineticpay.my/api/v2/company \
    -H 'Accept: application/json' \
    -H 'Content-Type: application/json' \
    -H "Authorization: Bearer YOUR_API_KEY"

Response

{
"data": [
    {
    "id": 123,
    "name": "Company Name",
    "ssm_no": "SSM NO",
    "ssm_doc": "SSM DOC Link",
    "address": "Address of the company",
    "phone": "Company phone number",
    "office": "Company office number"
    }
    // ... other companies
]
}