The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I did more than 10 ways to put the incident connected with the component but no one works correctly .
Structured array:
$array = array();
foreach ($components as $component)
{
$array[$component['id']] = $components_status;
}
$postparams = array();
$postparams["incident[components]"] = json_encode($array);
foreach ($components as $component)
{
$cid = $component['id'];
$postparams["incident[components][$cid]"] = $components_status;
}
My output is similar to the API documentation but not work
Array
(
[incident[component_ids]] => [".....3j0qxc",".....38ds4m",".....h59d9"]
[incident[components]] => {".....j0qxc":"partial_outage",",,,,,,8ds4m":"partial_outage",".....7h59d9":"partial_outage"}
)
The incident always is created with no component associated, and I need make this relationship under statuspage.
I shared the function of my class here :
Any idea?
Finally I found a way, here the correct way to connect the incident with a component:
$this->param["incident[component_ids]"] = '["....k38ds4m"]';
$this->param["incident[components][.....k38ds4m]"] = self::COMPONENT_STATUS_PARTIAL_OUTAGE;
Did other tests and nothing...
Anyone can help me ???
{"error":"incident[components] is invalid"}
Array
(
[incident[name]] => Teste 14:39:26-9783
[incident[body]] => Em 14:39:26 foi registrado o erro 160 na rotina Objeto.Teste()
[incident[status]] => identified
[incident[impact_override]] => major
[incident[component_ids]] => [".......hf4pq","......7h59d9"]
[incident[components]] => {"......hf4pq":"partial_outage",".....7h59d9":"partial_outage"}
)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We're excited to announce the release of a long-requested feature on Statuspage. Now visitors to your status page can subscribe to get notified in Slack when you report an incident or maintenance. Th...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.