➕ Create a new account

In order to create a new chilean account, you will need to send the chilean digital certificate as an additional field on PFX format encoded as base64, as this is a requirement to issue electronic invoices. Remember to get the token from the /auth endpoint first.

The certificate_file must be in PFX binary format, encoded as base64. Example page to convert PFX to base64: https://base64.guru/converter/encode/file

Endpoint: https://api-billing.koywe.com/V1/accounts

  • Method: POST
  • Required headers:
    • Content-Type: application/json
    • Authorization: Bearer <token>
    • Accept: */*
1{
2 "country_id": 253,
3 "contact_name": "Bruce Wayne",
4 "contact_phone": "+56984105522",
5 "admin_email": "bruce@company.com",
6 "admin_password": "nuevaclave",
7 "registration_legal_name_company": "My company name",
8 "registration_tax_id_code": "16.497.607-6",
9 "registration_tax_id_type": "CL-RUT",
10 "registration_company_size": "1",
11 "registration_company_industry": "1",
12 "registration_type_use": 1,
13 "registration_terms_of_use": 1,
14 "registration_additional_data": {
15 "certificate_file": "MIIZhQIBAzCCGU8GCSqGSIb3DQE...",
16 "certificate_password": "7d800b3dc1eb5fcd6"
17 }
18}

Notes: certificate_file and certificate_password are just examples and don’t show a full valid certificate.