You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Invoke-CWMWebRequest : An exception has been thrown.
--> The remote server returned an error: (400) Bad Request.
An error has been thrown.
-->
--> {
"code": "InvalidObject",
"message": "catalogItem object is invalid",
"errors": [
{
"code": "MissingRequiredField",
"message": "recurringBillCycle or recurringOneTimeFlag is required.",
"resource": "catalogItem",
"field": "recurringOneTimeFlag"
},
{
"code": "MissingRequiredField",
"message": "recurringBillCycle or recurringOneTimeFlag is required.",
"resource": "catalogItem",
"field": "recurringBillCycle/id"
}
]
}
Running these two command together doesn't work. I feel like I need to do them both in one command? Update-CWMProductCatalog -id $CWProductCreated.id -Operation replace -Path 'recurringBillCycle' -Value @{'id' = '2'} Update-CWMProductCatalog -id $CWProductCreated.id -Operation replace -Path recurringFlag -Value True
Am I right in thinking they need to be run together, is that even possible? or am I doing this the complete wrong way?
The text was updated successfully, but these errors were encountered:
Hey @kgarbet, did you end up getting this to work? I'm running into the same issue and have found a workaround, but I had to change some of the Private functions to make it happen.
Hello,
I'm attempting to run:
Update-CWMProductCatalog -id $CWProductCreated.id -Operation replace -Path recurringFlag -Value True
When i run this, i get an error:
Running these two command together doesn't work. I feel like I need to do them both in one command?
Update-CWMProductCatalog -id $CWProductCreated.id -Operation replace -Path 'recurringBillCycle' -Value @{'id' = '2'}
Update-CWMProductCatalog -id $CWProductCreated.id -Operation replace -Path recurringFlag -Value True
Am I right in thinking they need to be run together, is that even possible? or am I doing this the complete wrong way?
The text was updated successfully, but these errors were encountered: