• Instructions to Ask a Question

    For any assistance, please click the "Ask a Question" button and select the Pabbly product for which you require support.

    We offer seven comprehensive applications designed to help you efficiently manage and grow your business:

    Our support team endeavors to respond within 24 business hours (Monday to Friday, 10:00 AM to 6:00 PM IST). We appreciate your understanding and patience.

    🚀 Exclusive Lifetime Offers 🚀

    We invite you to take advantage of our special one-time payment plans, providing lifetime access to select applications:

    • 🔥 Pabbly Connect — Lifetime Access for $249View Offer
    • 🔥 Pabbly Subscription Billing — Lifetime Access for $249View Offer
    • 🔥 Pabbly Chatflow — Lifetime Access for $249View Offer

    Make a one-time investment and enjoy the advantages of robust business management tools for years to come.

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