VWO Engage

{"id":"55e58b63d101191900f30b13","name":"VWO Engage","subdomain":"pushcrew","versions":[{"version":"1.0","version_clean":"1.0.0","codename":"","is_stable":true,"is_beta":false,"is_hidden":false,"is_deprecated":false,"_id":"55e58b63d101191900f30b16","releaseDate":"2015-09-01T11:26:27.668Z"},{"version":"2.0","version_clean":"2.0.0","codename":"","is_stable":false,"is_beta":false,"is_hidden":true,"is_deprecated":false,"_id":"5c36f92d8f3fcd43137d28f7","releaseDate":"2015-09-01T11:26:27.668Z"}],"current_version":{"version_clean":"1.0.0","version":"1.0"},"oauth":{"enabled":false},"api":{"name":"","url":"https://pushcrew.com/api/v1","contenttype":"json","auth":"token","explorer":false,"proxyEnabled":true,"jwt":false,"headers":[{"key":"","value":"","_id":"55e5916cd101191900f30b28"}],"authextra":[{"key":"Authorization","default":"key=<insert-your-token-here>","type":"header","_id":"55e5916cd101191900f30b27"}],"object_definitions":[]},"apiAlt":[{"name":"V2 Beta","url":"https://pushcrew.com/api/v2","contenttype":"json","auth":"token","explorer":false,"proxyEnabled":true,"jwt":false,"_id":"5c36f9f27267aa42020e3949","object_definitions":[],"headers":[],"authextra":[{"key":"Authorization","default":"key=<insert-your-token-here>","type":"header","_id":"5c36fa4271fe4141cbb085c1"}]}],"plan_details":{"name":"Developer Hub","is_active":true,"cost":59,"versions":10000,"custom_domain":true,"custom_pages":true,"whitelabel":false,"errors":false,"password":true,"landing_page":true,"stylesheet":true,"javascript":false,"html":true,"extra_html":false,"admins":true},"intercom":"","intercom_secure_emailonly":false,"flags":{"allow_hub2":false,"hub2":false,"migrationRun":false,"oauth":false,"swagger":false,"correctnewlines":false,"speedyRender":false,"allowXFrame":false,"jwt":false,"hideGoogleAnalytics":false,"stripe":false,"disableDiscuss":false,"ssl":false,"autoSslGeneration":true,"cacheEnabled":true,"newApiExplorer":false,"newSearch":true},"asset_base_url":""}
  • Documentation
  • Support
    PopularNewestOpen

    General


    Add Subscribers and get ID Subscribers

    Hi, I need to each subscription get the ID for this subscription. My sending push will be by subscription. however I can not write the subscriber and catch the id to save, how to proceed?

    Posted in  General  by  Mauricio
    Wed Oct 05 2016 14:52:01 GMT+0000 (Coordinated Universal Time)
    1,602 views
    4 comments
    Customizing PushCrew popup design with HTML/CSS?

    Is it possible? I added some CSS to my page that seems to change some of the design, but it seems like most of the CSS is inline and cannot be overriden. I can't find anything about that in the docs. Can it be done?

    Posted in  General  by  Adam
    Tue Jan 17 2017 10:10:26 GMT+0000 (Coordinated Universal Time)
    1,526 views
    2 comments
    Location of notofication

    I need to know how i can to set location of notification? I need that it will be top-middle/ With cod like: <script type="text/javascript"> (function(p,u,s,h){ p._pcq=p._pcq||[]; p._pcq.push(['_currentTime',Date.now()]); s=u.createElement('script'); s.type='text/javascript'; s.async=true; s.src='https://cdn.pushcrew.com/js/e4eb09399a4d14f21e3142f0724e1ee9.js'; h=u.getElementsByTagName('script')[0]; h.parentNode.insertBefore(s,h); })(window,document); </script> I get it but i cant't to change content With PHP API i can to change content but location is buttom right! How i can to change location?

    Posted in  General  by  Anton
    Tue Apr 18 2017 06:22:48 GMT+0000 (Coordinated Universal Time)
    1,424 views
    2 comments
    Firefox Push Notification on Android

    Hi! I was trying to click on "See it in Action" button on Pushcrew website on Firefox Android. But it did not ask me for Push Permission. So, is Firefox on Android supported?

    Posted in  General  by  Ankit Gupta
    Wed Dec 28 2016 03:24:03 GMT+0000 (Coordinated Universal Time)
    1,371 views
    0 comments
    Add user in Segment REST API popup variable name not found error

    The call we are making is: URL: https://pushcrew.com/api/v1/segments/117364/subscribers Header: Authorization : key=[MyKey] Body: { "subscriber_list":[ "46dadda7874d7530c377f6f207bfa69e" ] } It always popup the error message: "message": "Variable named 'subscriber_list' was not found in POST data" Any idea why?

    Posted in  General  by  qchen01
    Tue Nov 08 2016 21:47:37 GMT+0000 (Coordinated Universal Time)
    1,325 views
    1 comments
    notifications from pushcrew

    how does the payments owed to individuals from pushcrew work?

    Posted in  General  by  Angela Rutherford
    Tue Sep 13 2016 02:47:09 GMT+0000 (Coordinated Universal Time)
    1,321 views
    1 comments
    Images are not shown in push notifications

    I'm providing url to 192x192 image on my development server via ngrok. I see image on https://pushcrew.com/admin/notifications.php page, but push notifications on client computers are shown without image. Also, there are no http requests to get image in my server logs, unless admin/notifications page was opened.

    Posted in  General  by  Artem Koltsov
    Wed Oct 26 2016 14:05:34 GMT+0000 (Coordinated Universal Time)
    1,199 views
    0 comments
    Firefox Push Notification on Android

    Hi! I was trying to click on "See it in Action" button on Pushcrew website on Firefox Android. But it did not ask me for Push Permission. So, is Firefox on Android supported?

    Posted in  General  by  Ankit Gupta
    Wed Dec 28 2016 03:24:01 GMT+0000 (Coordinated Universal Time)
    1,178 views
    1 comments
    How to add a subscriber in api

    Actually I am trying to add subscribers to a segment but I need subscriber Id. Please let me know how can I add subscriber Id or how can I add subscriber into app.

    Posted in  General  by  Prabh
    Wed Oct 26 2016 08:21:45 GMT+0000 (Coordinated Universal Time)
    1,145 views
    0 comments
    Get

    Hi, I need help I'm trying build a status message in view, like "Browser Enable" or "Browser Blocked". So, I made this: if(pushcrew.isAPIReady) { if (console.log(pushcrew.subscriberId) === false){ $('.inactive-push').attr("hidden",false); } else if (console.log(pushcrew.subscriberId) === -1){ $('.blocked-push').attr("hidden",false); } else { $('.active-push').attr("hidden",false); } } I can run this in console normally, and work right, but, when I try put this in my code, I get a error like "Uncaught ReferenceError: pushcrew is not defined"

    Posted in  General  by  Lucas Marques
    Fri Aug 18 2017 14:42:42 GMT+0000 (Coordinated Universal Time)
    1,082 views
    0 comments
    Firefox Push Notification on Android

    Hi! I was trying to click on "See it in Action" button on Pushcrew website on Firefox Android. But it did not ask me for Push Permission. So, is Firefox on Android supported?

    Posted in  General  by  Ankit Gupta
    Wed Dec 28 2016 03:23:23 GMT+0000 (Coordinated Universal Time)
    1,078 views
    0 comments
    Firefox Push Notification on Android

    Hi! I was trying to click on "See it in Action" button on Pushcrew website on Firefox Android. But it did not ask me for Push Permission. So, is Firefox on Android supported?

    Posted in  General  by  Ankit Gupta
    Wed Dec 28 2016 03:23:03 GMT+0000 (Coordinated Universal Time)
    1,072 views
    0 comments
    How to check is subscriber ID valid or Invalid?

    Hi, I am getting response "Invalid Subscriber ID" , Before sending the notification i want to check is subscriber id valid or not , How can i do that?

    Posted in  General  by  Chhavi Deshwal
    Wed Feb 14 2018 08:57:45 GMT+0000 (Coordinated Universal Time)
    1,066 views
    1 comments
    Where is the PushCrew JavaScript present?

    For installing the push crew javascript , i need this file.

    Posted in  General  by  vrushali patil
    Tue Nov 22 2016 06:17:18 GMT+0000 (Coordinated Universal Time)
    1,057 views
    1 comments
    Get List of Segments

    Here in your documentation: http://api.pushcrew.com/docs/get-list-of-segments you tell to use a GET method but which variable do I have to pass? I created a segment category but I forgot to uncomment the result so I don't have an ID of my segment

    Posted in  General  by  Marco Argenti
    Thu Jun 15 2017 20:35:04 GMT+0000 (Coordinated Universal Time)
    1,055 views
    2 comments
    Subscriber with problems

    In last days,I saw some crazy problems, some users haven't receive push notification and others in the same group receive normaly, all this users have push notification ID, and have notification "alow" for pushcrew in browser and I checked the the permition and everything are okay. What I can check also?

    Posted in  General  by  Lucas Marques
    Thu Aug 10 2017 13:52:15 GMT+0000 (Coordinated Universal Time)
    1,041 views
    1 comments
    Javascript API - Modal Translation

    How can I translate the Javascript API modal's messages? I know that using the parameter "text" I can edit the default message. But what about in these cases "If User is already subscribed" and "If User had blocked"? At this point I'm using something like this: window._pcq.push(['triggerOptIn',{subscriberSegment: 'homepage', modal: {text: 'Receba alertas sobre nossa promoção!', blackenBackground: true}}]); Cheers

    Posted in  General  by  Gustavo Paiva
    Tue Oct 31 2017 17:34:58 GMT+0000 (Coordinated Universal Time)
    1,028 views
    3 comments
    Zapier Push Notifications are scheduled with a delay

    When there's an api push notification that gets created through zapier it's scheduling the push notifications in pushcrew with a delay... Which is kind of annoying. Is there a way I can set it up to send instantly?

    Posted in  General  by  Dustin Lumsden
    Wed Sep 14 2016 21:29:19 GMT+0000 (Coordinated Universal Time)
    1,014 views
    0 comments
    Error submitting

    when trying to send as described in the documentation (https://api.pushcrew.com/docs/send-to-all-subscribers) I have been receiving the following error: "Failed to load https://pushcrew.com/api/v1/send/all: Request header field authorization is not allowed by Access-Control-Allow-Headers in preflight response." My code: $ .ajax ({ url: url, type: 'post', async: true, crossDomain: true, date: { title: content.title, message: content.description, url: content.url, image_url: content.image }, headers: { "authorization": "mykey", }, dataType: 'json', done: function (data) { console.log (data); } }); My AcountID: ba6c71941fa73cd13ed28807fdb7c53e

    Posted in  General  by  PanRotas TI
    Thu Aug 09 2018 19:43:49 GMT+0000 (Coordinated Universal Time)
    990 views
    0 comments
    REST API 400 BAD Request

    { "status": "failure", "message": "URL cannot be empty" }

    Posted in  General  by  Praveen Kumar Mushnam
    Sun Oct 15 2017 01:36:38 GMT+0000 (Coordinated Universal Time)
    976 views
    1 comments
    • 1
    • 2
    • 3
    Ask a Question

    Categories

    • All Categories
    • General
    readme.io