I’m trying to add a property called provisioningTimeout
to a source template using the Update Source Template API.
Here’s my approach so far:
-
I first retrieve the XML template for the source using the GET Source Template API.
-
I modify the XML to include the
provisioningTimeout
property in the same way I see it defined for other connectors. -
I then call the Update Source Template API with the modified XML.
However, when I run the update call, I receive the following error:
{
"detailCode": "404 Not found",
"messages": [
{
"locale": "en-US",
"localeOrigin": "DEFAULT",
"text": "The server did not find a current representation for the target resource."
},
{
"locale": "und",
"localeOrigin": "REQUEST",
"text": "The server did not find a current representation for the target resource."
}
],
"causes": []
}
Is there a way to directly define this provisioningTimeout
value in the SaaS connector code — for example, in the connector-spec.json
file — or in any other configuration file, so it’s part of the connector by default?
Any guidance for either the API method or defining it directly in connector code would be appreciated.