-
Notifications
You must be signed in to change notification settings - Fork 584
Open
Labels
Description
Description
The following JSON structure gives an error regarding the keys when attempting to create the PizzaShack API via Postman.
"additionalProperties : {"environment": "preprod", "secured": "true"}
The correct JSON structure which successfully creates the PizzaShack API with the custom properties is as follows:
"additionalProperties": [
{
"name": "environment",
"value": "prepod",
"display": true
},
{
"name": "secured",
"value": "true",
"display": true
}
]
Steps to Reproduce
- Run the pack.
- Follow the documentation to add a custom property via the REST API.
- Add the
"additionalProperties : {"environment": "preprod", "secured": "true"}parameter in the PizzaShack API payload on Postman. - Attempt to create the API on Postman.
Version
APIM Post Beta Pack (Testing Hackathon)
Environment Details (with versions)
No response
Reactions are currently unavailable