insomnia-plugin-get-obj-value
v1.0.0
Published
Extract values from nested objects using dynamic object, key, and target paths with dot notation.
Downloads
11
Maintainers
Readme
get obj value Plugin
An Insomnia plugin that extracts values from nested objects using dynamic object, key, and target paths with dot notation.
Example
given the environment variables:
{
"all_env": {
"production": {
"url": {
"serviceA": "http://serviceA-production.acme.com"
},
},
"sandbox": {
"url": {
"serviceA": "http://serviceA-sandbox.acme.com"
}
}
}
}Where:
object path:all_envkey path:productiontarget path:url.serviceA
it returns: http://serviceA-production.acme.com
