build Standard Url
Builds a standard URL by combining a base part, subpart, and optional query parameters. The base and subpart are joined with a '/', and query parameters are appended.
Return
The complete URL string with query parameters
Parameters
The base part of the URL (e.g., "https://example.com/api")
The subpart of the URL (e.g., "users")
Query parameters as a map. Defaults to an empty map
Builds a standard URL by combining a base part, subpart, and query parameters as a list. The base and subpart are joined with a '/', and query parameters are appended.
Return
The complete URL string with query parameters
Parameters
The base part of the URL (e.g., "https://example.com/api")
The subpart of the URL (e.g., "users")
Query parameters as a list of key-value pairs
Builds a standard URL by combining a base part, subpart, and vararg query parameters. The base and subpart are joined with a '/', and query parameters are appended.
Return
The complete URL string with query parameters
Parameters
The base part of the URL (e.g., "https://example.com/api")
The subpart of the URL (e.g., "users")
Query parameters as vararg key-value pairs