I have followed the instructions to setup a limited setup for push notifications at this article: http://docs.ionic.io/v2.0.0-beta/docs/push-limited-setup
I've got a device ID, and I've registered an API token with Ionic. I have the app running in my browser and am attempting to run
curl -X POST -H "Authorization: Bearer API_TOKEN" -H "Content-Type: application/json" -d '{
"tokens": ["DEV_DEVICE_TOKEN"],
"profile": "fake_push_profile",
"notification": {
"message": "Hello World!"
}
}' "https://api.ionic.io/push/notifications"
In a bash console. However I'm getting an error that looks like this:
"error": {"link": null, "type": "BadRequest", "message": "Security Profile 'fake_push_profile' not found."}}