Home / Digitec Coding Practices / REST API
REST API Standards
- All URL paths must be dashed and lowercase.
- All URL parameters (POST, GET, etc) must be underscored and lowercase:
snake_case
. - All entities must have a common schema with a minimum set of properties.
- When needing extra properties they can be called using the following notation:
resource-endpoint:(extra-property1, extra-property2)
- When needing extra properties they can be called using the following notation: