Replies: 1 comment
-
I opened #22882 based on this discussion |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I am trying to update a service template item that we use as part of a service catalog bundle and am wanting to do it via the API. In the docs it shows the following example:
But specifically what I am trying to update is the src_vm_id under config_info. I've tried doing a post and a put to the /api/service_template/:id endpoint with the following body:
{
"action" : "edit",
"resource" : {
"config_info" : {
"src_vm_id" : [4981, "dc-RedHat-8"]
}
}
}
But I get a 400 code back with the body:
I guess my ultimate question is is it possible to update the config_info of a service_template via the API?
Beta Was this translation helpful? Give feedback.
All reactions