The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi,
I´m currently trying to add subscriber via API which almost works. I want to add each subscriber multiple components but I didn´t found the right syntax to add more than one component id. Could Someone may help me?
My curl so far:
curl https://api.statuspage.io/v1/pages/mypageid/subscribers \
-H "Authorization: OAuth myapitoken" \
-X POST \
-d "subscriber[email]=user@mail.com" \
-d "subscriber[skip_confirmation_notification]=true" \
-d "subscriber[component_ids]="compid""
But how can I add more components?
Thanks
Hi @Peter G -
A good workaround for this is posting raw body data with curl. You can easily add multiple components using this approach:
curl --location --request POST 'https://api.statuspage.io/v1/pages/page_id//subscribers?api_key=add_apiKey' \
--header 'Content-Type: application/json' \
--data-raw '{
"subscriber": {
"email": "user@mail.com",
"skip_confirmation_notification": true,
"component_ids": [
"add_component_id",
"add_component_id"
]
}
}'
Hope this helps!
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.