• Instructions to Ask a Question

    Click on the "Ask a Question" button and select the application for which you would like to ask questions.

    We have 5 different products namely - Pabbly Connect, Pabbly Subscription Billing, Pabbly Email Marketing, Pabbly Form Builder, Pabbly Email Verification.

    The turnaround time is 24 hrs (Business Hours - 10.00 AM to 6.00 PM IST, Except Saturday and Sunday). So your kind patience will be highly appreciated!

    🚀🚀Exclusive Discount Offer

    Just in case you're looking for any ongoing offers on Pabbly, you can check the one-time offers listed below. You just need to pay once and use the application forever -
     

    🔥 Pabbly Connect One Time Plan for $249 (🏆Lifetime Access) -  View offer 

    🔥 Pabbly Subscription Billing One Time Plan for $249 (🏆Lifetime Access) - View offer

  • Important: Any reported problems and issues with your integration will be reported to you and we will encourage the app developers help to resolve those integration issues.

How we built Storipress (GraphQL based Integration)

Storipress API is written in GraphQL. This forum post will show how you can integrate GraphQL APIs inside Pabbly Connect.

We are taking the example of signUpSubsriber Endpoint and will add the same to Pabbly Connect.

Authorization

The authorization of the Storipress API is done through Bearer Access Token. More details below.

1686234980501.png


Notice 3 things in the image below.

1. The subdomain: The default is api as the subdomain in api.stori.press. We will keep it as a dynamic variable while building the integration as a safety measure just incase the subdomain is changed in future. We will also use the default value as api in that variable. This is an optional thing to do down below while building action inside Pabbly Connect.

2. client_id: This would be received by the user from the Storipress account. We will ask the users to enter it on Pabbly Connect.

3. Authorization is Bearer Type and the access_token for same will also be received by the user from the Storipress account. We will ask the users to enter it on Pabbly Connect.

1686234892574.png


Query


1686233983581.png


Variables

1686234071275.png


Response

1686234111607.png



Running same API inside Postman:


1. Setting Authorization as Bearer Token

1686290566511.png


2. Running the API and copying the CURL request from Postman to use the same on Pabbly Connect.

1686290667892.png



This is how the app is connected and built inside Pabbly Connect. This is the App Detail dashboard.

1. Enabling Bearer Token will take care of the access_token. Users will be asked for the bearer token(access_token) during the authentication.
2. We used client_id as a global parameter on the application level.
3. We use subdomain variable as a global parameter on the application level.

1686234549330.png


Inside of client_id variable, Appears on pressing the gear icon.

1686235459113.png




Inside of subdomain variable, appears on pressing the gear icon.

1686235510532.png


This is how the action is setup for the Sign Up Subscriber endpoint.

1686234620990.png


Inside of the email parameter. Other parameteres referrer and from are setup the similar way.

1686235607135.png


This is the final integration on the Pabbly Connect platform. Completely built.

Image 1: Selecting Storipress App with Sign Up Subscriber Endpoint.


1686235673297.png


Image 2: On pressing Connect

1686235736822.png


Image 3: After execution

1686235777962.png
 

Attachments

  • 1686235479178.png
    1686235479178.png
    17.9 KB · Views: 106
  • 1686290390696.png
    1686290390696.png
    109 KB · Views: 94
  • 1686290451139.png
    1686290451139.png
    138 KB · Views: 95
Last edited:
Top