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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.