Make Best Practices Overview
- - Use consistent sentence-case names for modules, labels, and descriptions.
- - Avoid JavaScript reserved words in module, RPC, and custom IML function names.
- - Match parameter labels to the integrated service and API response structure.
- - Organize related parameters into groups for easier setup and review.
Names, Labels, and Descriptions
- Module names: Use sentence case and verb + entity patterns such as "Create a report" or "Update a record".
- Descriptions: Use third person phrasing, for example "Updates a time entry for a specific user."
- Reserved words: Do not use JavaScript reserved words for module, RPC, or custom IML function names.
Good labels
- - Watch events
- - Create a report
- - Update a record
- - Search files
- - Get a group's info
Avoid
- - Watch Events
- - Make a Call
- - List Photos
- - Get Group Info