Chilkat Online Tools

TCL / Fatture in Cloud API v2 - API Reference / Get Company Info

Back to Collection Items

load ./chilkat.dll

# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.

set http [new_CkHttp]

# Adds the "Authorization: Bearer <access_token>" header.
CkHttp_put_AuthToken $http "<access_token>"
CkHttp_SetRequestHeader $http "Accept" "application/json"

set sbResponseBody [new_CkStringBuilder]

set success [CkHttp_QuickGetSb $http "https://api-v2.fattureincloud.it/c/:company_id/company/info" $sbResponseBody]
if {$success == 0} then {
    puts [CkHttp_lastErrorText $http]
    delete_CkHttp $http
    delete_CkStringBuilder $sbResponseBody
    exit
}

set jResp [new_CkJsonObject]

CkJsonObject_LoadSb $jResp $sbResponseBody
CkJsonObject_put_EmitCompact $jResp 0

puts "Response Body:"
puts [CkJsonObject_emit $jResp]

set respStatusCode [CkHttp_get_LastStatus $http]
puts "Response Status Code = $respStatusCode"
if {$respStatusCode >= 400} then {
    puts "Response Header:"
    puts [CkHttp_lastHeader $http]
    puts "Failed."
    delete_CkHttp $http
    delete_CkStringBuilder $sbResponseBody
    delete_CkJsonObject $jResp
    exit
}

# Sample JSON response:
# (Sample code for parsing the JSON response is shown below)

# {
#   "data": {
#     "id": "<integer>",
#     "name": "<string>",
#     "email": "<string>",
#     "type": "accountant",
#     "access_info": {
#       "role": "subaccount",
#       "permissions": {
#         "fic_situation": "read",
#         "fic_clients": "none",
#         "fic_suppliers": "none",
#         "fic_products": "read",
#         "fic_issued_documents": "write",
#         "fic_received_documents": "write",
#         "fic_receipts": "write",
#         "fic_calendar": "detailed",
#         "fic_archive": "detailed",
#         "fic_taxes": "read",
#         "fic_stock": "read",
#         "fic_cashbook": "write",
#         "fic_settings": "read",
#         "fic_emails": "none",
#         "fic_export": "detailed",
#         "fic_import_bankstatements": "none",
#         "fic_import_clients_suppliers": "none",
#         "fic_import_issued_documents": "read",
#         "fic_import_products": "write",
#         "fic_recurring": "none",
#         "fic_riba": "none",
#         "dic_employees": "none",
#         "dic_settings": "read",
#         "dic_timesheet": "read",
#         "fic_issued_documents_detailed": {
#           "quotes": "none",
#           "proformas": "write",
#           "invoices": "write",
#           "receipts": "write",
#           "delivery_notes": "detailed",
#           "credit_notes": "none",
#           "orders": "write",
#           "work_reports": "none",
#           "supplier_orders": "detailed",
#           "self_invoices": "detailed"
#         }
#       },
#       "through_accountant": "<boolean>"
#     },
#     "plan_info": {
#       "limits": {
#         "clients": "<integer>",
#         "suppliers": "<integer>",
#         "products": "<integer>",
#         "documents": "<integer>"
#       },
#       "functions": {
#         "archive": "<boolean>",
#         "cerved": "<boolean>",
#         "document_attachments": "<boolean>",
#         "e_invoice": "<boolean>",
#         "genius": "<boolean>",
#         "mail_tracking": "<boolean>",
#         "payment_notifications": "<boolean>",
#         "paypal": "<boolean>",
#         "receipts": "<boolean>",
#         "recurring": "<boolean>",
#         "smtp": "<boolean>",
#         "sofort": "<boolean>",
#         "stock": "<boolean>",
#         "subaccounts": "<boolean>",
#         "tessera_sanitaria": "<boolean>",
#         "ts_digital": "<boolean>",
#         "ts_invoice_trading": "<boolean>",
#         "ts_pay": "<boolean>"
#       },
#       "functions_status": {
#         "ts_digital": {
#           "active": "<boolean>"
#         },
#         "ts_pay": {
#           "active": "<boolean>"
#         }
#       }
#     },
#     "accountant_id": "<integer>",
#     "is_accountant": "<boolean>"
#   }
# }

# Sample code for parsing the JSON response...
# Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

set Id [CkJsonObject_stringOf $jResp "data.id"]
set Name [CkJsonObject_stringOf $jResp "data.name"]
set v_Email [CkJsonObject_stringOf $jResp "data.email"]
set v_Type [CkJsonObject_stringOf $jResp "data.type"]
set Role [CkJsonObject_stringOf $jResp "data.access_info.role"]
set Fic_situation [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_situation"]
set Fic_clients [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_clients"]
set Fic_suppliers [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_suppliers"]
set Fic_products [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_products"]
set Fic_issued_documents [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_issued_documents"]
set Fic_received_documents [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_received_documents"]
set Fic_receipts [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_receipts"]
set Fic_calendar [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_calendar"]
set Fic_archive [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_archive"]
set Fic_taxes [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_taxes"]
set Fic_stock [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_stock"]
set Fic_cashbook [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_cashbook"]
set Fic_settings [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_settings"]
set Fic_emails [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_emails"]
set Fic_export [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_export"]
set Fic_import_bankstatements [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_import_bankstatements"]
set Fic_import_clients_suppliers [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_import_clients_suppliers"]
set Fic_import_issued_documents [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_import_issued_documents"]
set Fic_import_products [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_import_products"]
set Fic_recurring [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_recurring"]
set Fic_riba [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_riba"]
set Dic_employees [CkJsonObject_stringOf $jResp "data.access_info.permissions.dic_employees"]
set Dic_settings [CkJsonObject_stringOf $jResp "data.access_info.permissions.dic_settings"]
set Dic_timesheet [CkJsonObject_stringOf $jResp "data.access_info.permissions.dic_timesheet"]
set Quotes [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_issued_documents_detailed.quotes"]
set Proformas [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_issued_documents_detailed.proformas"]
set Invoices [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_issued_documents_detailed.invoices"]
set Receipts [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_issued_documents_detailed.receipts"]
set Delivery_notes [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_issued_documents_detailed.delivery_notes"]
set Credit_notes [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_issued_documents_detailed.credit_notes"]
set Orders [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_issued_documents_detailed.orders"]
set Work_reports [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_issued_documents_detailed.work_reports"]
set Supplier_orders [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_issued_documents_detailed.supplier_orders"]
set Self_invoices [CkJsonObject_stringOf $jResp "data.access_info.permissions.fic_issued_documents_detailed.self_invoices"]
set Through_accountant [CkJsonObject_stringOf $jResp "data.access_info.through_accountant"]
set Clients [CkJsonObject_stringOf $jResp "data.plan_info.limits.clients"]
set Suppliers [CkJsonObject_stringOf $jResp "data.plan_info.limits.suppliers"]
set Products [CkJsonObject_stringOf $jResp "data.plan_info.limits.products"]
set Documents [CkJsonObject_stringOf $jResp "data.plan_info.limits.documents"]
set Archive [CkJsonObject_stringOf $jResp "data.plan_info.functions.archive"]
set Cerved [CkJsonObject_stringOf $jResp "data.plan_info.functions.cerved"]
set Document_attachments [CkJsonObject_stringOf $jResp "data.plan_info.functions.document_attachments"]
set E_invoice [CkJsonObject_stringOf $jResp "data.plan_info.functions.e_invoice"]
set Genius [CkJsonObject_stringOf $jResp "data.plan_info.functions.genius"]
set Mail_tracking [CkJsonObject_stringOf $jResp "data.plan_info.functions.mail_tracking"]
set Payment_notifications [CkJsonObject_stringOf $jResp "data.plan_info.functions.payment_notifications"]
set Paypal [CkJsonObject_stringOf $jResp "data.plan_info.functions.paypal"]
set FunctionsReceipts [CkJsonObject_stringOf $jResp "data.plan_info.functions.receipts"]
set Recurring [CkJsonObject_stringOf $jResp "data.plan_info.functions.recurring"]
set Smtp [CkJsonObject_stringOf $jResp "data.plan_info.functions.smtp"]
set Sofort [CkJsonObject_stringOf $jResp "data.plan_info.functions.sofort"]
set Stock [CkJsonObject_stringOf $jResp "data.plan_info.functions.stock"]
set Subaccounts [CkJsonObject_stringOf $jResp "data.plan_info.functions.subaccounts"]
set Tessera_sanitaria [CkJsonObject_stringOf $jResp "data.plan_info.functions.tessera_sanitaria"]
set Ts_digital [CkJsonObject_stringOf $jResp "data.plan_info.functions.ts_digital"]
set Ts_invoice_trading [CkJsonObject_stringOf $jResp "data.plan_info.functions.ts_invoice_trading"]
set Ts_pay [CkJsonObject_stringOf $jResp "data.plan_info.functions.ts_pay"]
set Active [CkJsonObject_stringOf $jResp "data.plan_info.functions_status.ts_digital.active"]
set Ts_payActive [CkJsonObject_stringOf $jResp "data.plan_info.functions_status.ts_pay.active"]
set Accountant_id [CkJsonObject_stringOf $jResp "data.accountant_id"]
set Is_accountant [CkJsonObject_stringOf $jResp "data.is_accountant"]

delete_CkHttp $http
delete_CkStringBuilder $sbResponseBody
delete_CkJsonObject $jResp

Curl Command

curl -X GET
	-H "Authorization: Bearer <access_token>"
	-H "Accept: application/json"
https://api-v2.fattureincloud.it/c/:company_id/company/info

Postman Collection Item JSON

{
  "name": "Get Company Info",
  "request": {
    "auth": {
      "type": "oauth2",
      "oauth2": [
        {
          "key": "scope",
          "value": "entity.clients:r entity.clients:a entity.suppliers:r entity.suppliers:a products:r products:a issued_documents.invoices:r issued_documents.credit_notes:r issued_documents.receipts:r issued_documents.orders:r issued_documents.quotes:r issued_documents.proformas:r issued_documents.delivery_notes:r issued_documents.work_reports:r issued_documents.supplier_orders:r issued_documents.self_invoices:r issued_documents.invoices:a issued_documents.credit_notes:a issued_documents.receipts:a issued_documents.orders:a issued_documents.quotes:a issued_documents.proformas:a issued_documents.delivery_notes:a issued_documents.work_reports:a issued_documents.supplier_orders:a issued_documents.self_invoices:a received_documents:r received_documents:a stock:r stock:a receipts:r receipts:a taxes:r taxes:a archive:r archive:a cashbook:r cashbook:a settings:r settings:a situation:r",
          "type": "string"
        },
        {
          "key": "redirect_uri",
          "value": "https://api-v2.fattureincloud.it/oauth/token",
          "type": "string"
        },
        {
          "key": "accessTokenUrl",
          "value": "https://api-v2.fattureincloud.it/oauth/token",
          "type": "string"
        },
        {
          "key": "authUrl",
          "value": "https://api-v2.fattureincloud.it/oauth/authorize",
          "type": "string"
        },
        {
          "key": "grant_type",
          "value": "authorization_code",
          "type": "string"
        }
      ]
    },
    "method": "GET",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/c/:company_id/company/info",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "c",
        ":company_id",
        "company",
        "info"
      ],
      "variable": [
        {
          "key": "company_id",
          "value": "<integer>"
        }
      ]
    },
    "description": "Gets the company detailed info."
  },
  "response": [
    {
      "name": "Company info.",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "key": "Accept",
            "value": "application/json"
          },
          {
            "description": "Added as a part of security scheme: oauth2",
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/c/:company_id/company/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "c",
            ":company_id",
            "company",
            "info"
          ],
          "variable": [
            {
              "key": "company_id"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"data\": {\n    \"id\": \"<integer>\",\n    \"name\": \"<string>\",\n    \"email\": \"<string>\",\n    \"type\": \"accountant\",\n    \"access_info\": {\n      \"role\": \"subaccount\",\n      \"permissions\": {\n        \"fic_situation\": \"read\",\n        \"fic_clients\": \"none\",\n        \"fic_suppliers\": \"none\",\n        \"fic_products\": \"read\",\n        \"fic_issued_documents\": \"write\",\n        \"fic_received_documents\": \"write\",\n        \"fic_receipts\": \"write\",\n        \"fic_calendar\": \"detailed\",\n        \"fic_archive\": \"detailed\",\n        \"fic_taxes\": \"read\",\n        \"fic_stock\": \"read\",\n        \"fic_cashbook\": \"write\",\n        \"fic_settings\": \"read\",\n        \"fic_emails\": \"none\",\n        \"fic_export\": \"detailed\",\n        \"fic_import_bankstatements\": \"none\",\n        \"fic_import_clients_suppliers\": \"none\",\n        \"fic_import_issued_documents\": \"read\",\n        \"fic_import_products\": \"write\",\n        \"fic_recurring\": \"none\",\n        \"fic_riba\": \"none\",\n        \"dic_employees\": \"none\",\n        \"dic_settings\": \"read\",\n        \"dic_timesheet\": \"read\",\n        \"fic_issued_documents_detailed\": {\n          \"quotes\": \"none\",\n          \"proformas\": \"write\",\n          \"invoices\": \"write\",\n          \"receipts\": \"write\",\n          \"delivery_notes\": \"detailed\",\n          \"credit_notes\": \"none\",\n          \"orders\": \"write\",\n          \"work_reports\": \"none\",\n          \"supplier_orders\": \"detailed\",\n          \"self_invoices\": \"detailed\"\n        }\n      },\n      \"through_accountant\": \"<boolean>\"\n    },\n    \"plan_info\": {\n      \"limits\": {\n        \"clients\": \"<integer>\",\n        \"suppliers\": \"<integer>\",\n        \"products\": \"<integer>\",\n        \"documents\": \"<integer>\"\n      },\n      \"functions\": {\n        \"archive\": \"<boolean>\",\n        \"cerved\": \"<boolean>\",\n        \"document_attachments\": \"<boolean>\",\n        \"e_invoice\": \"<boolean>\",\n        \"genius\": \"<boolean>\",\n        \"mail_tracking\": \"<boolean>\",\n        \"payment_notifications\": \"<boolean>\",\n        \"paypal\": \"<boolean>\",\n        \"receipts\": \"<boolean>\",\n        \"recurring\": \"<boolean>\",\n        \"smtp\": \"<boolean>\",\n        \"sofort\": \"<boolean>\",\n        \"stock\": \"<boolean>\",\n        \"subaccounts\": \"<boolean>\",\n        \"tessera_sanitaria\": \"<boolean>\",\n        \"ts_digital\": \"<boolean>\",\n        \"ts_invoice_trading\": \"<boolean>\",\n        \"ts_pay\": \"<boolean>\"\n      },\n      \"functions_status\": {\n        \"ts_digital\": {\n          \"active\": \"<boolean>\"\n        },\n        \"ts_pay\": {\n          \"active\": \"<boolean>\"\n        }\n      }\n    },\n    \"accountant_id\": \"<integer>\",\n    \"is_accountant\": \"<boolean>\"\n  }\n}"
    },
    {
      "name": "Unauthorized.",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "description": "Added as a part of security scheme: oauth2",
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/c/:company_id/company/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "c",
            ":company_id",
            "company",
            "info"
          ],
          "variable": [
            {
              "key": "company_id"
            }
          ]
        }
      },
      "status": "Unauthorized",
      "code": 401,
      "_postman_previewlanguage": "text",
      "header": [
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}