Dynamics 365 Talent is now Dynamics 365 Human Resources
New updates are on the way for D365 Talent, checkout below links
Building a more successful workforce with Dynamics 365 Human Resources
Announcing changes to Dynamics 365 Talent
-Harry
Follow us on Facebook to keep in rhythm with us. https:fb.com/theaxapta
Search This Blog
December 21, 2019
December 19, 2019
[Logic Apps] Define parameter null-able.
Hi Folks,
When we define parameters in a Logic apps by default they need a value to be passed by calling object. If you want to make a parameter to accept null value as well then define them as below.
default declaration:
{
"properties": {
"packageName": {
"type": "string"
}
"type": "object"
}
}
Allow null value:
{
"properties": {
"packageName": {
"type":["string", "null"]
}
"type": "object"
}
}
-Harry
Follow us on Facebook to keep in rhythm with us. https:fb.com/theaxapta
When we define parameters in a Logic apps by default they need a value to be passed by calling object. If you want to make a parameter to accept null value as well then define them as below.
default declaration:
{
"properties": {
"packageName": {
"type": "string"
}
"type": "object"
}
}
Allow null value:
{
"properties": {
"packageName": {
"type":["string", "null"]
}
"type": "object"
}
}
Subscribe to:
Posts (Atom)