-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Placeholders | ||
|
||
Placeholders are strings wrapped in double braces, like `{{this}}`. They can be the whole value | ||
of a string or can be a substring, for example: `{{host}}/api/{{version}}/hello`. | ||
|
||
Placeholders can be given a value through different resolvers. These resolvers have a defined | ||
order and the first providing a value will be the one that is used. If no resolver has a value | ||
for the placeholder then the user will be prompted to resolve it. | ||
|
||
The order of resolution is: | ||
1. [Variables](#variables), these are defined in a [standard table](../request_dsl.md#variables) | ||
similar to query params or headers, but this one is only aimed to provide values for placeholders. |