




















































































Nuvolo is a cloud-based CMMS built on ServiceNow, used mostly in healthcare and life sciences to manage work orders, asset lifecycles, and regulatory compliance (Joint Commission, NFPA, CMS, FDA). It covers both facility equipment and clinical/biomedical devices, and connects with ERP, RTLS, and OEM systems like GE Healthcare and Siemens Healthineers.
Have any questions? We’re here to help You
API tokens must be stored securely and should never be exposed on the client side or in public repositories. Store tokens in secure environment variables or dedicated secrets management systems like AWS Secrets Manager, HashiCorp Vault, or Azure Key Vault. Never hardcode tokens in application code or commit them to version control. Implement proper access controls so only authorized services can access stored tokens. For production environments, use separate tokens from development/testing environments. Rotate tokens periodically and immediately revoke tokens if you suspect they've been compromised. Makini tokens provide access to customer data, so treat them with the same security standards you'd apply to database credentials.
Makini uses cursor-based pagination for retrieving large datasets. API responses include a next_cursor field when additional results are available. To retrieve the next page, include the cursor value in your next request: GET /api/v1/purchase-orders?cursor=CURSOR_VALUE. Cursor-based pagination is more reliable than offset-based pagination because it handles data changes between requests—if records are added or deleted while you're paginating, you won't miss records or see duplicates. Page size is configurable up to a maximum limit (typically 100-500 records per page depending on entity type). For optimal performance, use the largest page size your application can handle efficiently. The API response also includes total count when available from the source system.
Use the following OpenSSL command to generate both private and public keys:
openssl req -new -x509 -newkey rsa:4096 -keyout private.pem -sigopt rsa_padding_mode:pss -sha256 -sigopt rsa_pss_saltlen:64 -out public.pem -nodes
Upload the public.pem to NetSuite and keep the private.pem secure for use in Makini Link.
"Web services only role" is an optional security setting that restricts the role to only accessing NetSuite via web services (APIs), preventing UI login. This is recommended for integration roles as it enhances security by limiting the access method to API-only usage.
