• 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

Can I store values from the response of the authentication workflow in a custom app integration to reuse them in other actions?

Hi all, I'm developing a custom app integration for Taiga.io
The authentication works already.
The response is the following json:

JSON:
[
    {
        "id": 123123,
        "username": "justme",
        "full_name": "Just Me",
        "full_name_display": "Just Me",
        "color": "#95be9b",
        "bio": "",
        "lang": "it",
        "theme": "taiga",
        "timezone": "",
        "is_active": true,
        "photo": null,
        "big_photo": null,
        "gravatar_id": "whatever00000000",
        "roles": [
            "Product Owner"
        ],
        "total_private_projects": 1,
        "total_public_projects": 1,
        "email": "[email protected]",
        "uuid": "03245634kkv38so944y4g75",
        "date_joined": "1910-19-19T20:07:26.080Z",
        "read_new_terms": false,
        "accepted_terms": true,
        "max_private_projects": null,
        "max_public_projects": null,
        "max_memberships_private_projects": null,
        "max_memberships_public_projects": null,
        "verified_email": true,
        "refresh": "refresh_token",
        "auth_token": "authorization_token"
    }
]
Well I'd like to know if it's possible to store the id or the email for reuse in other actions. It would be useful as many endpoints require to specify the id of the current user, or they'll return thousands of useless entries.
Thank you in advance for any help you'll be able to give me.
 

ArshilAhmad

Moderator
Staff member
Hi @BusinessOnSteroids,

Currently, there is no dedicated tool to store the ID or email obtained from the custom application. However, you can use a Google Sheets spreadsheet to store the data and look it up in any workflow as needed.
 
Top